OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isPCRel
(Results
1 - 6
of
6
) 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
31
bool
isPCRel
,
38
bool
isPCRel
,
45
bool
isPCRel
,
55
bool
isPCRel
,
RuntimeDyldMachO.cpp
91
RE.
IsPCRel
, RE.Size);
99
bool
isPCRel
,
111
<< "
isPCRel
: " <<
isPCRel
123
isPCRel
,
132
isPCRel
,
142
isPCRel
,
153
bool
isPCRel
,
157
if (
isPCRel
)
182
bool
isPCRel
,
[
all
...]
/external/llvm/lib/Target/X86/MCTargetDesc/
X86MachORelocationInfo.cpp
37
bool
isPCRel
= Obj->getAnyRelocationPCRel(RE);
68
Expr = MCSymbolRefExpr::Create(Sym,
isPCRel
?
X86MCCodeEmitter.cpp
213
bool
isPCRel
= X86II::isImmPCRel(TSFlags);
215
return MCFixup::getKindForSize(Size,
isPCRel
);
[
all
...]
/external/llvm/lib/Object/
MachOObjectFile.cpp
1003
bool
IsPCRel
= this->getAnyRelocationPCRel(RE);
1010
bool
isPCRel
= getAnyRelocationPCRel(RE);
1017
if (
isPCRel
) fmt << "PCREL";
1043
if (
isPCRel
) fmt << "P";
1111
if (
IsPCRel
) fmt << "P";
[
all
...]
Completed in 52 milliseconds