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

/openjdk7/hotspot/src/share/vm/code/
H A Dlocation.hpp40 // Where: [4]
46 enum Where { enum in class:VALUE_OBJ_CLASS_SPEC
77 Location(Where where_, Type type_, unsigned offset_) {
84 inline void set(Where where_, Type type_, unsigned offset_) {
100 Where where() const { return (Where) ((_value & WHERE_MASK) >> WHERE_SHIFT);}
108 int stack_offset() const { assert(where() == on_stack, "wrong Where"); return offset()<<LogBytesPerInt; }
109 int register_number() const { assert(where() == in_register, "wrong Where"); return offset() ; }
111 VMReg reg() const { assert(where() == in_register, "wrong Where"); return VMRegImpl::as_VMReg(offset()) ; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DLocation.java43 Where: [4]
80 // Location::Where constants
87 // type safe enum for "Where"
88 public static class Where { class in class:Location
89 public static final Where ON_STACK = new Where("on_stack");
90 public static final Where IN_REGISTER = new Where("in_register");
92 private Where(String value) { method in class:Location.Where
186 // constants in Where enu
[all...]

Completed in 22 milliseconds