comparison src/cpu/sparc/vm/interp_masm_sparc.hpp @ 1503:c640000b7cc1

6829193: JSR 292 needs to support SPARC Summary: There are unimplemented portions of the hotspot code for method handles and invokedynamic specific to SPARC. Reviewed-by: kvn, never, jrose
author twisti
date Thu, 29 Apr 2010 06:30:25 -0700
parents 3cf667df43ef
children 2338d41fbd81
comparison
equal deleted inserted replaced
1399:90acda19b80f 1503:c640000b7cc1
189 void get_4_byte_integer_at_bcp( int bcp_offset, 189 void get_4_byte_integer_at_bcp( int bcp_offset,
190 Register Rtmp, 190 Register Rtmp,
191 Register Rdst, 191 Register Rdst,
192 setCCOrNot should_set_CC = dont_set_CC ); 192 setCCOrNot should_set_CC = dont_set_CC );
193 193
194 void get_cache_and_index_at_bcp(Register cache, Register tmp, int bcp_offset); 194 void get_cache_and_index_at_bcp(Register cache, Register tmp, int bcp_offset, bool giant_index = false);
195 void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset); 195 void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, bool giant_index = false);
196 void get_cache_index_at_bcp(Register cache, Register tmp, int bcp_offset, bool giant_index = false);
196 197
197 198
198 // common code 199 // common code
199 200
200 void field_offset_at(int n, Register tmp, Register dest, Register base); 201 void field_offset_at(int n, Register tmp, Register dest, Register base);
302 303
303 void profile_taken_branch(Register scratch, Register bumped_count); 304 void profile_taken_branch(Register scratch, Register bumped_count);
304 void profile_not_taken_branch(Register scratch); 305 void profile_not_taken_branch(Register scratch);
305 void profile_call(Register scratch); 306 void profile_call(Register scratch);
306 void profile_final_call(Register scratch); 307 void profile_final_call(Register scratch);
307 void profile_virtual_call(Register receiver, Register scratch); 308 void profile_virtual_call(Register receiver, Register scratch, bool receiver_can_be_null = false);
308 void profile_ret(TosState state, Register return_bci, Register scratch); 309 void profile_ret(TosState state, Register return_bci, Register scratch);
309 void profile_null_seen(Register scratch); 310 void profile_null_seen(Register scratch);
310 void profile_typecheck(Register klass, Register scratch); 311 void profile_typecheck(Register klass, Register scratch);
311 void profile_typecheck_failed(Register scratch); 312 void profile_typecheck_failed(Register scratch);
312 void profile_switch_default(Register scratch); 313 void profile_switch_default(Register scratch);