Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCFixup.h98 static MCFixupKind getKindForSize(unsigned Size, bool isPCRel) { in getKindForSize() argument
101 case 1: return isPCRel ? FK_PCRel_1 : FK_Data_1; in getKindForSize()
102 case 2: return isPCRel ? FK_PCRel_2 : FK_Data_2; in getKindForSize()
103 case 4: return isPCRel ? FK_PCRel_4 : FK_Data_4; in getKindForSize()
104 case 8: return isPCRel ? FK_PCRel_8 : FK_Data_8; in getKindForSize()
/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MachORelocationInfo.cpp37 bool isPCRel = Obj->getAnyRelocationPCRel(RE); in createExprForRelocation() local
68 Expr = MCSymbolRefExpr::Create(Sym, isPCRel ? in createExprForRelocation()
DX86MCCodeEmitter.cpp212 bool isPCRel = X86II::isImmPCRel(TSFlags); in getImmFixupKind() local
220 return MCFixup::getKindForSize(Size, isPCRel); in getImmFixupKind()
/external/llvm/lib/Object/
DMachOObjectFile.cpp849 bool isPCRel = getAnyRelocationPCRel(RE); in getRelocationValueString() local
856 if (isPCRel) fmt << "PCREL"; in getRelocationValueString()
882 if (isPCRel) fmt << "P"; in getRelocationValueString()