Searched defs:OopMapValue (Results 1 - 2 of 2) sorted by relevance

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapValue.java34 public class OopMapValue { class
91 public OopMapValue() { setValue((short) 0); setContentReg(new VMReg(0)); } method in class:OopMapValue
92 public OopMapValue(VMReg reg, OopTypes t) { setReg(reg); setType(t); } method in class:OopMapValue
93 public OopMapValue(VMReg reg, OopTypes t, VMReg reg2) { setReg(reg); setType(t); setContentReg(reg2); } method in class:OopMapValue
94 public OopMapValue(CompressedReadStream stream) { readFrom(stream); } method in class:OopMapValue
[all...]
/openjdk10/hotspot/src/share/vm/compiler/
H A DoopMap.hpp46 class OopMapValue: public StackObj { class in inherits:StackObj
75 OopMapValue () { set_value(0); set_content_reg(VMRegImpl::Bad()); } function in class:OopMapValue
76 OopMapValue (VMReg reg, oop_types t) { set_reg_type(reg, t); set_content_reg(VMRegImpl::Bad()); } function in class:OopMapValue
77 OopMapValue (VMReg reg, oop_types t, VMReg reg2) { set_reg_type(reg, t); set_content_reg(reg2); } function in class:OopMapValue
78 OopMapValue (CompressedReadStream* stream) { read_from(stream); } function in class:OopMapValue
[all...]

Completed in 102 milliseconds