| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 class SsaCodeGeneratorTask extends CompilerTask { | 5 class SsaCodeGeneratorTask extends CompilerTask { |
| 6 final JavaScriptBackend backend; | 6 final JavaScriptBackend backend; |
| 7 SsaCodeGeneratorTask(JavaScriptBackend backend) | 7 SsaCodeGeneratorTask(JavaScriptBackend backend) |
| 8 : this.backend = backend, | 8 : this.backend = backend, |
| 9 super(backend.compiler); | 9 super(backend.compiler); |
| 10 String get name => 'SSA code generator'; | 10 String get name => 'SSA code generator'; |
| (...skipping 1475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1486 push(jsPropertyCall(pop(), | 1486 push(jsPropertyCall(pop(), |
| 1487 compiler.namer.closureInvocationName(node.selector), | 1487 compiler.namer.closureInvocationName(node.selector), |
| 1488 visitArguments(node.inputs)), | 1488 visitArguments(node.inputs)), |
| 1489 node); | 1489 node); |
| 1490 Selector call = new Selector.callClosureFrom(node.selector); | 1490 Selector call = new Selector.callClosureFrom(node.selector); |
| 1491 world.registerDynamicInvocation(call.name, call); | 1491 world.registerDynamicInvocation(call.name, call); |
| 1492 } | 1492 } |
| 1493 | 1493 |
| 1494 visitInvokeStatic(HInvokeStatic node) { | 1494 visitInvokeStatic(HInvokeStatic node) { |
| 1495 if (Elements.isStaticOrTopLevelFunction(node.element) && | 1495 if (Elements.isStaticOrTopLevelFunction(node.element) && |
| 1496 node.typeCode() == HInvokeStatic.INVOKE_STATIC_TYPECODE) { | 1496 (node.typeCode() == HInvokeStatic.INVOKE_STATIC_TYPECODE || |
| 1497 node.typeCode() == HInvokeStatic.INVOKE_INTERCEPTOR_TYPECODE)) { |
| 1497 // Register this invocation to collect the types used at all call sites. | 1498 // Register this invocation to collect the types used at all call sites. |
| 1498 backend.registerStaticInvocation(node, types); | 1499 backend.registerStaticInvocation(node, types); |
| 1499 } | 1500 } |
| 1500 use(node.target); | 1501 use(node.target); |
| 1501 push(new js.Call(pop(), visitArguments(node.inputs)), node); | 1502 push(new js.Call(pop(), visitArguments(node.inputs)), node); |
| 1502 } | 1503 } |
| 1503 | 1504 |
| 1504 visitInvokeSuper(HInvokeSuper node) { | 1505 visitInvokeSuper(HInvokeSuper node) { |
| 1505 Element superMethod = node.element; | 1506 Element superMethod = node.element; |
| 1506 Element superClass = superMethod.getEnclosingClass(); | 1507 Element superClass = superMethod.getEnclosingClass(); |
| (...skipping 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2907 if (leftType.canBeNull() && rightType.canBeNull()) { | 2908 if (leftType.canBeNull() && rightType.canBeNull()) { |
| 2908 if (left.isConstantNull() || right.isConstantNull() || | 2909 if (left.isConstantNull() || right.isConstantNull() || |
| 2909 (leftType.isPrimitive() && leftType == rightType)) { | 2910 (leftType.isPrimitive() && leftType == rightType)) { |
| 2910 return '=='; | 2911 return '=='; |
| 2911 } | 2912 } |
| 2912 return null; | 2913 return null; |
| 2913 } else { | 2914 } else { |
| 2914 return '==='; | 2915 return '==='; |
| 2915 } | 2916 } |
| 2916 } | 2917 } |
| OLD | NEW |