< prev index next >

src/hotspot/share/c1/c1_Runtime1.hpp

Print this page

 34 class StubAssembler;
 35 
 36 // The Runtime1 holds all assembly stubs and VM
 37 // runtime routines needed by code code generated
 38 // by the Compiler1.
 39 
 40 #define RUNTIME1_STUBS(stub, last_entry) \
 41   stub(dtrace_object_alloc)          \
 42   stub(unwind_exception)             \
 43   stub(forward_exception)            \
 44   stub(throw_range_check_failed)       /* throws ArrayIndexOutOfBoundsException */ \
 45   stub(throw_index_exception)          /* throws IndexOutOfBoundsException */ \
 46   stub(throw_div0_exception)         \
 47   stub(throw_null_pointer_exception) \
 48   stub(register_finalizer)           \
 49   stub(new_instance)                 \
 50   stub(fast_new_instance)            \
 51   stub(fast_new_instance_init_check) \
 52   stub(new_type_array)               \
 53   stub(new_object_array)             \

 54   stub(new_multi_array)              \





 55   stub(handle_exception_nofpu)         /* optimized version that does not preserve fpu registers */ \
 56   stub(handle_exception)             \
 57   stub(handle_exception_from_callee) \
 58   stub(throw_array_store_exception)  \
 59   stub(throw_class_cast_exception)   \
 60   stub(throw_incompatible_class_change_error)   \

 61   stub(slow_subtype_check)           \
 62   stub(monitorenter)                 \
 63   stub(monitorenter_nofpu)             /* optimized version that does not preserve fpu registers */ \
 64   stub(monitorexit)                  \
 65   stub(monitorexit_nofpu)              /* optimized version that does not preserve fpu registers */ \
 66   stub(deoptimize)                   \
 67   stub(access_field_patching)        \
 68   stub(load_klass_patching)          \
 69   stub(load_mirror_patching)         \
 70   stub(load_appendix_patching)       \
 71   stub(fpu2long_stub)                \
 72   stub(counter_overflow)             \
 73   stub(predicate_failed_trap)        \
 74   last_entry(number_of_ids)
 75 
 76 #define DECLARE_STUB_ID(x)       x ## _id ,
 77 #define DECLARE_LAST_STUB_ID(x)  x
 78 #define STUB_NAME(x)             #x " Runtime1 stub",
 79 #define LAST_STUB_NAME(x)        #x " Runtime1 stub"
 80 

 83   virtual OopMapSet* generate_code(StubAssembler* sasm) = 0;
 84 };
 85 
 86 class Runtime1: public AllStatic {
 87   friend class VMStructs;
 88   friend class ArrayCopyStub;
 89 
 90  public:
 91   enum StubID {
 92     RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID)
 93   };
 94 
 95   // statistics
 96 #ifndef PRODUCT
 97   static uint _generic_arraycopystub_cnt;
 98   static uint _arraycopy_slowcase_cnt;
 99   static uint _arraycopy_checkcast_cnt;
100   static uint _arraycopy_checkcast_attempt_cnt;
101   static uint _new_type_array_slowcase_cnt;
102   static uint _new_object_array_slowcase_cnt;

103   static uint _new_instance_slowcase_cnt;
104   static uint _new_multi_array_slowcase_cnt;





105   static uint _monitorenter_slowcase_cnt;
106   static uint _monitorexit_slowcase_cnt;
107   static uint _patch_code_slowcase_cnt;
108   static uint _throw_range_check_exception_count;
109   static uint _throw_index_exception_count;
110   static uint _throw_div0_exception_count;
111   static uint _throw_null_pointer_exception_count;
112   static uint _throw_class_cast_exception_count;
113   static uint _throw_incompatible_class_change_error_count;

114   static uint _throw_count;
115 #endif
116 
117  private:
118   static CodeBlob* _blobs[number_of_ids];
119   static const char* _blob_names[];

120 
121   // stub generation
122  public:
123   static CodeBlob*  generate_blob(BufferBlob* buffer_blob, int stub_id, const char* name, bool expect_oop_map, StubAssemblerCodeGenClosure *cl);
124   static void       generate_blob_for(BufferBlob* blob, StubID id);
125   static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm);
126  private:
127   static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument);
128   static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm);
129   static void       generate_unwind_exception(StubAssembler *sasm);
130   static OopMapSet* generate_patching(StubAssembler* sasm, address target);
131 
132   static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry,
133                                        Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);
134 
135   // runtime entry points
136   static void new_instance    (JavaThread* current, Klass* klass);

137   static void new_type_array  (JavaThread* current, Klass* klass, jint length);
138   static void new_object_array(JavaThread* current, Klass* klass, jint length);

139   static void new_multi_array (JavaThread* current, Klass* klass, int rank, jint* dims);





140 
141   static address counter_overflow(JavaThread* current, int bci, Method* method);
142 
143   static void unimplemented_entry(JavaThread* current, StubID id);
144 
145   static address exception_handler_for_pc(JavaThread* current);
146 
147   static void throw_range_check_exception(JavaThread* current, int index, arrayOopDesc* a);
148   static void throw_index_exception(JavaThread* current, int index);
149   static void throw_div0_exception(JavaThread* current);
150   static void throw_null_pointer_exception(JavaThread* current);
151   static void throw_class_cast_exception(JavaThread* current, oopDesc* object);
152   static void throw_incompatible_class_change_error(JavaThread* current);

153   static void throw_array_store_exception(JavaThread* current, oopDesc* object);
154 
155   static void monitorenter(JavaThread* current, oopDesc* obj, BasicObjectLock* lock);
156   static void monitorexit (JavaThread* current, BasicObjectLock* lock);
157 
158   static void deoptimize(JavaThread* current, jint trap_request);
159 
160   static int access_field_patching(JavaThread* current);
161   static int move_klass_patching(JavaThread* current);
162   static int move_mirror_patching(JavaThread* current);
163   static int move_appendix_patching(JavaThread* current);
164 
165   static void patch_code(JavaThread* current, StubID stub_id);
166 
167  public:
168   // initialization
169   static void initialize(BufferBlob* blob);
170   static void initialize_pd();
171 
172   // stubs

 34 class StubAssembler;
 35 
 36 // The Runtime1 holds all assembly stubs and VM
 37 // runtime routines needed by code code generated
 38 // by the Compiler1.
 39 
 40 #define RUNTIME1_STUBS(stub, last_entry) \
 41   stub(dtrace_object_alloc)          \
 42   stub(unwind_exception)             \
 43   stub(forward_exception)            \
 44   stub(throw_range_check_failed)       /* throws ArrayIndexOutOfBoundsException */ \
 45   stub(throw_index_exception)          /* throws IndexOutOfBoundsException */ \
 46   stub(throw_div0_exception)         \
 47   stub(throw_null_pointer_exception) \
 48   stub(register_finalizer)           \
 49   stub(new_instance)                 \
 50   stub(fast_new_instance)            \
 51   stub(fast_new_instance_init_check) \
 52   stub(new_type_array)               \
 53   stub(new_object_array)             \
 54   stub(new_flat_array)               \
 55   stub(new_multi_array)              \
 56   stub(load_flat_array)              \
 57   stub(store_flat_array)             \
 58   stub(substitutability_check)       \
 59   stub(buffer_inline_args)           \
 60   stub(buffer_inline_args_no_receiver)\
 61   stub(handle_exception_nofpu)         /* optimized version that does not preserve fpu registers */ \
 62   stub(handle_exception)             \
 63   stub(handle_exception_from_callee) \
 64   stub(throw_array_store_exception)  \
 65   stub(throw_class_cast_exception)   \
 66   stub(throw_incompatible_class_change_error)   \
 67   stub(throw_illegal_monitor_state_exception)   \
 68   stub(slow_subtype_check)           \
 69   stub(monitorenter)                 \
 70   stub(monitorenter_nofpu)             /* optimized version that does not preserve fpu registers */ \
 71   stub(monitorexit)                  \
 72   stub(monitorexit_nofpu)              /* optimized version that does not preserve fpu registers */ \
 73   stub(deoptimize)                   \
 74   stub(access_field_patching)        \
 75   stub(load_klass_patching)          \
 76   stub(load_mirror_patching)         \
 77   stub(load_appendix_patching)       \
 78   stub(fpu2long_stub)                \
 79   stub(counter_overflow)             \
 80   stub(predicate_failed_trap)        \
 81   last_entry(number_of_ids)
 82 
 83 #define DECLARE_STUB_ID(x)       x ## _id ,
 84 #define DECLARE_LAST_STUB_ID(x)  x
 85 #define STUB_NAME(x)             #x " Runtime1 stub",
 86 #define LAST_STUB_NAME(x)        #x " Runtime1 stub"
 87 

 90   virtual OopMapSet* generate_code(StubAssembler* sasm) = 0;
 91 };
 92 
 93 class Runtime1: public AllStatic {
 94   friend class VMStructs;
 95   friend class ArrayCopyStub;
 96 
 97  public:
 98   enum StubID {
 99     RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID)
100   };
101 
102   // statistics
103 #ifndef PRODUCT
104   static uint _generic_arraycopystub_cnt;
105   static uint _arraycopy_slowcase_cnt;
106   static uint _arraycopy_checkcast_cnt;
107   static uint _arraycopy_checkcast_attempt_cnt;
108   static uint _new_type_array_slowcase_cnt;
109   static uint _new_object_array_slowcase_cnt;
110   static uint _new_flat_array_slowcase_cnt;
111   static uint _new_instance_slowcase_cnt;
112   static uint _new_multi_array_slowcase_cnt;
113   static uint _load_flat_array_slowcase_cnt;
114   static uint _store_flat_array_slowcase_cnt;
115   static uint _substitutability_check_slowcase_cnt;
116   static uint _buffer_inline_args_slowcase_cnt;
117   static uint _buffer_inline_args_no_receiver_slowcase_cnt;
118   static uint _monitorenter_slowcase_cnt;
119   static uint _monitorexit_slowcase_cnt;
120   static uint _patch_code_slowcase_cnt;
121   static uint _throw_range_check_exception_count;
122   static uint _throw_index_exception_count;
123   static uint _throw_div0_exception_count;
124   static uint _throw_null_pointer_exception_count;
125   static uint _throw_class_cast_exception_count;
126   static uint _throw_incompatible_class_change_error_count;
127   static uint _throw_illegal_monitor_state_exception_count;
128   static uint _throw_count;
129 #endif
130 
131  private:
132   static CodeBlob* _blobs[number_of_ids];
133   static const char* _blob_names[];
134   static void buffer_inline_args_impl(JavaThread* current, Method* m, bool allocate_receiver);
135 
136   // stub generation
137  public:
138   static CodeBlob*  generate_blob(BufferBlob* buffer_blob, int stub_id, const char* name, bool expect_oop_map, StubAssemblerCodeGenClosure *cl);
139   static void       generate_blob_for(BufferBlob* blob, StubID id);
140   static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm);
141  private:
142   static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument);
143   static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm);
144   static void       generate_unwind_exception(StubAssembler *sasm);
145   static OopMapSet* generate_patching(StubAssembler* sasm, address target);
146 
147   static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry,
148                                        Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);
149 
150   // runtime entry points
151   static void new_instance    (JavaThread* current, Klass* klass);
152   static void new_instance_no_inline(JavaThread* current, Klass* klass);
153   static void new_type_array  (JavaThread* current, Klass* klass, jint length);
154   static void new_object_array(JavaThread* current, Klass* klass, jint length);
155   static void new_flat_array (JavaThread* current, Klass* klass, jint length);
156   static void new_multi_array (JavaThread* current, Klass* klass, int rank, jint* dims);
157   static void load_flat_array(JavaThread* current, flatArrayOopDesc* array, int index);
158   static void store_flat_array(JavaThread* current, flatArrayOopDesc* array, int index, oopDesc* value);
159   static int  substitutability_check(JavaThread* current, oopDesc* left, oopDesc* right);
160   static void buffer_inline_args(JavaThread* current, Method* method);
161   static void buffer_inline_args_no_receiver(JavaThread* current, Method* method);
162 
163   static address counter_overflow(JavaThread* current, int bci, Method* method);
164 
165   static void unimplemented_entry(JavaThread* current, StubID id);
166 
167   static address exception_handler_for_pc(JavaThread* current);
168 
169   static void throw_range_check_exception(JavaThread* current, int index, arrayOopDesc* a);
170   static void throw_index_exception(JavaThread* current, int index);
171   static void throw_div0_exception(JavaThread* current);
172   static void throw_null_pointer_exception(JavaThread* current);
173   static void throw_class_cast_exception(JavaThread* current, oopDesc* object);
174   static void throw_incompatible_class_change_error(JavaThread* current);
175   static void throw_illegal_monitor_state_exception(JavaThread* current);
176   static void throw_array_store_exception(JavaThread* current, oopDesc* object);
177 
178   static void monitorenter(JavaThread* current, oopDesc* obj, BasicObjectLock* lock);
179   static void monitorexit (JavaThread* current, BasicObjectLock* lock);
180 
181   static void deoptimize(JavaThread* current, jint trap_request);
182 
183   static int access_field_patching(JavaThread* current);
184   static int move_klass_patching(JavaThread* current);
185   static int move_mirror_patching(JavaThread* current);
186   static int move_appendix_patching(JavaThread* current);
187 
188   static void patch_code(JavaThread* current, StubID stub_id);
189 
190  public:
191   // initialization
192   static void initialize(BufferBlob* blob);
193   static void initialize_pd();
194 
195   // stubs
< prev index next >