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

Side by Side Diff: runtime/vm/flow_graph_compiler_mips.cc

Issue 1589643002: Source positions for constructors and lots of async machinery (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_compiler_ia32.cc ('k') | runtime/vm/flow_graph_compiler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698