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

/openjdk7/hotspot/src/share/vm/opto/
H A Doutput.cpp582 static LocationValue *new_loc_value( PhaseRegAlloc *ra, OptoReg::Name regnum, Location::Type l_type ) { argument
584 assert(OptoReg::is_valid(regnum), "location must be valid");
585 return (OptoReg::is_reg(regnum))
586 ? new LocationValue(Location::new_reg_loc(l_type, OptoReg::as_VMReg(regnum)) )
587 : new LocationValue(Location::new_stk_loc(l_type, ra->reg2offset(regnum)));
654 OptoReg::Name regnum = _regalloc->get_reg_first(local); local
655 if( OptoReg::is_valid(regnum) ) {// Got a register/stack?
675 array->append(new_loc_value( _regalloc, regnum, Location::dbl ));
678 array->append(new_loc_value( _regalloc, regnum, Location::lng ));
682 array->append(new_loc_value( _regalloc, regnum, Locatio
[all...]

Completed in 48 milliseconds