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