HomeSort by relevance Sort by last modified time
    Searched refs:isPCRel (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/MC/
MCFixup.h 97 static MCFixupKind getKindForSize(unsigned Size, bool isPCRel) {
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/
RuntimeDyldMachO.h 32 bool isPCRel,
39 bool isPCRel,
46 bool isPCRel,
RuntimeDyldMachO.cpp 29 bool isPCRel = (Type >> 24) & 1;
38 << " isPCRel: " << isPCRel
50 isPCRel,
59 isPCRel,
69 isPCRel,
80 bool isPCRel,
84 if (isPCRel)
108 bool isPCRel,
114 if (isPCRel)
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 998 bool isPCRel;
1000 isPCRel = ((RE->Word0 >> 30) & 1);
1002 isPCRel = ((RE->Word1 >> 24) & 1);
1009 bool isPCRel = ((RE->Word1 >> 24) & 1);
1016 if (isPCRel) fmt << "PCREL";
1042 if (isPCRel) fmt << "P";
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 158 bool isPCRel = X86II::isImmPCRel(TSFlags);
160 return MCFixup::getKindForSize(Size, isPCRel);
    [all...]

Completed in 807 milliseconds