hotspot/src/share/vm/classfile/verificationType.hpp
changeset 8477 e6f1e62b9e23
parent 8076 96d498ec7ae1
child 8921 14bfe81f2a9d
equal deleted inserted replaced
8476:7e34c2d4cf9b 8477:e6f1e62b9e23
   126 
   126 
   127   VerificationType() { *this = bogus_type(); }
   127   VerificationType() { *this = bogus_type(); }
   128 
   128 
   129   // Create verification types
   129   // Create verification types
   130   static VerificationType bogus_type() { return VerificationType(Bogus); }
   130   static VerificationType bogus_type() { return VerificationType(Bogus); }
       
   131   static VerificationType top_type() { return bogus_type(); } // alias
   131   static VerificationType null_type() { return VerificationType(Null); }
   132   static VerificationType null_type() { return VerificationType(Null); }
   132   static VerificationType integer_type() { return VerificationType(Integer); }
   133   static VerificationType integer_type() { return VerificationType(Integer); }
   133   static VerificationType float_type() { return VerificationType(Float); }
   134   static VerificationType float_type() { return VerificationType(Float); }
   134   static VerificationType long_type() { return VerificationType(Long); }
   135   static VerificationType long_type() { return VerificationType(Long); }
   135   static VerificationType long2_type() { return VerificationType(Long_2nd); }
   136   static VerificationType long2_type() { return VerificationType(Long_2nd); }