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

References

tools/llvm-objdump/MachODump.cpp
 7593       for (uint64_t Index = Start; Index < End; Index += Size) {
 7593       for (uint64_t Index = Start; Index < End; Index += Size) {
 7599         if (FirstSymbol && !FirstSymbolAtSectionStart && Index == SymbolStart)
 7602         uint64_t PC = SectAddress + Index;
 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;