Path: blob/master/src/hotspot/share/c1/c1_Runtime1.hpp
40930 views
/*1* Copyright (c) 1999, 2019, 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_C1_C1_RUNTIME1_HPP25#define SHARE_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(fpu2long_stub) \71stub(counter_overflow) \72stub(predicate_failed_trap) \73last_entry(number_of_ids)7475#define DECLARE_STUB_ID(x) x ## _id ,76#define DECLARE_LAST_STUB_ID(x) x77#define STUB_NAME(x) #x " Runtime1 stub",78#define LAST_STUB_NAME(x) #x " Runtime1 stub"7980class StubAssemblerCodeGenClosure: public Closure {81public:82virtual OopMapSet* generate_code(StubAssembler* sasm) = 0;83};8485class Runtime1: public AllStatic {86friend class VMStructs;87friend class ArrayCopyStub;8889public:90enum StubID {91RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID)92};9394// statistics95#ifndef PRODUCT96static int _generic_arraycopystub_cnt;97static int _arraycopy_slowcase_cnt;98static int _arraycopy_checkcast_cnt;99static int _arraycopy_checkcast_attempt_cnt;100static int _new_type_array_slowcase_cnt;101static int _new_object_array_slowcase_cnt;102static int _new_instance_slowcase_cnt;103static int _new_multi_array_slowcase_cnt;104static int _monitorenter_slowcase_cnt;105static int _monitorexit_slowcase_cnt;106static int _patch_code_slowcase_cnt;107static int _throw_range_check_exception_count;108static int _throw_index_exception_count;109static int _throw_div0_exception_count;110static int _throw_null_pointer_exception_count;111static int _throw_class_cast_exception_count;112static int _throw_incompatible_class_change_error_count;113static int _throw_count;114#endif115116private:117static CodeBlob* _blobs[number_of_ids];118static const char* _blob_names[];119120// stub generation121public:122static CodeBlob* generate_blob(BufferBlob* buffer_blob, int stub_id, const char* name, bool expect_oop_map, StubAssemblerCodeGenClosure *cl);123static void generate_blob_for(BufferBlob* blob, StubID id);124static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm);125private:126static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument);127static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm);128static void generate_unwind_exception(StubAssembler *sasm);129static OopMapSet* generate_patching(StubAssembler* sasm, address target);130131static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry,132Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);133134// runtime entry points135static void new_instance (JavaThread* current, Klass* klass);136static void new_type_array (JavaThread* current, Klass* klass, jint length);137static void new_object_array(JavaThread* current, Klass* klass, jint length);138static void new_multi_array (JavaThread* current, Klass* klass, int rank, jint* dims);139140static address counter_overflow(JavaThread* current, int bci, Method* method);141142static void unimplemented_entry(JavaThread* current, StubID id);143144static address exception_handler_for_pc(JavaThread* current);145146static void throw_range_check_exception(JavaThread* current, int index, arrayOopDesc* a);147static void throw_index_exception(JavaThread* current, int index);148static void throw_div0_exception(JavaThread* current);149static void throw_null_pointer_exception(JavaThread* current);150static void throw_class_cast_exception(JavaThread* current, oopDesc* object);151static void throw_incompatible_class_change_error(JavaThread* current);152static void throw_array_store_exception(JavaThread* current, oopDesc* object);153154static void monitorenter(JavaThread* current, oopDesc* obj, BasicObjectLock* lock);155static void monitorexit (JavaThread* current, BasicObjectLock* lock);156157static void deoptimize(JavaThread* current, jint trap_request);158159static int access_field_patching(JavaThread* current);160static int move_klass_patching(JavaThread* current);161static int move_mirror_patching(JavaThread* current);162static int move_appendix_patching(JavaThread* current);163164static void patch_code(JavaThread* current, StubID stub_id);165166public:167// initialization168static void initialize(BufferBlob* blob);169static void initialize_pd();170171// stubs172static CodeBlob* blob_for (StubID id);173static address entry_for(StubID id) { return blob_for(id)->code_begin(); }174static const char* name_for (StubID id);175static const char* name_for_address(address entry);176177// platform might add runtime names.178static const char* pd_name_for_address(address entry);179180// method tracing181static void trace_block_entry(jint block_id);182183#ifndef PRODUCT184static address throw_count_address() { return (address)&_throw_count; }185static address arraycopy_count_address(BasicType type);186#endif187188// directly accessible leaf routine189static int is_instance_of(oopDesc* mirror, oopDesc* obj);190191static void predicate_failed_trap(JavaThread* current);192193static void print_statistics() PRODUCT_RETURN;194};195196#endif // SHARE_C1_C1_RUNTIME1_HPP197198199