Searched refs:is_con (Results 1 - 19 of 19) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dmulnode.cpp412 if( !r0->is_con() && !r1->is_con() )
416 if( r0->is_con() && r1->is_con() )
419 if( r0->is_con() && r0->get_con() > 0 )
422 if( r1->is_con() && r1->get_con() > 0 )
442 if (t2 && t2->is_con()) {
455 if (t12 && t12->is_con()) { // Shift is by a constant
471 if( !t2 || !t2->is_con() ) return MulNode::Ideal(phase, can_reshape);
508 if( t12 && t12->is_con() ) { // Shif
[all...]
H A Daddnode.cpp349 if( !(r0->is_con() && r1->is_con()) ) {
467 if( !(r0->is_con() && r1->is_con()) ) {
585 if( t12->is_con() ) { // Left input is an add of a constant?
592 if( t2->is_con() ) {
656 if (tx->is_con()) { // Left input is an add of a constant?
676 if (p2->is_con()) { // Left input is an add of a constant?
769 if( !r0->is_con() || !r1->is_con() )
[all...]
H A Ddivnode.cpp123 if( andconi_t && andconi_t->is_con() ) {
376 if( andconl_t && andconl_t->is_con() ) {
475 if( !ti->is_con() ) return NULL;
514 if( i2->is_con() && i2->get_con() != 0 ) {
536 if( i1->is_con() ) {
574 if( !tl->is_con() ) return NULL;
613 if( i2->is_con() && i2->get_con() != 0 ) {
635 if( i1->is_con() ) {
856 if( !ti->is_con() ) return NULL;
988 if( !i1->is_con() || !i
[all...]
H A DidealGraphPrinter.cpp439 print_prop("is_con", "true");
529 if (t->base() == Type::Int && t->is_int()->is_con()) {
531 assert(typeInt->is_con(), "must be constant");
543 } else if (t->base() == Type::Long && t->is_long()->is_con()) {
545 assert(typeLong->is_con(), "must be constant");
H A Dconnode.cpp789 if( ti->is_con() ) return TypeD::make( (double)ti->get_con() );
799 if( ti->is_con() ) return TypeF::make( (float)ti->get_con() );
982 if( tl->is_con() ) return TypeD::make( (double)tl->get_con() );
992 if( tl->is_con() ) return TypeF::make( (float)tl->get_con() );
1009 if (tl->is_con())
1231 if( !tl->is_con() ) return bottom_type();
1242 if( !ti->is_con() ) return bottom_type();
1275 if (ti && ti->is_con()) {
1297 if (tl && tl->is_con()) {
1320 if (ti && ti->is_con()) {
[all...]
H A Dtype.hpp426 int is_con() const { return _lo==_hi; } function in class:TypeInt
427 bool is_con(int i) const { return is_con() && _lo == i; } function in class:TypeInt
428 jint get_con() const { assert( is_con(), "" ); return _lo; }
482 int is_con() const { return _lo==_hi; } function in class:TypeLong
483 bool is_con(int i) const { return is_con() && _lo == i; } function in class:TypeLong
484 jlong get_con() const { assert( is_con(), "" ); return _lo; }
H A Dsubnode.cpp151 if( i->is_con() )
173 if (tcon != NULL && tcon->is_con()) {
280 i->is_con() )
301 if (tcon != NULL && tcon->is_con()) {
504 else if( r0->is_con() && r1->is_con() ) { // comparing constants?
611 else if( r0->is_con() && r1->is_con() ) { // comparing constants?
1048 if( ti->is_con() ) { // Only 1 kind of condition codes set?
H A DphaseX.hpp232 return (t != NULL && t->is_con()) ? t->get_con() : value_if_unknown;
236 return (t != NULL && t->is_con()) ? t->get_con() : value_if_unknown;
H A Dmachnode.cpp300 if( t_offset->is_con() ) {
H A Dnode.hpp932 return (t != NULL && t->is_con()) ? t->get_con() : value_if_unknown;
951 return (t != NULL && t->is_con()) ? t->get_con() : value_if_unknown;
H A Dlcm.cpp101 if (trtype->isa_int() && trtype->is_int()->is_con()) {
H A Dloopopts.cpp345 if( scale_t && scale_t->is_con() && scale_t->get_con() >= 16 )
1582 if (add2t->is_con()) {
H A Dmemnode.cpp2436 if( t && t->is_con() && (t->get_con() & mask) == mask ) {
2454 if( t && t->is_con() && (t->get_con() <= num_bits) ) {
2458 if( t2 && t2->is_con() && (t2->get_con() == t->get_con()) ) {
2636 if (!t->is_con()) return NULL;
H A Dlibrary_call.cpp2150 if (otype != NULL && otype->is_con() &&
3859 if (caller_depth_type == NULL || !caller_depth_type->is_con()) {
4410 if (src_offset_inttype != NULL && src_offset_inttype->is_con() &&
4411 dest_offset_inttype != NULL && dest_offset_inttype->is_con()) {
H A Dloopnode.cpp891 if (init_t->is_int()->is_con() && limit_t->is_int()->is_con()) {
H A Dtype.cpp1305 else if (is_con())
1584 else if (is_con())
H A Dparse2.cpp695 if (ti->is_con()) {
H A Dsuperword.cpp1445 if (t != NULL && t->is_con()) {
H A Dcompile.cpp2879 if (t != NULL && t->is_con()) {

Completed in 285 milliseconds