Searched refs:isPCRel (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 31 bool isPCRel = (Type >> 24) & 1; in resolveRelocation() local 40 << " isPCRel: " << isPCRel in resolveRelocation() 52 isPCRel, in resolveRelocation() 61 isPCRel, in resolveRelocation() 71 isPCRel, in resolveRelocation() 82 bool isPCRel, in resolveI386Relocation() argument 86 if (isPCRel) in resolveI386Relocation() 111 bool isPCRel, in resolveX86_64Relocation() argument 117 if (isPCRel) in resolveX86_64Relocation() 152 bool isPCRel, in resolveARMRelocation() argument [all …]
|
D | RuntimeDyldMachO.h | 32 bool isPCRel, 39 bool isPCRel, 46 bool isPCRel,
|
/external/llvm/include/llvm/MC/ |
D | MCFixup.h | 97 static MCFixupKind getKindForSize(unsigned Size, bool isPCRel) { in getKindForSize() argument 100 case 1: return isPCRel ? FK_PCRel_1 : FK_Data_1; in getKindForSize() 101 case 2: return isPCRel ? FK_PCRel_2 : FK_Data_2; in getKindForSize() 102 case 4: return isPCRel ? FK_PCRel_4 : FK_Data_4; in getKindForSize() 103 case 8: return isPCRel ? FK_PCRel_8 : FK_Data_8; in getKindForSize()
|
/external/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 1039 bool isPCRel; in getRelocationValueString() local 1041 isPCRel = ((RE->Word0 >> 30) & 1); in getRelocationValueString() 1043 isPCRel = ((RE->Word1 >> 24) & 1); in getRelocationValueString() 1050 bool isPCRel = ((RE->Word1 >> 24) & 1); in getRelocationValueString() local 1057 if (isPCRel) fmt << "PCREL"; in getRelocationValueString() 1084 if (isPCRel) fmt << "P"; in getRelocationValueString() 1165 if (isPCRel) fmt << "P"; in getRelocationValueString()
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MCCodeEmitter.cpp | 159 bool isPCRel = X86II::isImmPCRel(TSFlags); in getImmFixupKind() local 161 return MCFixup::getKindForSize(Size, isPCRel); in getImmFixupKind()
|