Searched defs:VMReg (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVMReg.java36 public class VMReg { class
58 public VMReg(int i) { method in class:VMReg
74 if ((arg != null) || (!(arg instanceof VMReg))) {
78 return ((VMReg) arg).value == value;
81 public boolean lessThan(VMReg arg) { return value < arg.value; }
82 public boolean lessThanOrEqual(VMReg arg) { return value <= arg.value; }
83 public boolean greaterThan(VMReg arg) { return value > arg.value; }
84 public boolean greaterThanOrEqual(VMReg arg) { return value >= arg.value; }
86 public int minus(VMReg arg) { return value - arg.value; }
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dregister_zero.hpp33 typedef VMRegImpl* VMReg; typedef
52 VMReg as_VMReg();
87 VMReg as_VMReg();
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dregister_x86.hpp32 typedef VMRegImpl* VMReg; typedef
62 VMReg as_VMReg();
113 VMReg as_VMReg();
155 VMReg as_VMReg();
/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.hpp68 //------------------------------VMReg------------------------------------------
77 typedef VMRegImpl* VMReg; typedef
91 static VMReg stack0;
99 static VMReg as_VMReg(int val, bool bad_ok = false) { assert(val > BAD || bad_ok, "invalid"); return (VMReg) (intptr_t) val; }
111 static VMReg Bad() { return (VMReg) (intptr_t) BAD; }
118 // 64bit registers only one half of the VMReg (and OptoReg) is considered
128 // we don't try and get the VMReg number of a physical register that doesn't
130 VMReg nex
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dregister_sparc.hpp34 typedef VMRegImpl* VMReg; typedef
68 VMReg as_VMReg();
237 VMReg as_VMReg( );

Completed in 542 milliseconds