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

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

Issue 10915022: Implement argument definition test in the vm. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
OLDNEW
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 #include "vm/intermediate_language.h" 5 #include "vm/intermediate_language.h"
6 6
7 #include "vm/bit_vector.h" 7 #include "vm/bit_vector.h"
8 #include "vm/dart_entry.h" 8 #include "vm/dart_entry.h"
9 #include "vm/flow_graph_allocator.h" 9 #include "vm/flow_graph_allocator.h"
10 #include "vm/flow_graph_builder.h" 10 #include "vm/flow_graph_builder.h"
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 } 731 }
732 return dst_type().raw(); 732 return dst_type().raw();
733 } 733 }
734 734
735 735
736 RawAbstractType* AssertBooleanComp::CompileType() const { 736 RawAbstractType* AssertBooleanComp::CompileType() const {
737 return Type::BoolType(); 737 return Type::BoolType();
738 } 738 }
739 739
740 740
741 RawAbstractType* ArgumentDefinitionTestComp::CompileType() const {
742 return Type::BoolType();
743 }
744
745
741 RawAbstractType* CurrentContextComp::CompileType() const { 746 RawAbstractType* CurrentContextComp::CompileType() const {
742 return AbstractType::null(); 747 return AbstractType::null();
743 } 748 }
744 749
745 750
746 RawAbstractType* StoreContextComp::CompileType() const { 751 RawAbstractType* StoreContextComp::CompileType() const {
747 return AbstractType::null(); 752 return AbstractType::null();
748 } 753 }
749 754
750 755
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
1523 value->set_use_index(i); 1528 value->set_use_index(i);
1524 value->AddToEnvUseList(); 1529 value->AddToEnvUseList();
1525 } 1530 }
1526 instr->set_env(copy); 1531 instr->set_env(copy);
1527 } 1532 }
1528 1533
1529 1534
1530 #undef __ 1535 #undef __
1531 1536
1532 } // namespace dart 1537 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698