Searched refs:CPSlot (Results 1 - 3 of 3) sorted by relevance

/openjdk10/hotspot/src/share/vm/oops/
H A DconstantPool.hpp50 class CPSlot VALUE_OBJ_CLASS_SPEC {
56 CPSlot(intptr_t ptr): _ptr(ptr) {} function in class:VALUE_OBJ_CLASS_SPEC
57 CPSlot(Symbol* ptr, int tag_bits = 0): _ptr((intptr_t)ptr | tag_bits) {} function in class:VALUE_OBJ_CLASS_SPEC
144 CPSlot slot_at(int which) const {
150 return CPSlot(adr);
153 void slot_at_put(int which, CPSlot s) const {
305 slot_at_put(which, CPSlot(s));
488 slot_at_put(which, CPSlot(sym, CPSlot::_pseudo_bit));
H A DconstantPool.cpp2237 CPSlot entry = slot_at(i);
2240 CPSlot entry = slot_at(i);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DConstantPool.java38 private class CPSlot { class in class:ConstantPool
41 CPSlot(Address ptr) { method in class:ConstantPool.CPSlot
164 public CPSlot getSlotAt(long index) {
165 return new CPSlot(getAddressAtRaw(index));

Completed in 206 milliseconds