comparison src/share/vm/oops/klassKlass.hpp @ 1161:1fc01a2425ce

Merge
author iveresov
date Tue, 12 Jan 2010 13:54:40 -0800
parents 4e6abf09f540
children c18cbe5936b8
comparison
equal deleted inserted replaced
1149:0579c695832f 1161:1fc01a2425ce
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 };