OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RelocPos
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Target/ARM/
ARMJITInfo.cpp
272
void *
RelocPos
= (char*)Function + MR->getMachineCodeOffset();
280
ResultPtr = ResultPtr - (intptr_t)
RelocPos
- 8;
283
*((intptr_t*)
RelocPos
) |= 1 << ARMII::U_BitShift;
286
*((intptr_t*)
RelocPos
) &= ~(1 << ARMII::U_BitShift);
293
*((intptr_t*)
RelocPos
) |= ResultPtr;
295
*((intptr_t*)
RelocPos
) |=
300
ResultPtr = ResultPtr - (intptr_t)
RelocPos
- 8;
303
*((intptr_t*)
RelocPos
) |= 1 << ARMII::U_BitShift;
306
*((intptr_t*)
RelocPos
) &= ~(1 << ARMII::U_BitShift);
308
*((intptr_t*)
RelocPos
) |= 1 << 22
[
all
...]
/external/llvm/lib/Target/Mips/
MipsJITInfo.cpp
199
void *
RelocPos
= (char*) Function + MR->getMachineCodeOffset();
204
ResultPtr = (((ResultPtr - (intptr_t)
RelocPos
) - 4) >> 2) & 0xffff;
205
*((unsigned*)
RelocPos
) |= (unsigned) ResultPtr;
210
*((unsigned*)
RelocPos
) |= (unsigned) ResultPtr;
218
*((unsigned*)
RelocPos
) |= (unsigned) ResultPtr;
225
int Addend = *((unsigned*)
RelocPos
) & 0xffff;
227
*((unsigned*)
RelocPos
) &= 0xffff0000;
228
*((unsigned*)
RelocPos
) |= (unsigned) ResultPtr;
/external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp
415
unsigned *
RelocPos
= (unsigned*)Function + MR->getMachineCodeOffset()/4;
421
ResultPtr = (ResultPtr-(intptr_t)
RelocPos
) >> 2;
424
*
RelocPos
|= (ResultPtr & ((1 << 24)-1)) << 2;
429
ResultPtr = (ResultPtr-(intptr_t)
RelocPos
) >> 2;
432
*
RelocPos
|= (ResultPtr & ((1 << 14)-1)) << 2;
449
unsigned LowBits = (*
RelocPos
+ ResultPtr) & 65535;
450
unsigned HighBits = *
RelocPos
& ~65535;
451
*
RelocPos
= LowBits | HighBits; // Slam into low 16-bits
458
unsigned LowBits = (*
RelocPos
+ ResultPtr) & 0xFFFC;
459
unsigned HighBits = *
RelocPos
& 0xFFFF0003
[
all
...]
/external/llvm/lib/Target/X86/
X86JITInfo.cpp
541
void *
RelocPos
= (char*)Function + MR->getMachineCodeOffset();
547
ResultPtr = ResultPtr -(intptr_t)
RelocPos
- 4 - MR->getConstantVal();
548
*((unsigned*)
RelocPos
) += (unsigned)ResultPtr;
555
*((unsigned*)
RelocPos
) += (unsigned)ResultPtr;
562
*((unsigned*)
RelocPos
) += (unsigned)ResultPtr;
565
*((intptr_t*)
RelocPos
) += ResultPtr;
Completed in 83 milliseconds