src/share/vm/oops/klassOop.hpp

Thu, 08 Sep 2011 05:11:31 -0700

author
twisti
date
Thu, 08 Sep 2011 05:11:31 -0700
changeset 3131
b0efc7ee3b31
parent 2658
c7f3d0b4570f
child 3391
069ab3f976d3
permissions
-rw-r--r--

7085860: JSR 292: implement CallSite.setTargetNormal and setTargetVolatile as native methods
Reviewed-by: jrose, never

     1 /*
     2  * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     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  */
    25 #ifndef SHARE_VM_OOPS_KLASSOOP_HPP
    26 #define SHARE_VM_OOPS_KLASSOOP_HPP
    28 #include "oops/oop.hpp"
    30 // A klassOop is the C++ equivalent of a Java class.
    31 // Part of a klassOopDesc is a Klass which handle the
    32 // dispatching for the C++ method calls.
    34 //  klassOop object layout:
    35 //    [header     ]
    36 //    [klass_field]
    37 //    [KLASS      ]
    39 class klassOopDesc : public oopDesc {
    40  public:
    41   // size operation
    42   static int header_size()                       { return sizeof(klassOopDesc)/HeapWordSize; }
    44   // support for code generation
    45   static int klass_part_offset_in_bytes()        { return sizeof(klassOopDesc); }
    47   // returns the Klass part containing dispatching behavior
    48   Klass* klass_part() const                      { return (Klass*)((address)this + klass_part_offset_in_bytes()); }
    50   // Convenience wrapper
    51   inline oop java_mirror() const;
    53  private:
    54   // These have no implementation since klassOop should never be accessed in this fashion
    55   oop obj_field(int offset) const;
    56   volatile oop obj_field_volatile(int offset) const;
    57   void obj_field_put(int offset, oop value);
    58   void obj_field_put_raw(int offset, oop value);
    59   void obj_field_put_volatile(int offset, oop value);
    61   jbyte byte_field(int offset) const;
    62   void byte_field_put(int offset, jbyte contents);
    64   jchar char_field(int offset) const;
    65   void char_field_put(int offset, jchar contents);
    67   jboolean bool_field(int offset) const;
    68   void bool_field_put(int offset, jboolean contents);
    70   jint int_field(int offset) const;
    71   void int_field_put(int offset, jint contents);
    73   jshort short_field(int offset) const;
    74   void short_field_put(int offset, jshort contents);
    76   jlong long_field(int offset) const;
    77   void long_field_put(int offset, jlong contents);
    79   jfloat float_field(int offset) const;
    80   void float_field_put(int offset, jfloat contents);
    82   jdouble double_field(int offset) const;
    83   void double_field_put(int offset, jdouble contents);
    85   address address_field(int offset) const;
    86   void address_field_put(int offset, address contents);
    88   oop obj_field_acquire(int offset) const;
    89   void release_obj_field_put(int offset, oop value);
    91   jbyte byte_field_acquire(int offset) const;
    92   void release_byte_field_put(int offset, jbyte contents);
    94   jchar char_field_acquire(int offset) const;
    95   void release_char_field_put(int offset, jchar contents);
    97   jboolean bool_field_acquire(int offset) const;
    98   void release_bool_field_put(int offset, jboolean contents);
   100   jint int_field_acquire(int offset) const;
   101   void release_int_field_put(int offset, jint contents);
   103   jshort short_field_acquire(int offset) const;
   104   void release_short_field_put(int offset, jshort contents);
   106   jlong long_field_acquire(int offset) const;
   107   void release_long_field_put(int offset, jlong contents);
   109   jfloat float_field_acquire(int offset) const;
   110   void release_float_field_put(int offset, jfloat contents);
   112   jdouble double_field_acquire(int offset) const;
   113   void release_double_field_put(int offset, jdouble contents);
   115   address address_field_acquire(int offset) const;
   116   void release_address_field_put(int offset, address contents);
   117 };
   119 #endif // SHARE_VM_OOPS_KLASSOOP_HPP

mercurial