comparison src/share/vm/graal/graalCodeInstaller.cpp @ 7933:85bd81dba8fc

Remove more code related to deferred writes.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 05 Mar 2013 17:21:54 +0100
parents fe64b5da8229
children 0799a7efbe7b
comparison
equal deleted inserted replaced
7932:d4e6c82cd6a1 7933:85bd81dba8fc
573 573
574 DebugToken* locals_token = _debug_recorder->create_scope_values(locals); 574 DebugToken* locals_token = _debug_recorder->create_scope_values(locals);
575 DebugToken* expressions_token = _debug_recorder->create_scope_values(expressions); 575 DebugToken* expressions_token = _debug_recorder->create_scope_values(expressions);
576 DebugToken* monitors_token = _debug_recorder->create_monitor_values(monitors); 576 DebugToken* monitors_token = _debug_recorder->create_monitor_values(monitors);
577 577
578 GrowableArray<DeferredWriteValue*>* deferred_writes = new GrowableArray<DeferredWriteValue*> ();
579 // deferred_writes->append(new DeferredWriteValue(new LocationValue(Location::new_reg_loc(Location::lng, rax->as_VMReg())), new ConstantIntValue(0), 0, 100, new ConstantIntValue(123)));
580 DebugToken* deferred_writes_token = _debug_recorder->create_deferred_writes(deferred_writes);
581
582 bool throw_exception = BytecodeFrame::rethrowException(frame) == JNI_TRUE; 578 bool throw_exception = BytecodeFrame::rethrowException(frame) == JNI_TRUE;
583 579
584 _debug_recorder->describe_scope(pc_offset, method, NULL, bci, reexecute, throw_exception, false, false, locals_token, expressions_token, monitors_token, deferred_writes_token); 580 _debug_recorder->describe_scope(pc_offset, method, NULL, bci, reexecute, throw_exception, false, false, locals_token, expressions_token, monitors_token);
585 } 581 }
586 582
587 void CodeInstaller::site_Safepoint(CodeBuffer& buffer, jint pc_offset, oop site) { 583 void CodeInstaller::site_Safepoint(CodeBuffer& buffer, jint pc_offset, oop site) {
588 oop debug_info = CompilationResult_Safepoint::debugInfo(site); 584 oop debug_info = CompilationResult_Safepoint::debugInfo(site);
589 assert(debug_info != NULL, "debug info expected"); 585 assert(debug_info != NULL, "debug info expected");