Searched defs:orig_addr (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DrelocInfo_zero.cpp38 address Relocation::pd_call_destination(address orig_addr) { argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DrelocInfo_sparc.cpp144 address Relocation::pd_call_destination(address orig_addr) { argument
146 if (orig_addr != NULL) {
147 // We just moved this call instruction from orig_addr to addr().
148 // This means its target will appear to have grown by addr() - orig_addr.
149 adj = -( addr() - orig_addr );
/openjdk7/hotspot/src/cpu/x86/vm/
H A DrelocInfo_x86.cpp76 address Relocation::pd_call_destination(address orig_addr) { argument
78 if (orig_addr != NULL) {
79 // We just moved this call instruction from orig_addr to addr().
80 // This means its target will appear to have grown by addr() - orig_addr.
81 adj = -( addr() - orig_addr );
206 address orig_addr = old_addr_for(addr(), src, dest); local
207 NativeInstruction* oni = nativeInstruction_at(orig_addr);
208 int32_t* orig_disp = (int32_t*) Assembler::locate_operand(orig_addr, which);
228 address orig_addr = old_addr_for(addr(), src, dest); local
229 NativeInstruction* oni = nativeInstruction_at(orig_addr);
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp561 address orig_addr = old_addr_for(addr(), src, dest); local
562 address callee = pd_call_destination(orig_addr);

Completed in 34 milliseconds