src/share/vm/runtime/deoptimization.cpp

changeset 7420
793204f5528a
parent 7419
d3f3f7677537
child 7535
7ae4e26cb1e0
child 7598
ddce0b7cee93
equal deleted inserted replaced
7419:d3f3f7677537 7420:793204f5528a
248 if (objects != NULL) { 248 if (objects != NULL) {
249 JRT_BLOCK 249 JRT_BLOCK
250 realloc_failures = realloc_objects(thread, &deoptee, objects, THREAD); 250 realloc_failures = realloc_objects(thread, &deoptee, objects, THREAD);
251 JRT_END 251 JRT_END
252 reassign_fields(&deoptee, &map, objects, realloc_failures); 252 reassign_fields(&deoptee, &map, objects, realloc_failures);
253 }
254 #ifndef PRODUCT 253 #ifndef PRODUCT
255 if (TraceDeoptimization) { 254 if (TraceDeoptimization) {
256 ttyLocker ttyl; 255 ttyLocker ttyl;
257 tty->print_cr("REALLOC OBJECTS in thread " INTPTR_FORMAT, thread); 256 tty->print_cr("REALLOC OBJECTS in thread " INTPTR_FORMAT, thread);
258 print_objects(objects, realloc_failures); 257 print_objects(objects, realloc_failures);
259 } 258 }
260 #endif 259 #endif
260 }
261 if (save_oop_result) { 261 if (save_oop_result) {
262 // Restore result. 262 // Restore result.
263 deoptee.set_saved_oop_result(&map, return_value()); 263 deoptee.set_saved_oop_result(&map, return_value());
264 } 264 }
265 } 265 }

mercurial