comparison src/cpu/sparc/vm/jvmciCodeInstaller_sparc.cpp @ 22684:ceca35d52380

removed ununsed code
author Doug Simon <doug.simon@oracle.com>
date Thu, 15 Oct 2015 17:30:42 +0200
parents 5ba5ff0fda9e
children 3da4f19cf93b
comparison
equal deleted inserted replaced
22683:2935e7fbd941 22684:ceca35d52380
86 NativeMovRegMem* load = nativeMovRegMem_at(pc); 86 NativeMovRegMem* load = nativeMovRegMem_at(pc);
87 // This offset must match with SPARCLoadConstantTableBaseOp.emitCode 87 // This offset must match with SPARCLoadConstantTableBaseOp.emitCode
88 load->set_offset(- (const_size - data_offset + Assembler::min_simm13())); 88 load->set_offset(- (const_size - data_offset + Assembler::min_simm13()));
89 TRACE_jvmci_3("relocating ld at %p (+%d) with destination at %d", pc, pc_offset, data_offset); 89 TRACE_jvmci_3("relocating ld at %p (+%d) with destination at %d", pc, pc_offset, data_offset);
90 } 90 }
91 }
92
93 void CodeInstaller::pd_relocate_CodeBlob(CodeBlob* cb, NativeInstruction* inst) {
94 fatal("CodeInstaller::pd_relocate_CodeBlob - sparc unimp");
95 } 91 }
96 92
97 void CodeInstaller::pd_relocate_ForeignCall(NativeInstruction* inst, jlong foreign_call_destination) { 93 void CodeInstaller::pd_relocate_ForeignCall(NativeInstruction* inst, jlong foreign_call_destination) {
98 address pc = (address) inst; 94 address pc = (address) inst;
99 if (inst->is_call()) { 95 if (inst->is_call()) {