< prev index next >

src/share/vm/ci/ciKlass.hpp

Print this page
rev 7855 : 8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  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
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_CI_CIKLASS_HPP
  26 #define SHARE_VM_CI_CIKLASS_HPP
  27 
  28 #include "ci/ciType.hpp"

  29 
  30 // ciKlass
  31 //
  32 // This class and its subclasses represent Klass*s in the
  33 // HotSpot virtual machine.  In the vm, each Klass* contains an
  34 // embedded Klass object.  ciKlass is subclassed to explicitly
  35 // represent the kind of Klass embedded in the Klass*.  For
  36 // example, a Klass* with an embedded ObjArrayKlass object is
  37 // represented in the ciObject hierarchy by the class
  38 // ciObjArrayKlass.
  39 class ciKlass : public ciType {
  40   CI_PACKAGE_ACCESS
  41   friend class ciEnv;
  42   friend class ciField;
  43   friend class ciMethod;
  44   friend class ciMethodData;
  45   friend class ciObjArrayKlass;
  46   friend class ciReceiverTypeData;
  47 
  48 private:




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  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
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_CI_CIKLASS_HPP
  26 #define SHARE_VM_CI_CIKLASS_HPP
  27 
  28 #include "ci/ciType.hpp"
  29 #include "oops/klass.hpp"
  30 
  31 // ciKlass
  32 //
  33 // This class and its subclasses represent Klass*s in the
  34 // HotSpot virtual machine.  In the vm, each Klass* contains an
  35 // embedded Klass object.  ciKlass is subclassed to explicitly
  36 // represent the kind of Klass embedded in the Klass*.  For
  37 // example, a Klass* with an embedded ObjArrayKlass object is
  38 // represented in the ciObject hierarchy by the class
  39 // ciObjArrayKlass.
  40 class ciKlass : public ciType {
  41   CI_PACKAGE_ACCESS
  42   friend class ciEnv;
  43   friend class ciField;
  44   friend class ciMethod;
  45   friend class ciMethodData;
  46   friend class ciObjArrayKlass;
  47   friend class ciReceiverTypeData;
  48 
  49 private:


< prev index next >