< prev index next >

src/hotspot/share/ci/ciBaseObject.hpp

Print this page




  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_CIBASEOBJECT_HPP
  26 #define SHARE_VM_CI_CIBASEOBJECT_HPP
  27 
  28 #include "ci/ciClassList.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "runtime/handles.hpp"
  31 #include "runtime/jniHandles.hpp"
  32 
  33 // ciBaseObject
  34 //
  35 // This class represents an oop in the HotSpot virtual machine.
  36 // Its subclasses are structured in a hierarchy which mirrors
  37 // an aggregate of the VM's oop and klass hierarchies (see
  38 // oopHierarchy.hpp).  Each instance of ciBaseObject holds a handle
  39 // to a corresponding oop on the VM side and provides routines
  40 // for accessing the information in its oop.  By using the ciBaseObject
  41 // hierarchy for accessing oops in the VM, the compiler ensures
  42 // that it is safe with respect to garbage collection; that is,
  43 // GC and compilation can proceed independently without
  44 // interference.
  45 //
  46 // Within the VM, the oop and klass hierarchies are separate.
  47 // The compiler interface does not preserve this separation --
  48 // the distinction between `Klass*' and `Klass' are not
  49 // reflected in the interface and instead the Klass hierarchy
  50 // is directly modeled as the subclasses of ciKlass.




  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_CIBASEOBJECT_HPP
  26 #define SHARE_VM_CI_CIBASEOBJECT_HPP
  27 
  28 #include "ci/ciClassList.hpp"
  29 #include "memory/allocation.hpp"

  30 #include "runtime/jniHandles.hpp"
  31 
  32 // ciBaseObject
  33 //
  34 // This class represents an oop in the HotSpot virtual machine.
  35 // Its subclasses are structured in a hierarchy which mirrors
  36 // an aggregate of the VM's oop and klass hierarchies (see
  37 // oopHierarchy.hpp).  Each instance of ciBaseObject holds a handle
  38 // to a corresponding oop on the VM side and provides routines
  39 // for accessing the information in its oop.  By using the ciBaseObject
  40 // hierarchy for accessing oops in the VM, the compiler ensures
  41 // that it is safe with respect to garbage collection; that is,
  42 // GC and compilation can proceed independently without
  43 // interference.
  44 //
  45 // Within the VM, the oop and klass hierarchies are separate.
  46 // The compiler interface does not preserve this separation --
  47 // the distinction between `Klass*' and `Klass' are not
  48 // reflected in the interface and instead the Klass hierarchy
  49 // is directly modeled as the subclasses of ciKlass.


< prev index next >