OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. |
6 #if defined(TARGET_ARCH_MIPS) | 6 #if defined(TARGET_ARCH_MIPS) |
7 | 7 |
8 #include "vm/flow_graph_compiler.h" | 8 #include "vm/flow_graph_compiler.h" |
9 | 9 |
10 #include "vm/ast_printer.h" | 10 #include "vm/ast_printer.h" |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 // - object in A0 for successful assignable check (or throws TypeError). | 660 // - object in A0 for successful assignable check (or throws TypeError). |
661 // Clobbers: T0, T1, T2 | 661 // Clobbers: T0, T1, T2 |
662 // Performance notes: positive checks must be quick, negative checks can be slow | 662 // Performance notes: positive checks must be quick, negative checks can be slow |
663 // as they throw an exception. | 663 // as they throw an exception. |
664 void FlowGraphCompiler::GenerateAssertAssignable(intptr_t token_pos, | 664 void FlowGraphCompiler::GenerateAssertAssignable(intptr_t token_pos, |
665 intptr_t deopt_id, | 665 intptr_t deopt_id, |
666 const AbstractType& dst_type, | 666 const AbstractType& dst_type, |
667 const String& dst_name, | 667 const String& dst_name, |
668 LocationSummary* locs) { | 668 LocationSummary* locs) { |
669 __ Comment("AssertAssignable"); | 669 __ Comment("AssertAssignable"); |
670 ASSERT(Scanner::ValidSourcePosition(token_pos)); | 670 ASSERT(!Token::IsClassifying(token_pos)); |
671 ASSERT(!dst_type.IsNull()); | 671 ASSERT(!dst_type.IsNull()); |
672 ASSERT(dst_type.IsFinalized()); | 672 ASSERT(dst_type.IsFinalized()); |
673 // Assignable check is skipped in FlowGraphBuilder, not here. | 673 // Assignable check is skipped in FlowGraphBuilder, not here. |
674 ASSERT(dst_type.IsMalformedOrMalbounded() || | 674 ASSERT(dst_type.IsMalformedOrMalbounded() || |
675 (!dst_type.IsDynamicType() && !dst_type.IsObjectType())); | 675 (!dst_type.IsDynamicType() && !dst_type.IsObjectType())); |
676 // Preserve instantiator type arguments. | 676 // Preserve instantiator type arguments. |
677 __ addiu(SP, SP, Immediate(-1 * kWordSize)); | 677 __ addiu(SP, SP, Immediate(-1 * kWordSize)); |
678 __ sw(A1, Address(SP, 0 * kWordSize)); | 678 __ sw(A1, Address(SP, 0 * kWordSize)); |
679 | 679 |
680 // A null object is always assignable and is returned as result. | 680 // A null object is always assignable and is returned as result. |
(...skipping 1215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1896 __ AddImmediate(SP, kDoubleSize); | 1896 __ AddImmediate(SP, kDoubleSize); |
1897 } | 1897 } |
1898 | 1898 |
1899 | 1899 |
1900 #undef __ | 1900 #undef __ |
1901 | 1901 |
1902 | 1902 |
1903 } // namespace dart | 1903 } // namespace dart |
1904 | 1904 |
1905 #endif // defined TARGET_ARCH_MIPS | 1905 #endif // defined TARGET_ARCH_MIPS |
OLD | NEW |