< prev index next >

src/hotspot/share/jvmci/jvmciCompilerToVMInit.cpp

Print this page
rev 56521 : 8232050: Improve inlining of Klass accessors
Reviewed-by: TBD


  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 // no precompiled headers
  25 #include "ci/ciUtilities.hpp"
  26 #include "gc/shared/barrierSet.hpp"
  27 #include "gc/shared/cardTable.hpp"
  28 #include "gc/shared/collectedHeap.hpp"
  29 #include "jvmci/jvmciEnv.hpp"
  30 #include "jvmci/jvmciCompilerToVM.hpp"
  31 #include "jvmci/vmStructs_jvmci.hpp"
  32 #include "memory/universe.hpp"
  33 #include "oops/compressedOops.hpp"

  34 #include "runtime/sharedRuntime.hpp"
  35 #include "utilities/resourceHash.hpp"
  36 
  37 
  38 int CompilerToVM::Data::Klass_vtable_start_offset;
  39 int CompilerToVM::Data::Klass_vtable_length_offset;
  40 
  41 int CompilerToVM::Data::Method_extra_stack_entries;
  42 
  43 address CompilerToVM::Data::SharedRuntime_ic_miss_stub;
  44 address CompilerToVM::Data::SharedRuntime_handle_wrong_method_stub;
  45 address CompilerToVM::Data::SharedRuntime_deopt_blob_unpack;
  46 address CompilerToVM::Data::SharedRuntime_deopt_blob_uncommon_trap;
  47 
  48 size_t CompilerToVM::Data::ThreadLocalAllocBuffer_alignment_reserve;
  49 
  50 CollectedHeap* CompilerToVM::Data::Universe_collectedHeap;
  51 int CompilerToVM::Data::Universe_base_vtable_size;
  52 address CompilerToVM::Data::Universe_narrow_oop_base;
  53 int CompilerToVM::Data::Universe_narrow_oop_shift;




  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 // no precompiled headers
  25 #include "ci/ciUtilities.hpp"
  26 #include "gc/shared/barrierSet.hpp"
  27 #include "gc/shared/cardTable.hpp"
  28 #include "gc/shared/collectedHeap.hpp"
  29 #include "jvmci/jvmciEnv.hpp"
  30 #include "jvmci/jvmciCompilerToVM.hpp"
  31 #include "jvmci/vmStructs_jvmci.hpp"
  32 #include "memory/universe.hpp"
  33 #include "oops/compressedOops.hpp"
  34 #include "oops/klass.inline.hpp"
  35 #include "runtime/sharedRuntime.hpp"
  36 #include "utilities/resourceHash.hpp"
  37 
  38 
  39 int CompilerToVM::Data::Klass_vtable_start_offset;
  40 int CompilerToVM::Data::Klass_vtable_length_offset;
  41 
  42 int CompilerToVM::Data::Method_extra_stack_entries;
  43 
  44 address CompilerToVM::Data::SharedRuntime_ic_miss_stub;
  45 address CompilerToVM::Data::SharedRuntime_handle_wrong_method_stub;
  46 address CompilerToVM::Data::SharedRuntime_deopt_blob_unpack;
  47 address CompilerToVM::Data::SharedRuntime_deopt_blob_uncommon_trap;
  48 
  49 size_t CompilerToVM::Data::ThreadLocalAllocBuffer_alignment_reserve;
  50 
  51 CollectedHeap* CompilerToVM::Data::Universe_collectedHeap;
  52 int CompilerToVM::Data::Universe_base_vtable_size;
  53 address CompilerToVM::Data::Universe_narrow_oop_base;
  54 int CompilerToVM::Data::Universe_narrow_oop_shift;


< prev index next >