comparison src/share/vm/utilities/vmError.cpp @ 420:a1980da045cc

6462850: generate biased locking code in C2 ideal graph Summary: Inline biased locking code in C2 ideal graph during macro nodes expansion Reviewed-by: never
author kvn
date Fri, 07 Nov 2008 09:29:38 -0800
parents d1605aabd0a1
children 3ad2b8576c4a
comparison
equal deleted inserted replaced
419:0bf25c4807f9 420:a1980da045cc
261 case oom_error: 261 case oom_error:
262 st->print_cr("#"); 262 st->print_cr("#");
263 st->print("# java.lang.OutOfMemoryError: "); 263 st->print("# java.lang.OutOfMemoryError: ");
264 if (_size) { 264 if (_size) {
265 st->print("requested "); 265 st->print("requested ");
266 sprintf(buf,"%d",_size); 266 sprintf(buf,SIZE_FORMAT,_size);
267 st->print(buf); 267 st->print(buf);
268 st->print(" bytes"); 268 st->print(" bytes");
269 if (_message != NULL) { 269 if (_message != NULL) {
270 st->print(" for "); 270 st->print(" for ");
271 st->print(_message); 271 st->print(_message);