Lines Matching refs:TARGET
10 // This file implements the JIT interfaces for the 32-bit PowerPC target.
40 #define BUILD_B(TARGET, LINK) \
41 ((18 << 26) | (((TARGET) & 0x00FFFFFF) << 2) | ((LINK) & 1))
54 AtI[0] = BUILD_B(Offset, isCall); // b/bl target
133 // Pop 3 frames off the stack and branch to target
194 // Pop 3 frames off the stack and branch to target
281 // Pop 3 frames off the stack and branch to target
302 void *Target = JITCompilerFunction(StubCallAddr);
309 intptr_t Offset = ((intptr_t)Target - (intptr_t)OrigCallAddr) >> 2;
312 // Clear the original target out.
314 // Fill in the new target.
330 // Rewrite the stub with an unconditional branch to the target, for any users
332 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit);
335 // Put the address of the target function to call and the address to return to
336 // after calling the target function in a place that is easy to get on the
338 return Target;