Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(350)

Unified Diff: runtime/vm/il_printer.cc

Issue 16693006: Initial implementation of on-stack replacement (OSR). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up for review. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/il_printer.cc
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index f7aa016cd7803953ba9b451ca6a75b7a73f34f2a..b8a4232eecce641ed8761ff0e3247ab35061c258 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -860,6 +860,11 @@ void ParameterInstr::PrintOperandsTo(BufferFormatter* f) const {
}
+void CheckStackOverflowInstr::PrintOperandsTo(BufferFormatter* f) const {
+ if (is_loop()) f->Print("loop");
+}
+
+
void TargetEntryInstr::PrintTo(BufferFormatter* f) const {
f->Print("B%"Pd"[target]:%"Pd, block_id(), GetDeoptId());
if (HasParallelMove()) {

Powered by Google App Engine
This is Rietveld 408576698