< prev index next >

src/hotspot/share/opto/type.cpp

Print this page

  73   { Bad,             T_ILLEGAL,    "vectory:",      false, 0,                    relocInfo::none          },  // VectorY
  74   { Bad,             T_ILLEGAL,    "vectorz:",      false, 0,                    relocInfo::none          },  // VectorZ
  75 #elif defined(S390)
  76   { Bad,             T_ILLEGAL,    "vectormask:",   false, Op_RegVectMask,       relocInfo::none          },  // VectorMask.
  77   { Bad,             T_ILLEGAL,    "vectora:",      false, Op_VecA,              relocInfo::none          },  // VectorA.
  78   { Bad,             T_ILLEGAL,    "vectors:",      false, 0,                    relocInfo::none          },  // VectorS
  79   { Bad,             T_ILLEGAL,    "vectord:",      false, Op_RegL,              relocInfo::none          },  // VectorD
  80   { Bad,             T_ILLEGAL,    "vectorx:",      false, 0,                    relocInfo::none          },  // VectorX
  81   { Bad,             T_ILLEGAL,    "vectory:",      false, 0,                    relocInfo::none          },  // VectorY
  82   { Bad,             T_ILLEGAL,    "vectorz:",      false, 0,                    relocInfo::none          },  // VectorZ
  83 #else // all other
  84   { Bad,             T_ILLEGAL,    "vectormask:",   false, Op_RegVectMask,       relocInfo::none          },  // VectorMask.
  85   { Bad,             T_ILLEGAL,    "vectora:",      false, Op_VecA,              relocInfo::none          },  // VectorA.
  86   { Bad,             T_ILLEGAL,    "vectors:",      false, Op_VecS,              relocInfo::none          },  // VectorS
  87   { Bad,             T_ILLEGAL,    "vectord:",      false, Op_VecD,              relocInfo::none          },  // VectorD
  88   { Bad,             T_ILLEGAL,    "vectorx:",      false, Op_VecX,              relocInfo::none          },  // VectorX
  89   { Bad,             T_ILLEGAL,    "vectory:",      false, Op_VecY,              relocInfo::none          },  // VectorY
  90   { Bad,             T_ILLEGAL,    "vectorz:",      false, Op_VecZ,              relocInfo::none          },  // VectorZ
  91 #endif
  92   { Bad,             T_ADDRESS,    "anyptr:",       false, Op_RegP,              relocInfo::none          },  // AnyPtr
  93   { Bad,             T_ADDRESS,    "rawptr:",       false, Op_RegP,              relocInfo::none          },  // RawPtr
  94   { Bad,             T_OBJECT,     "oop:",          true,  Op_RegP,              relocInfo::oop_type      },  // OopPtr
  95   { Bad,             T_OBJECT,     "inst:",         true,  Op_RegP,              relocInfo::oop_type      },  // InstPtr
  96   { Bad,             T_OBJECT,     "ary:",          true,  Op_RegP,              relocInfo::oop_type      },  // AryPtr
  97   { Bad,             T_METADATA,   "metadata:",     false, Op_RegP,              relocInfo::metadata_type },  // MetadataPtr
  98   { Bad,             T_METADATA,   "klass:",        false, Op_RegP,              relocInfo::metadata_type },  // KlassPtr
  99   { Bad,             T_METADATA,   "instklass:",    false, Op_RegP,              relocInfo::metadata_type },  // InstKlassPtr
 100   { Bad,             T_METADATA,   "aryklass:",     false, Op_RegP,              relocInfo::metadata_type },  // AryKlassPtr
 101   { Bad,             T_OBJECT,     "func",          false, 0,                    relocInfo::none          },  // Function
 102   { Abio,            T_ILLEGAL,    "abIO",          false, 0,                    relocInfo::none          },  // Abio
 103   { Return_Address,  T_ADDRESS,    "return_address",false, Op_RegP,              relocInfo::none          },  // Return_Address
 104   { Memory,          T_ILLEGAL,    "memory",        false, 0,                    relocInfo::none          },  // Memory
 105   { FloatBot,        T_FLOAT,      "float_top",     false, Op_RegF,              relocInfo::none          },  // FloatTop
 106   { FloatCon,        T_FLOAT,      "ftcon:",        false, Op_RegF,              relocInfo::none          },  // FloatCon
 107   { FloatTop,        T_FLOAT,      "float",         false, Op_RegF,              relocInfo::none          },  // FloatBot
 108   { DoubleBot,       T_DOUBLE,     "double_top",    false, Op_RegD,              relocInfo::none          },  // DoubleTop
 109   { DoubleCon,       T_DOUBLE,     "dblcon:",       false, Op_RegD,              relocInfo::none          },  // DoubleCon
 110   { DoubleTop,       T_DOUBLE,     "double",        false, Op_RegD,              relocInfo::none          },  // DoubleBot
 111   { Top,             T_ILLEGAL,    "bottom",        false, 0,                    relocInfo::none          }   // Bottom
 112 };
 113 

4511 
4512 bool TypeInstPtr::maybe_java_subtype_of_helper(const TypeOopPtr* other, bool this_exact, bool other_exact) const {
4513   return TypePtr::maybe_java_subtype_of_helper_for_instance(this, other, this_exact, other_exact);
4514 }
4515 
4516 
4517 //------------------------------dump2------------------------------------------
4518 // Dump oop Type
4519 #ifndef PRODUCT
4520 void TypeInstPtr::dump2(Dict &d, uint depth, outputStream* st) const {
4521   // Print the name of the klass.
4522   klass()->print_name_on(st);
4523   _interfaces->dump(st);
4524 
4525   switch( _ptr ) {
4526   case Constant:
4527     if (WizardMode || Verbose) {
4528       ResourceMark rm;
4529       stringStream ss;
4530 
4531       st->print(" ");
4532       const_oop()->print_oop(&ss);
4533       // 'const_oop->print_oop()' may emit newlines('\n') into ss.
4534       // suppress newlines from it so -XX:+Verbose -XX:+PrintIdeal dumps one-liner for each node.
4535       char* buf = ss.as_string(/* c_heap= */false);
4536       StringUtils::replace_no_expand(buf, "\n", "");
4537       st->print_raw(buf);
4538     }
4539   case BotPTR:
4540     if (!WizardMode && !Verbose) {
4541       if( _klass_is_exact ) st->print(":exact");
4542       break;
4543     }
4544   case TopPTR:
4545   case AnyNull:
4546   case NotNull:
4547     st->print(":%s", ptr_msg[_ptr]);
4548     if( _klass_is_exact ) st->print(":exact");
4549     break;
4550   default:
4551     break;

5132     }
5133   }
5134   return result;
5135 }
5136 
5137 
5138 //------------------------------xdual------------------------------------------
5139 // Dual: compute field-by-field dual
5140 const Type *TypeAryPtr::xdual() const {
5141   return new TypeAryPtr(dual_ptr(), _const_oop, _ary->dual()->is_ary(),_klass, _klass_is_exact, dual_offset(), dual_instance_id(), is_autobox_cache(), dual_speculative(), dual_inline_depth());
5142 }
5143 
5144 //------------------------------dump2------------------------------------------
5145 #ifndef PRODUCT
5146 void TypeAryPtr::dump2( Dict &d, uint depth, outputStream *st ) const {
5147   _ary->dump2(d,depth,st);
5148   _interfaces->dump(st);
5149 
5150   switch( _ptr ) {
5151   case Constant:

5152     const_oop()->print(st);
5153     break;
5154   case BotPTR:
5155     if (!WizardMode && !Verbose) {
5156       if( _klass_is_exact ) st->print(":exact");
5157       break;
5158     }
5159   case TopPTR:
5160   case AnyNull:
5161   case NotNull:
5162     st->print(":%s", ptr_msg[_ptr]);
5163     if( _klass_is_exact ) st->print(":exact");
5164     break;
5165   default:
5166     break;
5167   }
5168 
5169   if( _offset != 0 ) {
5170     BasicType basic_elem_type = elem()->basic_type();
5171     int header_size = arrayOopDesc::base_offset_in_bytes(basic_elem_type);

  73   { Bad,             T_ILLEGAL,    "vectory:",      false, 0,                    relocInfo::none          },  // VectorY
  74   { Bad,             T_ILLEGAL,    "vectorz:",      false, 0,                    relocInfo::none          },  // VectorZ
  75 #elif defined(S390)
  76   { Bad,             T_ILLEGAL,    "vectormask:",   false, Op_RegVectMask,       relocInfo::none          },  // VectorMask.
  77   { Bad,             T_ILLEGAL,    "vectora:",      false, Op_VecA,              relocInfo::none          },  // VectorA.
  78   { Bad,             T_ILLEGAL,    "vectors:",      false, 0,                    relocInfo::none          },  // VectorS
  79   { Bad,             T_ILLEGAL,    "vectord:",      false, Op_RegL,              relocInfo::none          },  // VectorD
  80   { Bad,             T_ILLEGAL,    "vectorx:",      false, 0,                    relocInfo::none          },  // VectorX
  81   { Bad,             T_ILLEGAL,    "vectory:",      false, 0,                    relocInfo::none          },  // VectorY
  82   { Bad,             T_ILLEGAL,    "vectorz:",      false, 0,                    relocInfo::none          },  // VectorZ
  83 #else // all other
  84   { Bad,             T_ILLEGAL,    "vectormask:",   false, Op_RegVectMask,       relocInfo::none          },  // VectorMask.
  85   { Bad,             T_ILLEGAL,    "vectora:",      false, Op_VecA,              relocInfo::none          },  // VectorA.
  86   { Bad,             T_ILLEGAL,    "vectors:",      false, Op_VecS,              relocInfo::none          },  // VectorS
  87   { Bad,             T_ILLEGAL,    "vectord:",      false, Op_VecD,              relocInfo::none          },  // VectorD
  88   { Bad,             T_ILLEGAL,    "vectorx:",      false, Op_VecX,              relocInfo::none          },  // VectorX
  89   { Bad,             T_ILLEGAL,    "vectory:",      false, Op_VecY,              relocInfo::none          },  // VectorY
  90   { Bad,             T_ILLEGAL,    "vectorz:",      false, Op_VecZ,              relocInfo::none          },  // VectorZ
  91 #endif
  92   { Bad,             T_ADDRESS,    "anyptr:",       false, Op_RegP,              relocInfo::none          },  // AnyPtr
  93   { Bad,             T_ADDRESS,    "rawptr:",       false, Op_RegP,              relocInfo::external_word_type },  // RawPtr
  94   { Bad,             T_OBJECT,     "oop:",          true,  Op_RegP,              relocInfo::oop_type      },  // OopPtr
  95   { Bad,             T_OBJECT,     "inst:",         true,  Op_RegP,              relocInfo::oop_type      },  // InstPtr
  96   { Bad,             T_OBJECT,     "ary:",          true,  Op_RegP,              relocInfo::oop_type      },  // AryPtr
  97   { Bad,             T_METADATA,   "metadata:",     false, Op_RegP,              relocInfo::metadata_type },  // MetadataPtr
  98   { Bad,             T_METADATA,   "klass:",        false, Op_RegP,              relocInfo::metadata_type },  // KlassPtr
  99   { Bad,             T_METADATA,   "instklass:",    false, Op_RegP,              relocInfo::metadata_type },  // InstKlassPtr
 100   { Bad,             T_METADATA,   "aryklass:",     false, Op_RegP,              relocInfo::metadata_type },  // AryKlassPtr
 101   { Bad,             T_OBJECT,     "func",          false, 0,                    relocInfo::none          },  // Function
 102   { Abio,            T_ILLEGAL,    "abIO",          false, 0,                    relocInfo::none          },  // Abio
 103   { Return_Address,  T_ADDRESS,    "return_address",false, Op_RegP,              relocInfo::none          },  // Return_Address
 104   { Memory,          T_ILLEGAL,    "memory",        false, 0,                    relocInfo::none          },  // Memory
 105   { FloatBot,        T_FLOAT,      "float_top",     false, Op_RegF,              relocInfo::none          },  // FloatTop
 106   { FloatCon,        T_FLOAT,      "ftcon:",        false, Op_RegF,              relocInfo::none          },  // FloatCon
 107   { FloatTop,        T_FLOAT,      "float",         false, Op_RegF,              relocInfo::none          },  // FloatBot
 108   { DoubleBot,       T_DOUBLE,     "double_top",    false, Op_RegD,              relocInfo::none          },  // DoubleTop
 109   { DoubleCon,       T_DOUBLE,     "dblcon:",       false, Op_RegD,              relocInfo::none          },  // DoubleCon
 110   { DoubleTop,       T_DOUBLE,     "double",        false, Op_RegD,              relocInfo::none          },  // DoubleBot
 111   { Top,             T_ILLEGAL,    "bottom",        false, 0,                    relocInfo::none          }   // Bottom
 112 };
 113 

4511 
4512 bool TypeInstPtr::maybe_java_subtype_of_helper(const TypeOopPtr* other, bool this_exact, bool other_exact) const {
4513   return TypePtr::maybe_java_subtype_of_helper_for_instance(this, other, this_exact, other_exact);
4514 }
4515 
4516 
4517 //------------------------------dump2------------------------------------------
4518 // Dump oop Type
4519 #ifndef PRODUCT
4520 void TypeInstPtr::dump2(Dict &d, uint depth, outputStream* st) const {
4521   // Print the name of the klass.
4522   klass()->print_name_on(st);
4523   _interfaces->dump(st);
4524 
4525   switch( _ptr ) {
4526   case Constant:
4527     if (WizardMode || Verbose) {
4528       ResourceMark rm;
4529       stringStream ss;
4530 
4531       st->print(" " INTPTR_FORMAT, p2i(const_oop()));
4532       const_oop()->print_oop(&ss);
4533       // 'const_oop->print_oop()' may emit newlines('\n') into ss.
4534       // suppress newlines from it so -XX:+Verbose -XX:+PrintIdeal dumps one-liner for each node.
4535       char* buf = ss.as_string(/* c_heap= */false);
4536       StringUtils::replace_no_expand(buf, "\n", "");
4537       st->print_raw(buf);
4538     }
4539   case BotPTR:
4540     if (!WizardMode && !Verbose) {
4541       if( _klass_is_exact ) st->print(":exact");
4542       break;
4543     }
4544   case TopPTR:
4545   case AnyNull:
4546   case NotNull:
4547     st->print(":%s", ptr_msg[_ptr]);
4548     if( _klass_is_exact ) st->print(":exact");
4549     break;
4550   default:
4551     break;

5132     }
5133   }
5134   return result;
5135 }
5136 
5137 
5138 //------------------------------xdual------------------------------------------
5139 // Dual: compute field-by-field dual
5140 const Type *TypeAryPtr::xdual() const {
5141   return new TypeAryPtr(dual_ptr(), _const_oop, _ary->dual()->is_ary(),_klass, _klass_is_exact, dual_offset(), dual_instance_id(), is_autobox_cache(), dual_speculative(), dual_inline_depth());
5142 }
5143 
5144 //------------------------------dump2------------------------------------------
5145 #ifndef PRODUCT
5146 void TypeAryPtr::dump2( Dict &d, uint depth, outputStream *st ) const {
5147   _ary->dump2(d,depth,st);
5148   _interfaces->dump(st);
5149 
5150   switch( _ptr ) {
5151   case Constant:
5152     st->print(" " INTPTR_FORMAT " ", p2i(const_oop()));
5153     const_oop()->print(st);
5154     break;
5155   case BotPTR:
5156     if (!WizardMode && !Verbose) {
5157       if( _klass_is_exact ) st->print(":exact");
5158       break;
5159     }
5160   case TopPTR:
5161   case AnyNull:
5162   case NotNull:
5163     st->print(":%s", ptr_msg[_ptr]);
5164     if( _klass_is_exact ) st->print(":exact");
5165     break;
5166   default:
5167     break;
5168   }
5169 
5170   if( _offset != 0 ) {
5171     BasicType basic_elem_type = elem()->basic_type();
5172     int header_size = arrayOopDesc::base_offset_in_bytes(basic_elem_type);
< prev index next >