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

  /external/llvm/unittests/MC/
Disassembler.cpp 38 size_t InstSize;
42 InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
44 EXPECT_EQ(InstSize, 1U);
46 PC += InstSize;
47 BytesP += InstSize;
48 NumBytes -= InstSize;
50 InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
52 EXPECT_EQ(InstSize, 1U);
54 PC += InstSize;
55 BytesP += InstSize;
    [all...]
  /external/llvm/lib/MC/MCDisassembler/
MCDisassembler.cpp 22 uint64_t InstSize) const {
26 IsBranch, Offset, InstSize);
MCExternalSymbolizer.cpp 41 uint64_t InstSize) {
47 !GetOpInfo(DisInfo, Address, Offset, InstSize, 1, &SymbolicOp)) {
57 // InstSize, we will not guess it is an address of a symbol. Because in
60 if (!SymbolLookUp || (InstSize == 1 && !IsBranch))
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64ExternalSymbolizer.h 33 uint64_t Offset, uint64_t InstSize) override;
AArch64ExternalSymbolizer.cpp 62 bool IsBranch, uint64_t Offset, uint64_t InstSize) {
74 !GetOpInfo(DisInfo, Address, 0 /* Offset */, InstSize, 1, &SymbolicOp)) {
  /external/llvm/include/llvm/MC/MCDisassembler/
MCSymbolizer.h 68 /// \param InstSize - Size of the instruction in bytes.
73 uint64_t InstSize) = 0;
MCExternalSymbolizer.h 50 uint64_t Offset, uint64_t InstSize) override;
MCDisassembler.h 94 uint64_t Offset, uint64_t InstSize) const;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 308 uint64_t InstSize;
309 if (!decodeInst(Symbol, Inst, InstSize))
317 uint64_t NextPC = SymbolAddr + InstSize;
    [all...]
  /external/mesa3d/src/mesa/main/
dlist.c 189 * integer values starting at 0 is very important, see InstSize array usage)
553 static GLuint InstSize[OPCODE_END_OF_LIST + 1];
662 n += InstSize[n[0].opcode];
666 n += InstSize[n[0].opcode];
670 n += InstSize[n[0].opcode];
674 n += InstSize[n[0].opcode];
678 n += InstSize[n[0].opcode];
682 n += InstSize[n[0].opcode];
686 n += InstSize[n[0].opcode];
690 n += InstSize[n[0].opcode]
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMBaseInstrInfo.cpp 610 unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
617 return NumEntries * EntrySize + InstSize;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 434 bool isBranch, uint64_t InstSize,
444 if (!getOpInfo(DisInfo, Address, 0 /* Offset */, InstSize, 1, &SymbolicOp)) {
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 546 bool isBranch, uint64_t InstSize,
551 /* Offset */ 0, InstSize);
    [all...]

Completed in 936 milliseconds