Searched refs:orig_addr (Results 1 - 9 of 9) sorted by relevance

/openjdk9/hotspot/src/cpu/ppc/vm/
H A DrelocInfo_ppc.cpp68 address Relocation::pd_call_destination(address orig_addr) { argument
72 if (orig_addr != NULL) {
73 // We just moved this call instruction from orig_addr to addr().
74 // This means its target will appear to have grown by addr() - orig_addr.
75 adj = -(inst_loc - orig_addr);
87 orig_addr = nativeCall_at(inst_loc)->get_trampoline();
88 if (orig_addr == NULL) {
91 return ((NativeCallTrampolineStub*)orig_addr)->destination();
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DrelocInfo_aarch64.cpp60 address Relocation::pd_call_destination(address orig_addr) { argument
68 if (orig_addr != NULL) {
69 address new_addr = MacroAssembler::pd_call_destination(orig_addr);
74 new_addr = (new_addr == orig_addr) ? addr() : new_addr;
/openjdk9/hotspot/src/cpu/zero/vm/
H A DrelocInfo_zero.cpp38 address Relocation::pd_call_destination(address orig_addr) { argument
/openjdk9/hotspot/src/cpu/s390/vm/
H A DrelocInfo_s390.cpp79 address Relocation::pd_call_destination(address orig_addr) { argument
85 address a1 = MacroAssembler::get_target_addr_pcrel(orig_addr+MacroAssembler::nop_size());
88 address a3 = nativeFarCall_at(orig_addr)->destination();
93 Assembler::dump_code_range(tty, orig_addr, range, "pc-relative call w/o ShortenBranches?");
102 if (orig_addr == NULL) {
106 call = nativeFarCall_at(orig_addr);
114 intptr_t off = inst_addr - orig_addr;
/openjdk9/hotspot/src/cpu/arm/vm/
H A DrelocInfo_arm.cpp58 address Relocation::pd_call_destination(address orig_addr) { argument
62 if (orig_addr != NULL) {
63 // We just moved this call instruction from orig_addr to addr().
64 // This means that, when relative, its target will appear to have grown by addr() - orig_addr.
65 adj = orig_addr - pc;
/openjdk9/hotspot/src/cpu/x86/vm/
H A DrelocInfo_x86.cpp85 address Relocation::pd_call_destination(address orig_addr) { argument
87 if (orig_addr != NULL) {
88 // We just moved this call instruction from orig_addr to addr().
89 // This means its target will appear to have grown by addr() - orig_addr.
90 adj = -( addr() - orig_addr );
189 address orig_addr = old_addr_for(addr(), src, dest); local
190 NativeInstruction* oni = nativeInstruction_at(orig_addr);
191 int32_t* orig_disp = (int32_t*) Assembler::locate_operand(orig_addr, which);
/openjdk9/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 );
/openjdk9/hotspot/src/share/vm/code/
H A DrelocInfo.cpp505 address orig_addr = old_addr_for(addr(), src, dest); local
506 address callee = pd_call_destination(orig_addr);
H A DrelocInfo.hpp766 address pd_call_destination (address orig_addr = NULL);

Completed in 139 milliseconds