OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isPCRel
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/MC/
MCFixup.h
84
static MCFixupKind getKindForSize(unsigned Size, bool
isPCRel
) {
87
case 1: return
isPCRel
? FK_PCRel_1 : FK_Data_1;
88
case 2: return
isPCRel
? FK_PCRel_2 : FK_Data_2;
89
case 4: return
isPCRel
? FK_PCRel_4 : FK_Data_4;
90
case 8: return
isPCRel
? FK_PCRel_8 : FK_Data_8;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
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
,
RuntimeDyldMachO.cpp
25
resolveRelocation(uint8_t *Address, uint8_t *Value, bool
isPCRel
,
32
isPCRel
, Type, Size);
35
isPCRel
, Type, Size);
42
bool
isPCRel
, unsigned Type,
46
if (
isPCRel
)
79
bool
isPCRel
, unsigned Type,
83
if (
isPCRel
) {
500
bool
isPCRel
= (RE.Data >> 24) & 1;
507
<< "(" << (
isPCRel
? "pcrel" : "absolute")
510
resolveRelocation(Target, Addr,
isPCRel
, Type, Size)
[
all
...]
/external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp
152
bool
isPCRel
= X86II::isImmPCRel(TSFlags);
154
return MCFixup::getKindForSize(Size,
isPCRel
);
[
all
...]
Completed in 32 milliseconds