Searched refs:isPCRel (Results 1 - 5 of 5) 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.h32 bool isPCRel,
39 bool isPCRel,
46 bool isPCRel,
H A DRuntimeDyldMachO.cpp31 bool isPCRel = (Type >> 24) & 1; local
40 << " isPCRel: " << isPCRel
52 isPCRel,
61 isPCRel,
71 isPCRel,
82 bool isPCRel,
86 if (isPCRel)
111 bool isPCRel,
117 if (isPCRel)
79 resolveI386Relocation(uint8_t *LocalAddress, uint64_t FinalAddress, uint64_t Value, bool isPCRel, unsigned Type, unsigned Size, int64_t Addend) argument
108 resolveX86_64Relocation(uint8_t *LocalAddress, uint64_t FinalAddress, uint64_t Value, bool isPCRel, unsigned Type, unsigned Size, int64_t Addend) argument
149 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.cpp1039 bool isPCRel; local
1041 isPCRel = ((RE->Word0 >> 30) & 1);
1043 isPCRel = ((RE->Word1 >> 24) & 1);
1050 bool isPCRel = ((RE->Word1 >> 24) & 1); local
1057 if (isPCRel) fmt << "PCREL";
1084 if (isPCRel) fmt << "P";
1165 if (isPCRel) fmt << "P";
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp159 bool isPCRel = X86II::isImmPCRel(TSFlags);
161 return MCFixup::getKindForSize(Size, isPCRel);

Completed in 70 milliseconds