comparison src/share/vm/ci/ciField.hpp @ 1459:a8f9f091c219

Don't mess with VMToNative transitions..
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Sat, 13 Nov 2010 18:28:48 +0100
parents dd57230ba8fe
children 2d26b0046e0d
comparison
equal deleted inserted replaced
1454:7cf1952ec5fb 1459:a8f9f091c219
158 // Usage note: if the same field is accessed multiple times 158 // Usage note: if the same field is accessed multiple times
159 // in the same compilation, will_link will need to be checked 159 // in the same compilation, will_link will need to be checked
160 // at each point of access. 160 // at each point of access.
161 bool will_link(ciInstanceKlass* accessing_klass, 161 bool will_link(ciInstanceKlass* accessing_klass,
162 Bytecodes::Code bc); 162 Bytecodes::Code bc);
163 bool will_link_from_vm(ciInstanceKlass* accessing_klass,
164 Bytecodes::Code bc);
163 165
164 // Java access flags 166 // Java access flags
165 bool is_public () { return flags().is_public(); } 167 bool is_public () { return flags().is_public(); }
166 bool is_private () { return flags().is_private(); } 168 bool is_private () { return flags().is_private(); }
167 bool is_protected () { return flags().is_protected(); } 169 bool is_protected () { return flags().is_protected(); }