comparison src/share/vm/oops/klassKlass.hpp @ 1155:4e6abf09f540

6912062: disassembler plugin needs to produce symbolic information in product mode Summary: More informative disassembly in product mode. Also, a more consistent CompileCommand syntax. Reviewed-by: never
author jrose
date Fri, 08 Jan 2010 13:47:01 -0800
parents a61af66fc99e
children c18cbe5936b8
comparison
equal deleted inserted replaced
1153:bea7a22a6f79 1155:4e6abf09f540
65 65
66 // Allocation profiling support 66 // Allocation profiling support
67 juint alloc_size() const { return _alloc_size; } 67 juint alloc_size() const { return _alloc_size; }
68 void set_alloc_size(juint n) { _alloc_size = n; } 68 void set_alloc_size(juint n) { _alloc_size = n; }
69 69
70 #ifndef PRODUCT
71 public: 70 public:
72 // Printing 71 // Printing
72 void oop_print_value_on(oop obj, outputStream* st);
73 #ifndef PRODUCT
73 void oop_print_on (oop obj, outputStream* st); 74 void oop_print_on (oop obj, outputStream* st);
74 void oop_print_value_on(oop obj, outputStream* st); 75 #endif //PRODUCT
75 #endif
76 76
77 public:
78 // Verification 77 // Verification
79 const char* internal_name() const; 78 const char* internal_name() const;
80 void oop_verify_on(oop obj, outputStream* st); 79 void oop_verify_on(oop obj, outputStream* st);
81 }; 80 };