Searched refs:_widen (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dmulnode.cpp265 return TypeInt::make(lo0, hi0, MAX2(r0->_widen,r1->_widen));
361 return TypeLong::make(lo0, hi0, MAX2(r0->_widen,r1->_widen));
409 int widen = MAX2(r0->_widen,r1->_widen);
541 int widen = MAX2(r0->_widen,r1->_widen);
740 MAX2(r1->_widen,r2->_widen));
[all...]
H A Dtype.cpp1094 TypeInt::TypeInt( jint lo, jint hi, int w ) : Type(Int), _lo(lo), _hi(hi), _widen(w) {
1156 return make( MIN2(_lo,r->_lo), MAX2(_hi,r->_hi), MAX2(_widen,r->_widen) );
1162 int w = normalize_int_widen(_hi,_lo, WidenMax-_widen);
1181 if( _widen > ot->_widen ) return this;
1186 if (_widen == WidenMax) {
1207 return make(_lo,_hi,_widen+1);
1257 if (ft->_widen < this->_widen) {
[all...]
H A Daddnode.cpp365 return TypeInt::make( lo, hi, MAX2(r0->_widen,r1->_widen) );
483 return TypeLong::make( lo, hi, MAX2(r0->_widen,r1->_widen) );
844 return TypeInt::make( MAX2(r0->_lo,r1->_lo), MAX2(r0->_hi,r1->_hi), MAX2(r0->_widen,r1->_widen) );
931 return TypeInt::make( MIN2(r0->_lo,r1->_lo), MIN2(r0->_hi,r1->_hi), MAX2(r0->_widen,r1->_widen) );
H A Ddivnode.cpp512 int widen = MAX2(i1->_widen, i2->_widen);
611 int widen = MAX2(i1->_widen, i2->_widen);
H A Dconnode.cpp818 const Type* tl = TypeLong::make(ti->_lo, ti->_hi, ti->_widen);
854 int w1 = this_type->_widen;
871 MAX2((int)in_type->_widen, w1));
921 int widen = MAX2(tx->_widen, ty->_widen);
H A DphaseX.cpp1417 assert(t0->isa_int()->_widen <= t->isa_int()->_widen, "widen increases");
1420 assert(t0->isa_long()->_widen <= t->isa_long()->_widen, "widen increases");
H A Dsubnode.cpp254 return TypeInt::make(lo,hi,MAX2(r0->_widen,r1->_widen));
363 return TypeLong::make(lo,hi,MAX2(r0->_widen,r1->_widen));
H A Dtype.hpp207 // Normalizes all empty values to TOP. Does not kill _widen bits.
419 const short _widen; // Limit on times we widen this sucker member in class:TypeInt
436 // Do not kill _widen bits.
475 const short _widen; // Limit on times we widen this sucker member in class:TypeLong
492 // Do not kill _widen bits.
H A Difnode.cpp646 const TypeInt* rtn_t = TypeInt::make(lo, hi, cmp2_t->_widen);
H A Dlibrary_call.cpp1894 int widen = MAX2(txvalue->_widen, tyvalue->_widen);

Completed in 98 milliseconds