Home
last modified time | relevance | path

Searched refs:NewAddr (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Target/Mips/
DMipsJITInfo.cpp30 unsigned NewAddr = (intptr_t)New; in replaceMachineCodeForFunction() local
35 if ((NewAddr & 0xF0000000) == ((OldAddr + 4) & 0xF0000000)) { in replaceMachineCodeForFunction()
38 unsigned JTargetAddr = NewAddr & 0x0FFFFFFC; in replaceMachineCodeForFunction()
63 (*(CurrentInstr++)) = LuiT0Instr | ((NewAddr & 0xffff0000) >> 16); in replaceMachineCodeForFunction()
65 (*(CurrentInstr++)) = AddiuT0Instr | (NewAddr & 0x0000ffff); in replaceMachineCodeForFunction()
/external/llvm/lib/Target/X86/
DX86JITInfo.cpp38 unsigned NewAddr = (intptr_t)New; in replaceMachineCodeForFunction() local
40 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code. in replaceMachineCodeForFunction()