Lines Matching defs:t1

110   const Type *t1 = phase->type( in(1) );
112 int con_left = t1->singleton();
208 const Type *t1 = phase->type( in(1) );
210 if( t1 == Type::TOP ) return Type::TOP;
215 if( (t1 == bot) || (t2 == bot) ||
216 (t1 == Type::BOTTOM) || (t2 == Type::BOTTOM) )
220 const Type *tadd = add_of_identity( t1, t2 );
223 return add_ring(t1,t2); // Local flavor of type addition
228 const Type *AddNode::add_of_identity( const Type *t1, const Type *t2 ) const {
230 if( t1->higher_equal( zero ) ) return t2;
231 if( t2->higher_equal( zero ) ) return t1;
344 const Type *AddINode::add_ring( const Type *t0, const Type *t1 ) const {
346 const TypeInt *r1 = t1->is_int();
462 const Type *AddLNode::add_ring( const Type *t0, const Type *t1 ) const {
464 const TypeLong *r1 = t1->is_long();
490 const Type *AddFNode::add_of_identity( const Type *t1, const Type *t2 ) const {
494 // jfloat f1 = t1->getf();
497 // if( t1->higher_equal( zero ) ) return t2;
498 // if( t2->higher_equal( zero ) ) return t1;
507 const Type *AddFNode::add_ring( const Type *t0, const Type *t1 ) const {
509 return TypeF::make( t0->getf() + t1->getf() );
528 const Type *AddDNode::add_of_identity( const Type *t1, const Type *t2 ) const {
532 // jfloat f1 = t1->getf();
535 // if( t1->higher_equal( zero ) ) return t2;
536 // if( t2->higher_equal( zero ) ) return t1;
544 const Type *AddDNode::add_ring( const Type *t0, const Type *t1 ) const {
546 return TypeD::make( t0->getd() + t1->getd() );
665 const Type *t1 = phase->type( in(Address) );
667 if( t1 == Type::TOP ) return Type::TOP;
671 const TypePtr *p1 = t1->isa_ptr();
751 const Type *OrINode::add_ring( const Type *t0, const Type *t1 ) const {
753 const TypeInt *r1 = t1->is_int();
788 const Type *OrLNode::add_ring( const Type *t0, const Type *t1 ) const {
790 const TypeLong *r1 = t1->is_long();
806 const Type *XorINode::add_ring( const Type *t0, const Type *t1 ) const {
808 const TypeInt *r1 = t1->is_int();
824 const Type *XorLNode::add_ring( const Type *t0, const Type *t1 ) const {
826 const TypeLong *r1 = t1->is_long();
839 const Type *MaxINode::add_ring( const Type *t0, const Type *t1 ) const {
841 const TypeInt *r1 = t1->is_int();
926 const Type *MinINode::add_ring( const Type *t0, const Type *t1 ) const {
928 const TypeInt *r1 = t1->is_int();