Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/c1/c1_Runtime1.hpp
32285 views
/*1* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_C1_C1_RUNTIME1_HPP25#define SHARE_VM_C1_C1_RUNTIME1_HPP2627#include "c1/c1_FrameMap.hpp"28#include "code/stubs.hpp"29#include "interpreter/interpreter.hpp"30#include "memory/allocation.hpp"31#include "runtime/deoptimization.hpp"3233class StubAssembler;3435// The Runtime1 holds all assembly stubs and VM36// runtime routines needed by code code generated37// by the Compiler1.3839#define RUNTIME1_STUBS(stub, last_entry) \40stub(dtrace_object_alloc) \41stub(unwind_exception) \42stub(forward_exception) \43stub(throw_range_check_failed) /* throws ArrayIndexOutOfBoundsException */ \44stub(throw_index_exception) /* throws IndexOutOfBoundsException */ \45stub(throw_div0_exception) \46stub(throw_null_pointer_exception) \47stub(register_finalizer) \48stub(new_instance) \49stub(fast_new_instance) \50stub(fast_new_instance_init_check) \51stub(new_type_array) \52stub(new_object_array) \53stub(new_multi_array) \54stub(handle_exception_nofpu) /* optimized version that does not preserve fpu registers */ \55stub(handle_exception) \56stub(handle_exception_from_callee) \57stub(throw_array_store_exception) \58stub(throw_class_cast_exception) \59stub(throw_incompatible_class_change_error) \60stub(slow_subtype_check) \61stub(monitorenter) \62stub(monitorenter_nofpu) /* optimized version that does not preserve fpu registers */ \63stub(monitorexit) \64stub(monitorexit_nofpu) /* optimized version that does not preserve fpu registers */ \65stub(deoptimize) \66stub(access_field_patching) \67stub(load_klass_patching) \68stub(load_mirror_patching) \69stub(load_appendix_patching) \70stub(g1_pre_barrier_slow) \71stub(g1_post_barrier_slow) \72stub(shenandoah_lrb_slow) \73stub(fpu2long_stub) \74stub(counter_overflow) \75stub(predicate_failed_trap) \76last_entry(number_of_ids)7778#define DECLARE_STUB_ID(x) x ## _id ,79#define DECLARE_LAST_STUB_ID(x) x80#define STUB_NAME(x) #x " Runtime1 stub",81#define LAST_STUB_NAME(x) #x " Runtime1 stub"8283class Runtime1: public AllStatic {84friend class VMStructs;85friend class ArrayCopyStub;8687public:88enum StubID {89RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID)90};9192// statistics93#ifndef PRODUCT94static int _resolve_invoke_cnt;95static int _handle_wrong_method_cnt;96static int _ic_miss_cnt;97static int _generic_arraycopy_cnt;98static int _primitive_arraycopy_cnt;99static int _oop_arraycopy_cnt;100static int _generic_arraycopystub_cnt;101static int _arraycopy_slowcase_cnt;102static int _arraycopy_checkcast_cnt;103static int _arraycopy_checkcast_attempt_cnt;104static int _new_type_array_slowcase_cnt;105static int _new_object_array_slowcase_cnt;106static int _new_instance_slowcase_cnt;107static int _new_multi_array_slowcase_cnt;108static int _monitorenter_slowcase_cnt;109static int _monitorexit_slowcase_cnt;110static int _patch_code_slowcase_cnt;111static int _throw_range_check_exception_count;112static int _throw_index_exception_count;113static int _throw_div0_exception_count;114static int _throw_null_pointer_exception_count;115static int _throw_class_cast_exception_count;116static int _throw_incompatible_class_change_error_count;117static int _throw_array_store_exception_count;118static int _throw_count;119#endif120121private:122static CodeBlob* _blobs[number_of_ids];123static const char* _blob_names[];124125// stub generation126static void generate_blob_for(BufferBlob* blob, StubID id);127static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm);128static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument);129static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm);130static void generate_unwind_exception(StubAssembler *sasm);131static OopMapSet* generate_patching(StubAssembler* sasm, address target);132133static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry,134Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);135136// runtime entry points137static void new_instance (JavaThread* thread, Klass* klass);138static void new_type_array (JavaThread* thread, Klass* klass, jint length);139static void new_object_array(JavaThread* thread, Klass* klass, jint length);140static void new_multi_array (JavaThread* thread, Klass* klass, int rank, jint* dims);141142static address counter_overflow(JavaThread* thread, int bci, Method* method);143144static void unimplemented_entry (JavaThread* thread, StubID id);145146static address exception_handler_for_pc(JavaThread* thread);147148static void throw_range_check_exception(JavaThread* thread, int index);149static void throw_index_exception(JavaThread* thread, int index);150static void throw_div0_exception(JavaThread* thread);151static void throw_null_pointer_exception(JavaThread* thread);152static void throw_class_cast_exception(JavaThread* thread, oopDesc* object);153static void throw_incompatible_class_change_error(JavaThread* thread);154static void throw_array_store_exception(JavaThread* thread, oopDesc* object);155156static void monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock);157static void monitorexit (JavaThread* thread, BasicObjectLock* lock);158159static void deoptimize(JavaThread* thread);160161static int access_field_patching(JavaThread* thread);162static int move_klass_patching(JavaThread* thread);163static int move_mirror_patching(JavaThread* thread);164static int move_appendix_patching(JavaThread* thread);165166static void patch_code(JavaThread* thread, StubID stub_id);167#ifdef TARGET_ARCH_aarch64168static void patch_code_aarch64(JavaThread* thread, StubID stub_id);169#endif170171public:172// initialization173static void initialize(BufferBlob* blob);174static void initialize_pd();175176// stubs177static CodeBlob* blob_for (StubID id);178static address entry_for(StubID id) { return blob_for(id)->code_begin(); }179static const char* name_for (StubID id);180static const char* name_for_address(address entry);181182// platform might add runtime names.183static const char* pd_name_for_address(address entry);184185// method tracing186static void trace_block_entry(jint block_id);187188#ifndef PRODUCT189static address throw_count_address() { return (address)&_throw_count; }190static address arraycopy_count_address(BasicType type);191#endif192193// directly accessible leaf routine194static int arraycopy(oopDesc* src, int src_pos, oopDesc* dst, int dst_pos, int length);195static void primitive_arraycopy(HeapWord* src, HeapWord* dst, int length);196static void oop_arraycopy(HeapWord* src, HeapWord* dst, int length);197static int is_instance_of(oopDesc* mirror, oopDesc* obj);198199static void predicate_failed_trap(JavaThread* thread);200201static void print_statistics() PRODUCT_RETURN;202};203204#endif // SHARE_VM_C1_C1_RUNTIME1_HPP205206207