Searched defs:instrs (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DrelocInfo_zero.cpp60 short* instrs,
66 short* instrs,
59 pd_swap_in_breakpoint(address x, short* instrs, int instrlen) argument
65 pd_swap_out_breakpoint(address x, short* instrs, int instrlen) argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DrelocInfo_sparc.cpp203 void Relocation::pd_swap_in_breakpoint(address x, short* instrs, int instrlen) { argument
206 if (instrs != NULL) {
209 instrs[i] = ((short*)x)[i];
216 void Relocation::pd_swap_out_breakpoint(address x, short* instrs, int instrlen) { argument
221 u.s[i] = instrs[i];
/openjdk7/hotspot/src/cpu/x86/vm/
H A DrelocInfo_x86.cpp180 void Relocation::pd_swap_in_breakpoint(address x, short* instrs, int instrlen) { argument
182 if (instrs != NULL) {
185 instrs[i] = ((short*)x)[i];
192 void Relocation::pd_swap_out_breakpoint(address x, short* instrs, int instrlen) { argument
196 *(short*)ni->addr_at(0) = instrs[0];
H A Dc1_LinearScan_x86.cpp937 void FpuStackAllocator::merge_insert_add(LIR_List* instrs, FpuStackSim* cur_sim, int reg) { argument
940 instrs->instructions_list()->push(move);
952 void FpuStackAllocator::merge_insert_xchg(LIR_List* instrs, FpuStackSim* cur_sim, int slot) { argument
956 instrs->instructions_list()->push(fxch);
966 void FpuStackAllocator::merge_insert_pop(LIR_List* instrs, FpuStackSim* cur_sim) { argument
970 instrs->instructions_list()->push(fpop);
1002 void FpuStackAllocator::merge_fpu_stack(LIR_List* instrs, FpuStackSim* cur_sim, FpuStackSim* sux_sim) { argument
1033 merge_insert_add(instrs, cur_sim, reg);
1037 merge_insert_xchg(instrs, cur_sim, sux_slot + size_diff);
1061 merge_insert_xchg(instrs, cur_si
1098 merge_cleanup_fpu_stack(LIR_List* instrs, FpuStackSim* cur_sim, BitMap& live_fpu_regs) argument
1158 LIR_List* instrs = new LIR_List(_compilation); local
1189 lir()->insert_before(pos(), instrs); local
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.hpp776 void pd_swap_in_breakpoint (address x, short* instrs, int instrlen);
777 void pd_swap_out_breakpoint (address x, short* instrs, int instrlen);
1296 short* instrs() const { return data() + datalen() - instrlen(); } function in class:breakpoint_Relocation

Completed in 38 milliseconds