hotspot/src/share/vm/classfile/classFileParser.cpp
changeset 17379 fec16b38217a
parent 17024 49cbeca23983
child 17380 6246161bd4b6
equal deleted inserted replaced
17378:7a6820280d12 17379:fec16b38217a
  3044   }
  3044   }
  3045   return annotations;
  3045   return annotations;
  3046 }
  3046 }
  3047 
  3047 
  3048 
  3048 
  3049 #ifndef PRODUCT
  3049 #ifdef ASSERT
  3050 static void parseAndPrintGenericSignatures(
  3050 static void parseAndPrintGenericSignatures(
  3051     instanceKlassHandle this_klass, TRAPS) {
  3051     instanceKlassHandle this_klass, TRAPS) {
  3052   assert(ParseAllGenericSignatures == true, "Shouldn't call otherwise");
  3052   assert(ParseAllGenericSignatures == true, "Shouldn't call otherwise");
  3053   ResourceMark rm;
  3053   ResourceMark rm;
  3054 
  3054 
  3069       tty->print_cr("Parsing %s", sig->as_C_string());
  3069       tty->print_cr("Parsing %s", sig->as_C_string());
  3070       method_spec->print_on(tty);
  3070       method_spec->print_on(tty);
  3071     }
  3071     }
  3072   }
  3072   }
  3073 }
  3073 }
  3074 #endif // ndef PRODUCT
  3074 #endif // def ASSERT
  3075 
  3075 
  3076 
  3076 
  3077 instanceKlassHandle ClassFileParser::parse_super_class(int super_class_index,
  3077 instanceKlassHandle ClassFileParser::parse_super_class(int super_class_index,
  3078                                                        TRAPS) {
  3078                                                        TRAPS) {
  3079   instanceKlassHandle super_klass;
  3079   instanceKlassHandle super_klass;