HomeSort by relevance Sort by last modified time
    Searched refs:DisInfo (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/MC/
MCDisassembler.h 57 DisInfo(0), Ctx(0),
94 void *DisInfo;
105 void *disInfo,
109 DisInfo = disInfo;
116 void *getDisInfoBlock() const { return DisInfo; }
  /external/llvm/include/llvm-c/
Disassembler.h 38 * the call back in the DisInfo parameter. The instruction containing operand
50 typedef int (*LLVMOpInfoCallback)(void *DisInfo, uint64_t PC,
110 typedef const char *(*LLVMSymbolLookupCallback)(void *DisInfo,
139 * by passing a block of information in the DisInfo parameter and specifying the
145 LLVMDisasmContextRef LLVMCreateDisasm(const char *TripleName, void *DisInfo,
151 * disassembly is supported by passing a block of information in the DisInfo
157 void *DisInfo, int TagType,
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.h 47 void *DisInfo;
82 LLVMDisasmContext(std::string tripleName, void *disInfo, int tagType,
91 DisInfo(disInfo), TagType(tagType), GetOpInfo(getOpInfo),
103 void *getDisInfo() const { return DisInfo; }
Disassembler.cpp 30 // disassembly is supported by passing a block of information in the DisInfo
37 void *DisInfo, int TagType,
75 DisAsm->setupForSymbolicDisassembly(GetOpInfo, SymbolLookUp, DisInfo, Ctx);
84 LLVMDisasmContext *DC = new LLVMDisasmContext(Triple, DisInfo, TagType,
94 LLVMDisasmContextRef LLVMCreateDisasm(const char *Triple, void *DisInfo,
97 return LLVMCreateDisasmCPU(Triple, "", DisInfo, TagType, GetOpInfo,
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 197 void *DisInfo = Dis->getDisInfoBlock();
200 !getOpInfo(DisInfo, Address, Offset, Width, 1, &SymbolicOp)) {
212 const char *Name = SymbolLookUp(DisInfo, Value, &ReferenceType, Address,
295 void *DisInfo = Dis->getDisInfoBlock();
298 (void)SymbolLookUp(DisInfo, Value, &ReferenceType, Address, &ReferenceName);
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 497 void *DisInfo = Dis->getDisInfoBlock();
500 !getOpInfo(DisInfo, Address, 0 /* Offset */, InstSize, 1, &SymbolicOp)) {
513 const char *Name = SymbolLookUp(DisInfo, SymbolValue, &ReferenceType,
605 void *DisInfo = Dis->getDisInfoBlock();
609 (void)SymbolLookUp(DisInfo, Value, &ReferenceType, Address, &ReferenceName);
    [all...]

Completed in 369 milliseconds