comparison src/share/vm/ci/ciInstanceKlass.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 3941674cc7fa
children 06f017f7daa7 49036505ab5f
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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
213 222
214 // What kind of ciObject is this? 223 // What kind of ciObject is this?
215 bool is_instance_klass() { return true; } 224 bool is_instance_klass() { return true; }
216 bool is_java_klass() { return true; } 225 bool is_java_klass() { return true; }
217 }; 226 };
227
228 #endif // SHARE_VM_CI_CIINSTANCEKLASS_HPP