comparison src/share/vm/oops/compiledICHolderKlass.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
66 66
67 // Iterators 67 // Iterators
68 int oop_oop_iterate(oop obj, OopClosure* blk); 68 int oop_oop_iterate(oop obj, OopClosure* blk);
69 int oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr); 69 int oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr);
70 70
71 #ifndef PRODUCT
72 public: 71 public:
73 // Printing 72 // Printing
73 void oop_print_value_on(oop obj, outputStream* st);
74 #ifndef PRODUCT
74 void oop_print_on (oop obj, outputStream* st); 75 void oop_print_on (oop obj, outputStream* st);
75 void oop_print_value_on(oop obj, outputStream* st); 76 #endif //PRODUCT
76 #endif
77 77
78 public:
79 // Verification 78 // Verification
80 const char* internal_name() const; 79 const char* internal_name() const;
81 void oop_verify_on(oop obj, outputStream* st); 80 void oop_verify_on(oop obj, outputStream* st);
82 81
83 }; 82 };