comparison src/share/vm/ci/ciInstanceKlass.hpp @ 2044:06f017f7daa7

Merge.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 07 Jan 2011 18:18:08 +0100
parents 2d26b0046e0d f95d63e2154a
children 46f211fe010c
comparison
equal deleted inserted replaced
1942:00bc9eaf0e24 2044:06f017f7daa7
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_CI_CIINSTANCEKLASS_HPP
26 #define SHARE_VM_CI_CIINSTANCEKLASS_HPP
27
28 #include "ci/ciConstantPoolCache.hpp"
29 #include "ci/ciFlags.hpp"
30 #include "ci/ciInstanceKlassKlass.hpp"
31 #include "ci/ciKlass.hpp"
32 #include "ci/ciSymbol.hpp"
24 33
25 // ciInstanceKlass 34 // ciInstanceKlass
26 // 35 //
27 // This class represents a klassOop in the HotSpot virtual machine 36 // This class represents a klassOop in the HotSpot virtual machine
28 // whose Klass part is an instanceKlass. It may or may not 37 // whose Klass part is an instanceKlass. It may or may not
226 235
227 // What kind of ciObject is this? 236 // What kind of ciObject is this?
228 bool is_instance_klass() { return true; } 237 bool is_instance_klass() { return true; }
229 bool is_java_klass() { return true; } 238 bool is_java_klass() { return true; }
230 }; 239 };
240
241 #endif // SHARE_VM_CI_CIINSTANCEKLASS_HPP