src/share/vm/oops/method.cpp

Print this page

        

*** 1384,1396 **** } } //----------------------------------------------------------------------------------- ! // Non-product code ! #ifndef PRODUCT class SignatureTypePrinter : public SignatureTypeNames { private: outputStream* _st; bool _use_separator; --- 1384,1396 ---- } } //----------------------------------------------------------------------------------- ! // Non-product code unless JVM/TI needs it ! #if !defined(PRODUCT) || INCLUDE_JVMTI class SignatureTypePrinter : public SignatureTypeNames { private: outputStream* _st; bool _use_separator;
*** 1421,1432 **** --- 1421,1437 ---- name()->print_symbol_on(st); st->print("("); sig.print_parameters(); st->print(")"); } + #endif // !PRODUCT || INCLUDE_JVMTI + //----------------------------------------------------------------------------------- + // Non-product code + + #ifndef PRODUCT void Method::print_codes_on(outputStream* st) const { print_codes_on(0, code_size(), st); } void Method::print_codes_on(int from, int to, outputStream* st) const {