diff src/share/vm/ci/ciObject.hpp @ 1406:35069ca331f2

Hooked C1XCompiler class into the system. Two new flags: -XX:+UseC1X makes sure that the C1X compiler is used instead of C1 -XX:TraceC1X=0 sets the trace level for C1X (value between 0=no output and 5=verbose)
author Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
date Tue, 11 May 2010 18:19:17 +0200
parents dd57230ba8fe
children 5571b97fc1ec
line wrap: on
line diff
--- a/src/share/vm/ci/ciObject.hpp	Tue May 11 14:46:49 2010 +0200
+++ b/src/share/vm/ci/ciObject.hpp	Tue May 11 18:19:17 2010 +0200
@@ -62,12 +62,14 @@
   ciObject(Handle h);
   ciObject(ciKlass* klass);
 
+public:
   jobject      handle()  const { return _handle; }
   // Get the VM oop that this object holds.
   oop get_oop() const {
     assert(_handle != NULL, "null oop");
     return JNIHandles::resolve_non_null(_handle);
   }
+protected:
 
   void init_flags_from(oop x) {
     int flags = 0;