Searched refs:isPCRel (Results 1 – 4 of 4) sorted by relevance
/external/llvm/include/llvm/MC/ |
D | MCFixup.h | 84 static MCFixupKind getKindForSize(unsigned Size, bool isPCRel) { in getKindForSize() argument 87 case 1: return isPCRel ? FK_PCRel_1 : FK_Data_1; in getKindForSize() 88 case 2: return isPCRel ? FK_PCRel_2 : FK_Data_2; in getKindForSize() 89 case 4: return isPCRel ? FK_PCRel_4 : FK_Data_4; in getKindForSize() 90 case 8: return isPCRel ? FK_PCRel_8 : FK_Data_8; in getKindForSize()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 25 resolveRelocation(uint8_t *Address, uint8_t *Value, bool isPCRel, in resolveRelocation() argument 32 isPCRel, Type, Size); in resolveRelocation() 35 isPCRel, Type, Size); in resolveRelocation() 42 bool isPCRel, unsigned Type, in resolveX86_64Relocation() argument 46 if (isPCRel) in resolveX86_64Relocation() 79 bool isPCRel, unsigned Type, in resolveARMRelocation() argument 83 if (isPCRel) { in resolveARMRelocation() 500 bool isPCRel = (RE.Data >> 24) & 1; in reassignSymbolAddress() local 507 << "(" << (isPCRel ? "pcrel" : "absolute") in reassignSymbolAddress() 510 resolveRelocation(Target, Addr, isPCRel, Type, Size); in reassignSymbolAddress()
|
D | RuntimeDyldImpl.h | 121 bool resolveRelocation(uint8_t *Address, uint8_t *Value, bool isPCRel, 123 bool resolveX86_64Relocation(uintptr_t Address, uintptr_t Value, bool isPCRel, 125 bool resolveARMRelocation(uintptr_t Address, uintptr_t Value, bool isPCRel,
|
/external/llvm/lib/Target/X86/ |
D | X86MCCodeEmitter.cpp | 151 bool isPCRel = X86II::isImmPCRel(TSFlags); in getImmFixupKind() local 153 return MCFixup::getKindForSize(Size, isPCRel); in getImmFixupKind()
|