hotspot/src/share/vm/ci/ciInstanceKlass.hpp
changeset 7397 5b173b4ca846
parent 5925 a30fef61d0b7
child 12369 48fd3da4025c
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    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