reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-objdump/MachODump.cpp
 7488     if (Bytes.empty())
 7616         if (DumpAndSkipDataInCode(PC, Bytes.data() + Index, Dices, Size))
 7624           gotInst = ThumbDisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
 7627           gotInst = DisAsm->getInstruction(Inst, Size, Bytes.slice(Index), PC,
 7631             dumpBytes(makeArrayRef(Bytes.data() + Index, Size), outs());
 7655                              *(Bytes.data() + Index) & 0xff);
 7659             uint32_t opcode = (*(Bytes.data() + Index) & 0xff) |
 7660                               (*(Bytes.data() + Index + 1) & 0xff) << 8 |
 7661                               (*(Bytes.data() + Index + 2) & 0xff) << 16 |
 7662                               (*(Bytes.data() + Index + 3) & 0xff) << 24;
 7667             uint32_t opcode = (*(Bytes.data() + Index) & 0xff) |
 7668                               (*(Bytes.data() + Index + 1) & 0xff) << 8;
 7693         if (DumpAndSkipDataInCode(PC, Bytes.data() + Index, Dices, InstSize))
 7698         if (DisAsm->getInstruction(Inst, InstSize, Bytes.slice(Index), PC,
 7712             dumpBytes(makeArrayRef(Bytes.data() + Index, InstSize), outs());
 7721                              *(Bytes.data() + Index) & 0xff);