comparison src/share/vm/oops/klassOop.hpp @ 4137:04b9a2566eec

Merge with hsx23/hotspot.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 17 Dec 2011 21:40:27 +0100
parents b0efc7ee3b31
children 069ab3f976d3
comparison
equal deleted inserted replaced
3737:9dc19b7d89a3 4137:04b9a2566eec
51 inline oop java_mirror() const; 51 inline oop java_mirror() const;
52 52
53 private: 53 private:
54 // These have no implementation since klassOop should never be accessed in this fashion 54 // These have no implementation since klassOop should never be accessed in this fashion
55 oop obj_field(int offset) const; 55 oop obj_field(int offset) const;
56 volatile oop obj_field_volatile(int offset) const;
56 void obj_field_put(int offset, oop value); 57 void obj_field_put(int offset, oop value);
57 void obj_field_raw_put(int offset, oop value); 58 void obj_field_put_raw(int offset, oop value);
59 void obj_field_put_volatile(int offset, oop value);
58 60
59 jbyte byte_field(int offset) const; 61 jbyte byte_field(int offset) const;
60 void byte_field_put(int offset, jbyte contents); 62 void byte_field_put(int offset, jbyte contents);
61 63
62 jchar char_field(int offset) const; 64 jchar char_field(int offset) const;