Searched refs:higher_equal (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp56 if( phase->type( in(1) )->higher_equal( zero ) ) return in(2);
57 if( phase->type( in(2) )->higher_equal( zero ) ) return in(1);
230 if( t1->higher_equal( zero ) ) return t2;
231 if( t2->higher_equal( zero ) ) return t1;
497 // if( t1->higher_equal( zero ) ) return t2;
498 // if( t2->higher_equal( zero ) ) return t1;
535 // if( t1->higher_equal( zero ) ) return t2;
536 // if( t2->higher_equal( zero ) ) return t1;
566 return ( phase->type( in(Offset) )->higher_equal( TypeX_ZERO ) ) ? in(Address) : this;
H A Dsubnode.cpp55 if( phase->type( in(1) )->higher_equal( zero ) &&
57 phase->type( in(2)->in(1) )->higher_equal( zero ) ) {
78 return ( phase->type( in(2) )->higher_equal( zero ) ) ? in(1) : this;
581 if (phase->type(in(2))->higher_equal(TypeInt::ZERO)) {
1106 if (ftype == TypeInt::ZERO && !TypeInt::ZERO->higher_equal(ttype)) {
1108 } else if (ttype == TypeInt::ZERO && !TypeInt::ZERO->higher_equal(ftype)) {
1219 phase->type( cmp1->in(2) )->higher_equal(TypeInt::SYMINT) ) {
H A DparseHelper.cpp88 assert( stopped() || _gvn.type(peek())->higher_equal(TypePtr::NULL_PTR), "what's left behind is null" );
120 assert( stopped() || _gvn.type(peek())->higher_equal(TypePtr::NULL_PTR), "what's left behind is null" );
H A Dmemnode.cpp299 if (base != NULL && phase->type(base)->higher_equal(TypePtr::NULL_PTR) &&
301 // Note: raw address has TOP base and top->higher_equal(TypePtr::NULL_PTR) is true.
320 !phase->type(base)->higher_equal(TypePtr::NULL_PTR), "NULL+offs not RAW address?");
1093 if (!phase->type(value)->higher_equal(phase->type(this)))
1440 && phase->type(base)->higher_equal(TypePtr::NOTNULL)
1447 assert(!phase->type(base)->higher_equal(TypePtr::NULL_PTR), "the autobox pointer should be non-null");
1592 !phase->type(base)->higher_equal(TypePtr::NULL_PTR)) {
1762 assert(value->bottom_type()->higher_equal(_type),"sanity");
1796 if( value && !phase->type(value)->higher_equal( _type ) ) {
1808 !value->bottom_type()->higher_equal(_typ
[all...]
H A Dmulnode.cpp50 if( phase->type( in(1) )->higher_equal( one ) ) return in(2);
51 if( phase->type( in(2) )->higher_equal( one ) ) return in(1);
153 if( t1->higher_equal( zero ) ) return zero;
154 if( t2->higher_equal( zero ) ) return zero;
1096 return (phase->type(in(2))->higher_equal(TypeInt::ZERO)) ? in(1) : this;
H A DcallGenerator.cpp190 if (kit.gvn().type(receiver)->higher_equal(TypePtr::NULL_PTR)) {
775 if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
787 if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
H A Dcfgnode.hpp198 type()->higher_equal(tp);
H A Dparse3.cpp125 assert(_gvn.type(obj)->higher_equal(tjp), "cast_up is no longer needed");
H A DdoCall.cpp540 if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
949 if (receiver_type == NULL || !receiver_type->higher_equal(mr_type)) {
953 // To fix, put the higher_equal check at the call of this routine,
H A Dstringopts.cpp1344 if (!type->higher_equal(TypeInstPtr::NOTNULL)) {
1357 assert(kit.gvn().type(arg)->higher_equal(TypeInstPtr::NOTNULL), "sanity");
1366 } else if (!type->higher_equal(TypeInstPtr::NOTNULL)) {
H A Ddivnode.cpp459 return (phase->type( in(2) )->higher_equal(TypeInt::ONE)) ? in(1) : this;
558 return (phase->type( in(2) )->higher_equal(TypeLong::ONE)) ? in(1) : this;
H A Dparse1.cpp173 assert(_gvn.type(l)->higher_equal(type), "must constrain OSR typestate");
1644 assert(bt2->higher_equal(bt1), "must be consistent with type-flow");
2016 if (tp->higher_equal(TypeInstPtr::NOTNULL))
H A Dparse2.cpp1283 tboth->higher_equal(obj_type)) {
1291 assert(tcc != obj_type && tcc->higher_equal(obj_type), "must improve");
1355 assert(tcc != tval && tcc->higher_equal(tval), "must improve");
H A Dconnode.cpp393 return phase->type(in(1))->higher_equal(_type) ? in(1) : this;
510 result = (jptr->klass()->is_interface() || !in_type->higher_equal(_type))
H A Dnode.cpp968 assert(new_type->higher_equal(n->type()), "new type must refine old type");
974 assert(new_type->higher_equal(n->type()), "new type must refine old type");
H A Dcfgnode.cpp959 // That is, we expect that "t->higher_equal(_type)" holds true.
1202 phase->type(uncasted_input)->higher_equal(type())) {
2112 arg0->higher_equal(TypePtr::NULL_PTR) ) {
H A Dtype.hpp184 int higher_equal( const Type *t ) const { return !cmp(meet(t),t); } function in class:Type
H A DgraphKit.cpp1215 if (t->higher_equal(TypePtr::NULL_PTR)) {
1224 // same as: if (!TypePtr::NULL_PTR->higher_equal(t)) ...
2602 assert(!TypePtr::NULL_PTR->higher_equal(_gvn.type(superklass)->is_klassptr()),
H A Dloopnode.cpp380 if (!TypeInt::INT->higher_equal(iv_trunc_t)) {
698 if (!TypeInt::INT->higher_equal(phi->bottom_type())) {
H A Dlibrary_call.cpp898 if (_gvn.type(index)->higher_equal(TypeInt::POS)) // [0,maxint]
916 if (_gvn.type(index)->higher_equal(TypeInt::POS1)) // [1,maxint]
2463 if (!TypePtr::NULL_PTR->higher_equal(_gvn.type(heap_base_oop))) {
H A Dsuperword.cpp2350 if (t->higher_equal(TypeLong::INT)) {
H A Dcompile.cpp3062 arg0->as_Type()->type()->higher_equal(TypePtr::NULL_PTR)) {

Completed in 189 milliseconds