Lines Matching defs:VMRegImpl
70 // Register numbers below VMRegImpl::stack0 are the same for both. Register
76 class VMRegImpl;
77 typedef VMRegImpl* VMReg;
79 class VMRegImpl {
156 // VMReg res = VMRegImpl::as_VMReg(value() + offset);
196 // the calling convention's registers. VMRegImpl::Bad is returned for any
200 // 32-bits of O0/O1 are set to VMRegImpl::Bad). Longs in one register & doubles
208 void set_bad ( ) { _second=VMRegImpl::Bad(); _first=VMRegImpl::Bad(); }
209 void set1 ( VMReg v ) { _second=VMRegImpl::Bad(); _first=v; }
216 _second = VMRegImpl::Bad();
243 VMRegPair(VMReg f) { _second = VMRegImpl::Bad(); _first = f; }
244 VMRegPair() { _second = VMRegImpl::Bad(); _first = VMRegImpl::Bad(); }