145 static const char* name_for_address(address entry);
146
147 // platform might add runtime names.
148 static const char* pd_name_for_address(address entry);
149
150 // method tracing
151 static void trace_block_entry(jint block_id);
152
153 #ifndef PRODUCT
154 static address throw_count_address() { return (address)&_throw_count; }
155 static address arraycopy_count_address(BasicType type);
156 #endif
157
158 // directly accessible leaf routine
159 static int is_instance_of(oopDesc* mirror, oopDesc* obj);
160
161 static void predicate_failed_trap(JavaThread* current);
162
163 static void check_abort_on_vm_exception(oopDesc* ex);
164
165 static void print_statistics() PRODUCT_RETURN;
166 };
167
168 #endif // SHARE_C1_C1_RUNTIME1_HPP
|
145 static const char* name_for_address(address entry);
146
147 // platform might add runtime names.
148 static const char* pd_name_for_address(address entry);
149
150 // method tracing
151 static void trace_block_entry(jint block_id);
152
153 #ifndef PRODUCT
154 static address throw_count_address() { return (address)&_throw_count; }
155 static address arraycopy_count_address(BasicType type);
156 #endif
157
158 // directly accessible leaf routine
159 static int is_instance_of(oopDesc* mirror, oopDesc* obj);
160
161 static void predicate_failed_trap(JavaThread* current);
162
163 static void check_abort_on_vm_exception(oopDesc* ex);
164
165 static void print_statistics_on(outputStream* st) PRODUCT_RETURN;
166
167 static void init_counters();
168 static void print_counters_on(outputStream* st);
169 };
170
171 #endif // SHARE_C1_C1_RUNTIME1_HPP
|