Searched refs:bytes_to_skip (Results 1 - 7 of 7) sorted by relevance

/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_CodeStubs_ppc.cpp346 int bytes_to_skip = 0; local
370 bytes_to_skip += __ offset() - offset;
377 bytes_to_skip += sizeof_patch_record;
385 __ emit_int8(bytes_to_skip);
388 assert(patch_info_pc - end_of_patch == bytes_to_skip, "incorrect patch info");
/openjdk10/hotspot/src/cpu/s390/vm/
H A Dc1_CodeStubs_s390.cpp340 int bytes_to_skip = 0; local
363 bytes_to_skip += __ offset() - offset;
372 bytes_to_skip += sizeof_patch_record;
380 __ emit_int8(bytes_to_skip);
383 assert(patch_info_pc - end_of_patch == bytes_to_skip, "incorrect patch info");
/openjdk10/hotspot/src/cpu/arm/vm/
H A Dc1_CodeStubs_arm.cpp326 int bytes_to_skip = 0; local
341 bytes_to_skip += __ offset() - offset;
348 bytes_to_skip += sizeof_patch_record;
350 __ emit_int32(0xff | being_initialized_entry_offset << 8 | bytes_to_skip << 16 | _bytes_to_copy << 24);
353 assert(patch_info_pc - end_of_patch == bytes_to_skip, "incorrect patch info");
/openjdk10/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp350 int bytes_to_skip = 0; local
376 bytes_to_skip += __ offset() - offset;
386 bytes_to_skip += sizeof_patch_record;
394 __ emit_int8(bytes_to_skip);
397 assert(patch_info_pc - end_of_patch == bytes_to_skip, "incorrect patch info");
/openjdk10/hotspot/src/cpu/sparc/vm/
H A Dc1_CodeStubs_sparc.cpp337 int bytes_to_skip = 0; local
361 bytes_to_skip += __ offset() - offset;
368 bytes_to_skip += sizeof_patch_record;
376 __ emit_int8(bytes_to_skip);
379 assert(patch_info_pc - end_of_patch == bytes_to_skip, "incorrect patch info");
H A DmacroAssembler_sparc.inline.hpp316 inline intptr_t MacroAssembler::load_pc_address( Register reg, int bytes_to_skip ) {
317 intptr_t thepc = (intptr_t)pc() + 2*BytesPerInstWord + bytes_to_skip;
H A DmacroAssembler_sparc.hpp896 inline intptr_t load_pc_address( Register reg, int bytes_to_skip );

Completed in 119 milliseconds