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

/openjdk10/hotspot/src/share/vm/shark/
H A DsharkNativeWrapper.cpp120 int slot_offset = stack()->locals_slots_offset() + arg_size() - 1 - i; local
121 int adjusted_offset = slot_offset;
136 box = stack()->slot_addr(slot_offset, SharkType::oop_type());
159 oopmap->set_oop(SharkStack::slot2reg(slot_offset));
162 _receiver_slot_offset = slot_offset;
/openjdk10/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp2309 compute_offset(slot_offset, k, vmSymbols::slot_name(), vmSymbols::int_signature());
2345 return reflect->int_field(slot_offset);
2350 reflect->int_field_put(slot_offset, value);
2488 compute_offset(slot_offset, k, vmSymbols::slot_name(), vmSymbols::int_signature());
2543 return reflect->int_field(slot_offset);
2548 reflect->int_field_put(slot_offset, value);
2630 compute_offset(slot_offset, k, vmSymbols::slot_name(), vmSymbols::int_signature());
2683 return reflect->int_field(slot_offset);
2688 reflect->int_field_put(slot_offset, value);
3632 int java_lang_reflect_Method::slot_offset; member in class:java_lang_reflect_Method
3642 int java_lang_reflect_Constructor::slot_offset; member in class:java_lang_reflect_Constructor
3651 int java_lang_reflect_Field::slot_offset; member in class:java_lang_reflect_Field
[all...]
H A DjavaClasses.hpp540 static int slot_offset; member in class:java_lang_reflect_Method
610 static int slot_offset; member in class:java_lang_reflect_Constructor
669 static int slot_offset; member in class:java_lang_reflect_Field
/openjdk10/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp214 int slot_offset = monitor_offset - ((i * 2) * BytesPerWord); local
219 __ ld_ptr(OSR_buf, slot_offset + 1*BytesPerWord, O7);
226 __ ld_ptr(OSR_buf, slot_offset + 0, O7);
228 __ ld_ptr(OSR_buf, slot_offset + 1*BytesPerWord, O7);
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A Dc1_LIRAssembler_aarch64.cpp271 int slot_offset = monitor_offset - ((i * 2) * BytesPerWord); local
276 __ ldr(rscratch1, Address(OSR_buf, slot_offset + 1*BytesPerWord));
282 __ ldr(r19, Address(OSR_buf, slot_offset + 0));
284 __ ldr(r19, Address(OSR_buf, slot_offset + 1*BytesPerWord));
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_LIRAssembler_ppc.cpp122 int slot_offset = monitor_offset - ((i * 2) * BytesPerWord); local
127 __ ld(R0, slot_offset + 1*BytesPerWord, OSR_buf);
138 __ ld(R0, slot_offset + 0, OSR_buf);
140 __ ld(R0, slot_offset + 1*BytesPerWord, OSR_buf);
/openjdk10/hotspot/src/cpu/s390/vm/
H A Dc1_LIRAssembler_s390.cpp124 int slot_offset = monitor_offset - ((i * 2) * BytesPerWord); local
126 __ asm_assert_mem8_isnot_zero(slot_offset + 1*BytesPerWord, OSR_buf, "locked object is NULL", __LINE__);
128 __ z_lg(Z_R1_scratch, slot_offset + 0, OSR_buf);
130 __ z_lg(Z_R1_scratch, slot_offset + 1*BytesPerWord, OSR_buf);
/openjdk10/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp320 int slot_offset = monitor_offset - ((i * 2) * BytesPerWord); local
325 __ cmpptr(Address(OSR_buf, slot_offset + 1*BytesPerWord), (int32_t)NULL_WORD);
331 __ movptr(rbx, Address(OSR_buf, slot_offset + 0));
333 __ movptr(rbx, Address(OSR_buf, slot_offset + 1*BytesPerWord));
/openjdk10/hotspot/src/cpu/arm/vm/
H A Dc1_LIRAssembler_arm.cpp208 int slot_offset = monitor_offset - (i * 2 * BytesPerWord); local
209 __ ldr(R1, Address(OSR_buf, slot_offset + 0*BytesPerWord));
210 __ ldr(R2, Address(OSR_buf, slot_offset + 1*BytesPerWord));

Completed in 141 milliseconds