mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
ae65e281f3
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
95 lines
3.0 KiB
C
95 lines
3.0 KiB
C
/*===-- disassemble.c - tool for testing libLLVM and llvm-c API -----------===*\
|
|
|* *|
|
|
|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
|
|
|* Exceptions. *|
|
|
|* See https://llvm.org/LICENSE.txt for license information. *|
|
|
|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
|
|
|* *|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|* *|
|
|
|* This file implements the --disassemble command in llvm-c-test. *|
|
|
|* --disassemble reads lines from stdin, parses them as a triple and hex *|
|
|
|* machine code, and prints disassembly of the machine code. *|
|
|
|* *|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
#include "llvm-c-test.h"
|
|
#include "llvm-c/Disassembler.h"
|
|
#include "llvm-c/Target.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
static void pprint(int pos, unsigned char *buf, int len, const char *disasm) {
|
|
int i;
|
|
printf("%04x: ", pos);
|
|
for (i = 0; i < 8; i++) {
|
|
if (i < len) {
|
|
printf("%02x ", buf[i]);
|
|
} else {
|
|
printf(" ");
|
|
}
|
|
}
|
|
|
|
printf(" %s\n", disasm);
|
|
}
|
|
|
|
static void do_disassemble(const char *triple, const char *features,
|
|
unsigned char *buf, int siz) {
|
|
LLVMDisasmContextRef D = LLVMCreateDisasmCPUFeatures(triple, "", features,
|
|
NULL, 0, NULL, NULL);
|
|
char outline[1024];
|
|
int pos;
|
|
|
|
if (!D) {
|
|
printf("ERROR: Couldn't create disassembler for triple %s\n", triple);
|
|
return;
|
|
}
|
|
|
|
pos = 0;
|
|
while (pos < siz) {
|
|
size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline,
|
|
sizeof(outline));
|
|
if (!l) {
|
|
pprint(pos, buf + pos, 1, "\t???");
|
|
pos++;
|
|
} else {
|
|
pprint(pos, buf + pos, l, outline);
|
|
pos += l;
|
|
}
|
|
}
|
|
|
|
LLVMDisasmDispose(D);
|
|
}
|
|
|
|
static void handle_line(char **tokens, int ntokens) {
|
|
unsigned char disbuf[128];
|
|
size_t disbuflen = 0;
|
|
const char *triple = tokens[0];
|
|
const char *features = tokens[1];
|
|
int i;
|
|
|
|
printf("triple: %s, features: %s\n", triple, features);
|
|
if (!strcmp(features, "NULL"))
|
|
features = "";
|
|
|
|
for (i = 2; i < ntokens; i++) {
|
|
disbuf[disbuflen++] = strtol(tokens[i], NULL, 16);
|
|
if (disbuflen >= sizeof(disbuf)) {
|
|
fprintf(stderr, "Warning: Too long line, truncating\n");
|
|
break;
|
|
}
|
|
}
|
|
do_disassemble(triple, features, disbuf, disbuflen);
|
|
}
|
|
|
|
int llvm_disassemble(void) {
|
|
LLVMInitializeAllTargetInfos();
|
|
LLVMInitializeAllTargetMCs();
|
|
LLVMInitializeAllDisassemblers();
|
|
|
|
llvm_tokenize_stdin(handle_line);
|
|
|
|
return 0;
|
|
}
|