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

References

include/llvm/BinaryFormat/MachO.h
  406   PPC_RELOC_VANILLA = GENERIC_RELOC_VANILLA,
  426   ARM_RELOC_VANILLA = GENERIC_RELOC_VANILLA,
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
  215                        MachO::GENERIC_RELOC_VANILLA, 0, false, 2);
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
  137       else if (RelType == MachO::GENERIC_RELOC_VANILLA)
  331           MachO::GENERIC_RELOC_VANILLA, Value.Offset, false, 2);
lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
   49       else if (RelType == MachO::GENERIC_RELOC_VANILLA)
  110     case MachO::GENERIC_RELOC_VANILLA:
  238                          MachO::GENERIC_RELOC_VANILLA, 0, true, 2);
lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
   90   unsigned Type = MachO::GENERIC_RELOC_VANILLA;
lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
  374   unsigned Type = MachO::GENERIC_RELOC_VANILLA;
  559     Type = MachO::GENERIC_RELOC_VANILLA;
  588     Type = MachO::GENERIC_RELOC_VANILLA;
tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
  264   case GENERIC_RELOC_VANILLA | rPcRel | rExtern | rLength4:
  271   case GENERIC_RELOC_VANILLA | rPcRel | rLength4:
  278   case GENERIC_RELOC_VANILLA | rScattered | rPcRel | rLength4:
  287   case GENERIC_RELOC_VANILLA | rPcRel | rExtern | rLength2:
  294   case GENERIC_RELOC_VANILLA | rPcRel | rLength2:
  301   case GENERIC_RELOC_VANILLA | rScattered | rPcRel | rLength2:
  310   case GENERIC_RELOC_VANILLA | rExtern | rLength4:
  321   case GENERIC_RELOC_VANILLA | rLength4:
  331   case GENERIC_RELOC_VANILLA | rScattered | rLength4:
  571                   GENERIC_RELOC_VANILLA | rExtern    | rPcRel | rLength4);
  575                   GENERIC_RELOC_VANILLA | rScattered | rPcRel |  rLength4);
  578                   GENERIC_RELOC_VANILLA |              rPcRel | rLength4);
  584                   GENERIC_RELOC_VANILLA | rExtern    | rPcRel | rLength2);
  588                   GENERIC_RELOC_VANILLA | rScattered | rPcRel |  rLength2);
  591                   GENERIC_RELOC_VANILLA |              rPcRel | rLength2);
  598                 GENERIC_RELOC_VANILLA |    rExtern     |  rLength4);
  602                 GENERIC_RELOC_VANILLA |    rScattered  |  rLength4);
  605                 GENERIC_RELOC_VANILLA |                   rLength4);
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
   82                  type(llvm::MachO::GENERIC_RELOC_VANILLA),
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
  399                                   llvm::MachO::GENERIC_RELOC_VANILLA);
tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
  414   EXPECT_EQ(call.type, GENERIC_RELOC_VANILLA);
tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
  251     text.relocations.push_back(makeReloc(0x01, true, true, GENERIC_RELOC_VANILLA, 0));
  252     text.relocations.push_back(makeReloc(0x06, false, true, GENERIC_RELOC_VANILLA, 0));
  299   EXPECT_EQ(call.type, GENERIC_RELOC_VANILLA);
  307   EXPECT_EQ(absLoad.type, GENERIC_RELOC_VANILLA);
tools/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
  427   EXPECT_EQ((int)reloc1.type, (int)llvm::MachO::GENERIC_RELOC_VANILLA);