Searched defs:isPCRel (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCFixup.h97 static MCFixupKind getKindForSize(unsigned Size, bool isPCRel) { argument
100 case 1: return isPCRel ? FK_PCRel_1 : FK_Data_1;
101 case 2: return isPCRel ? FK_PCRel_2 : FK_Data_2;
102 case 4: return isPCRel ? FK_PCRel_4 : FK_Data_4;
103 case 8: return isPCRel ? FK_PCRel_8 : FK_Data_8;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp29 bool isPCRel = (Type >> 24) & 1; local
38 << " isPCRel: " << isPCRel
50 isPCRel,
59 isPCRel,
69 isPCRel,
80 bool isPCRel,
84 if (isPCRel)
108 bool isPCRel,
114 if (isPCRel)
77 resolveI386Relocation(uint8_t *LocalAddress, uint64_t FinalAddress, uint64_t Value, bool isPCRel, unsigned Type, unsigned Size, int64_t Addend) argument
105 resolveX86_64Relocation(uint8_t *LocalAddress, uint64_t FinalAddress, uint64_t Value, bool isPCRel, unsigned Type, unsigned Size, int64_t Addend) argument
146 resolveARMRelocation(uint8_t *LocalAddress, uint64_t FinalAddress, uint64_t Value, bool isPCRel, unsigned Type, unsigned Size, int64_t Addend) argument
[all...]
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp998 bool isPCRel; local
1000 isPCRel = ((RE->Word0 >> 30) & 1);
1002 isPCRel = ((RE->Word1 >> 24) & 1);
1009 bool isPCRel = ((RE->Word1 >> 24) & 1); local
1016 if (isPCRel) fmt << "PCREL";
1042 if (isPCRel) fmt << "P";
1123 if (isPCRel) fmt << "P";

Completed in 724 milliseconds