comparison src/cpu/sparc/vm/c1_LIRAssembler_sparc.cpp @ 12875:d13d7aba8c12

8023657: New type profiling points: arguments to call Summary: x86 interpreter and c1 type profiling for arguments at calls Reviewed-by: kvn, twisti
author roland
date Wed, 09 Oct 2013 16:32:21 +0200
parents 7944aba7ba41
children 252d541466ea
comparison
equal deleted inserted replaced
12874:46ef27bcacb3 12875:d13d7aba8c12
3098 __ add(tmp1, DataLayout::counter_increment, tmp1); 3098 __ add(tmp1, DataLayout::counter_increment, tmp1);
3099 __ st_ptr(tmp1, counter_addr); 3099 __ st_ptr(tmp1, counter_addr);
3100 } 3100 }
3101 } 3101 }
3102 3102
3103 void LIR_Assembler::emit_profile_type(LIR_OpProfileType* op) {
3104 fatal("Type profiling not implemented on this platform");
3105 }
3106
3103 void LIR_Assembler::align_backward_branch_target() { 3107 void LIR_Assembler::align_backward_branch_target() {
3104 __ align(OptoLoopAlignment); 3108 __ align(OptoLoopAlignment);
3105 } 3109 }
3106 3110
3107 3111