comparison src/share/vm/c1/c1_LIR.cpp @ 12969:9acbfe04b5c3

8026495: JVM Crashes when started with -XX:+DTraceMethodProbes on Solaris x86_64 Summary: Fix wrong calling convention in LIR_Assembler::emit_unwind_handler(), T_METADATA support in calling convention generator, C1 register allocator Reviewed-by: twisti, jrose
author iveresov
date Wed, 23 Oct 2013 11:15:24 -0700
parents d13d7aba8c12
children 78bbf4d43a14
comparison
equal deleted inserted replaced
12966:b2ee5dc63353 12969:9acbfe04b5c3
181 case T_SHORT: 181 case T_SHORT:
182 case T_INT: 182 case T_INT:
183 case T_LONG: 183 case T_LONG:
184 case T_OBJECT: 184 case T_OBJECT:
185 case T_ADDRESS: 185 case T_ADDRESS:
186 case T_METADATA:
187 case T_VOID: 186 case T_VOID:
188 return ::type2char(t); 187 return ::type2char(t);
189 188 case T_METADATA:
189 return 'M';
190 case T_ILLEGAL: 190 case T_ILLEGAL:
191 return '?'; 191 return '?';
192 192
193 default: 193 default:
194 ShouldNotReachHere(); 194 ShouldNotReachHere();