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

Unified Diff: pkg/compiler/lib/src/ssa/ssa_tracer.dart

Issue 2844383007: Add HCreateBox (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « pkg/compiler/lib/src/ssa/nodes.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/ssa/ssa_tracer.dart
diff --git a/pkg/compiler/lib/src/ssa/ssa_tracer.dart b/pkg/compiler/lib/src/ssa/ssa_tracer.dart
index d4ac68cac00649ef4f496271021770fc36e09780..00e0fac7671b30ff8efdc62449c4be63bf70d69d 100644
--- a/pkg/compiler/lib/src/ssa/ssa_tracer.dart
+++ b/pkg/compiler/lib/src/ssa/ssa_tracer.dart
@@ -205,6 +205,10 @@ class HInstructionStringifier implements HVisitor<String> {
return handleGenericInvoke("Create", "${node.element.name}", node.inputs);
}
+ String visitCreateBox(HCreateBox node) {
+ return handleGenericInvoke("CreateBox", "", node.inputs);
+ }
+
String visitDivide(HDivide node) => handleInvokeBinary(node, 'Divide');
String visitExit(HExit node) => "Exit";
« no previous file with comments | « pkg/compiler/lib/src/ssa/nodes.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698