Home
last modified time | relevance | path

Searched refs:isPCRel (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp29 bool isPCRel = (Type >> 24) & 1; in resolveRelocation() local
38 << " isPCRel: " << isPCRel in resolveRelocation()
50 isPCRel, in resolveRelocation()
59 isPCRel, in resolveRelocation()
69 isPCRel, in resolveRelocation()
80 bool isPCRel, in resolveI386Relocation() argument
84 if (isPCRel) in resolveI386Relocation()
108 bool isPCRel, in resolveX86_64Relocation() argument
114 if (isPCRel) in resolveX86_64Relocation()
149 bool isPCRel, in resolveARMRelocation() argument
[all …]
DRuntimeDyldMachO.h32 bool isPCRel,
39 bool isPCRel,
46 bool isPCRel,
/external/llvm/include/llvm/MC/
DMCFixup.h97 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/
DMachOObjectFile.cpp998 bool isPCRel; in getRelocationValueString() local
1000 isPCRel = ((RE->Word0 >> 30) & 1); in getRelocationValueString()
1002 isPCRel = ((RE->Word1 >> 24) & 1); in getRelocationValueString()
1009 bool isPCRel = ((RE->Word1 >> 24) & 1); in getRelocationValueString() local
1016 if (isPCRel) fmt << "PCREL"; in getRelocationValueString()
1042 if (isPCRel) fmt << "P"; in getRelocationValueString()
1123 if (isPCRel) fmt << "P"; in getRelocationValueString()
/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MCCodeEmitter.cpp158 bool isPCRel = X86II::isImmPCRel(TSFlags); in getImmFixupKind() local
160 return MCFixup::getKindForSize(Size, isPCRel); in getImmFixupKind()