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

/openjdk7/hotspot/src/cpu/zero/vm/
H A DrelocInfo_zero.cpp61 int instrlen) {
67 int instrlen) {
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
205 // %%% probably do not need a general instrlen; just use the trap size
207 assert(instrlen * sizeof(short) == NativeIllegalInstruction::instruction_size, "enough instrlen in reloc. data");
208 for (int i = 0; i < instrlen; i++) {
216 void Relocation::pd_swap_out_breakpoint(address x, short* instrs, int instrlen) { argument
218 assert(instrlen * sizeof(short) == sizeof(int), "enough buf");
220 for (int i = 0; i < instrlen; 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
183 assert(instrlen * sizeof(short) == NativeIllegalInstruction::instruction_size, "enough instrlen in reloc. data");
184 for (int i = 0; i < instrlen; i++) {
192 void Relocation::pd_swap_out_breakpoint(address x, short* instrs, int instrlen) { argument
/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(); }
1297 int instrlen() const { return removable() ? pd_breakpoint_size() : 0; } function in class:breakpoint_Relocation

Completed in 36 milliseconds