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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/tracer.dart

Issue 188433002: Instruction selection before removing HTypeKnown (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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: sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart b/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
index 37731ba36fd9bd7429291f6ceb9226e910ff285a..1d18a1666e407f9a786f194d2a300123838a780c 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
@@ -508,6 +508,11 @@ class HInstructionStringifier implements HVisitor<String> {
return "TypeTest: ${temporaryId(node.expression)} is $type";
}
+ String visitIsViaInterceptor(HIsViaInterceptor node) {
+ String type = node.typeExpression.toString();
+ return "TypeTest: ${temporaryId(node.inputs[0])} is $type";
+ }
+
String visitTypeConversion(HTypeConversion node) {
assert(node.inputs.length <= 2);
String otherInput = (node.inputs.length == 2)
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ssa/nodes.dart ('k') | tests/compiler/dart2js/strength_eq_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698