OLD | NEW |
---|---|
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library dart2js.ir_tracer; | 5 library dart2js.ir_tracer; |
6 | 6 |
7 import 'dart:async' show EventSink; | 7 import 'dart:async' show EventSink; |
8 import 'cps_ir_nodes.dart' as cps_ir; | 8 import 'cps_ir_nodes.dart' as cps_ir; |
9 import '../tracer.dart'; | 9 import '../tracer.dart'; |
10 | 10 |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
342 String args = node.arguments.map(formatReference).join(', '); | 342 String args = node.arguments.map(formatReference).join(', '); |
343 return "CreateInvocationMirror(${node.selector.name}, $args)"; | 343 return "CreateInvocationMirror(${node.selector.name}, $args)"; |
344 } | 344 } |
345 | 345 |
346 visitTypeTest(cps_ir.TypeTest node) { | 346 visitTypeTest(cps_ir.TypeTest node) { |
347 String value = formatReference(node.value); | 347 String value = formatReference(node.value); |
348 String args = node.typeArguments.map(formatReference).join(', '); | 348 String args = node.typeArguments.map(formatReference).join(', '); |
349 return "TypeTest ($value ${node.dartType} ($args))"; | 349 return "TypeTest ($value ${node.dartType} ($args))"; |
350 } | 350 } |
351 | 351 |
352 visitTypeTestRaw(cps_ir.TypeTestRaw node) { | |
353 String value = formatReference(node.value); | |
354 String interceptor = node.interceptor == null | |
355 ? '' | |
356 : ' ${formatReference(node.interceptor)}'; | |
357 return "TypeTestRaw ($value ${node.dartType}$interceptor)"; | |
sra1
2015/10/06 06:47:58
How is this tested?
| |
358 } | |
359 | |
352 visitApplyBuiltinOperator(cps_ir.ApplyBuiltinOperator node) { | 360 visitApplyBuiltinOperator(cps_ir.ApplyBuiltinOperator node) { |
353 String operator = node.operator.toString(); | 361 String operator = node.operator.toString(); |
354 String args = node.arguments.map(formatReference).join(', '); | 362 String args = node.arguments.map(formatReference).join(', '); |
355 return 'ApplyBuiltinOperator $operator ($args)'; | 363 return 'ApplyBuiltinOperator $operator ($args)'; |
356 } | 364 } |
357 | 365 |
358 visitApplyBuiltinMethod(cps_ir.ApplyBuiltinMethod node) { | 366 visitApplyBuiltinMethod(cps_ir.ApplyBuiltinMethod node) { |
359 String method = node.method.toString(); | 367 String method = node.method.toString(); |
360 String receiver = formatReference(node.receiver); | 368 String receiver = formatReference(node.receiver); |
361 String args = node.arguments.map(formatReference).join(', '); | 369 String args = node.arguments.map(formatReference).join(', '); |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
636 } | 644 } |
637 | 645 |
638 visitCreateInvocationMirror(cps_ir.CreateInvocationMirror node) { | 646 visitCreateInvocationMirror(cps_ir.CreateInvocationMirror node) { |
639 unexpectedNode(node); | 647 unexpectedNode(node); |
640 } | 648 } |
641 | 649 |
642 visitTypeTest(cps_ir.TypeTest node) { | 650 visitTypeTest(cps_ir.TypeTest node) { |
643 unexpectedNode(node); | 651 unexpectedNode(node); |
644 } | 652 } |
645 | 653 |
654 visitTypeTestRaw(cps_ir.TypeTestRaw node) { | |
655 unexpectedNode(node); | |
656 } | |
657 | |
646 visitApplyBuiltinOperator(cps_ir.ApplyBuiltinOperator node) { | 658 visitApplyBuiltinOperator(cps_ir.ApplyBuiltinOperator node) { |
647 unexpectedNode(node); | 659 unexpectedNode(node); |
648 } | 660 } |
649 | 661 |
650 visitApplyBuiltinMethod(cps_ir.ApplyBuiltinMethod node) { | 662 visitApplyBuiltinMethod(cps_ir.ApplyBuiltinMethod node) { |
651 unexpectedNode(node); | 663 unexpectedNode(node); |
652 } | 664 } |
653 | 665 |
654 visitGetLength(cps_ir.GetLength node) { | 666 visitGetLength(cps_ir.GetLength node) { |
655 unexpectedNode(node); | 667 unexpectedNode(node); |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
688 @override | 700 @override |
689 visitYield(cps_ir.Yield node) { | 701 visitYield(cps_ir.Yield node) { |
690 addEdgeToContinuation(node.continuation); | 702 addEdgeToContinuation(node.continuation); |
691 } | 703 } |
692 | 704 |
693 @override | 705 @override |
694 visitRefinement(cps_ir.Refinement node) { | 706 visitRefinement(cps_ir.Refinement node) { |
695 unexpectedNode(node); | 707 unexpectedNode(node); |
696 } | 708 } |
697 } | 709 } |
OLD | NEW |