Searched refs:Where (Results 1 - 4 of 4) sorted by relevance

/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...]
/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/ui/classbrowser/
H A DHTMLGenerator.java1279 Location.Where w = loc.getWhere();
1282 if (w == Location.Where.ON_STACK) {
1284 } else if (w == Location.Where.IN_REGISTER) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp2077 declare_integer_type(Location::Where) \
2411 /* constants from Location::Where enum */ \

Completed in 38 milliseconds