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

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

Issue 193183003: Inline Float64x2 methods that take 1 argument (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
« no previous file with comments | « runtime/vm/flow_graph_type_propagator.cc ('k') | runtime/vm/intermediate_language.h » ('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) 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/il_printer.h" 5 #include "vm/il_printer.h"
6 6
7 #include "vm/intermediate_language.h" 7 #include "vm/intermediate_language.h"
8 #include "vm/os.h" 8 #include "vm/os.h"
9 #include "vm/parser.h" 9 #include "vm/parser.h"
10 10
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 left()->PrintTo(f); 746 left()->PrintTo(f);
747 } 747 }
748 748
749 749
750 void Float64x2ZeroArgInstr::PrintOperandsTo(BufferFormatter* f) const { 750 void Float64x2ZeroArgInstr::PrintOperandsTo(BufferFormatter* f) const {
751 f->Print("%s, ", MethodRecognizer::KindToCString(op_kind())); 751 f->Print("%s, ", MethodRecognizer::KindToCString(op_kind()));
752 left()->PrintTo(f); 752 left()->PrintTo(f);
753 } 753 }
754 754
755 755
756 void Float64x2OneArgInstr::PrintOperandsTo(BufferFormatter* f) const {
757 f->Print("%s(", MethodRecognizer::KindToCString(op_kind()));
758 left()->PrintTo(f);
759 f->Print(", ");
760 right()->PrintTo(f);
761 f->Print(")");
762 }
763
764
756 void Int32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const { 765 void Int32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
757 f->Print("Int32x4.bool("); 766 f->Print("Int32x4.bool(");
758 value0()->PrintTo(f); 767 value0()->PrintTo(f);
759 f->Print(", "); 768 f->Print(", ");
760 value1()->PrintTo(f); 769 value1()->PrintTo(f);
761 f->Print(", "); 770 f->Print(", ");
762 value2()->PrintTo(f); 771 value2()->PrintTo(f);
763 f->Print(", "); 772 f->Print(", ");
764 value3()->PrintTo(f); 773 value3()->PrintTo(f);
765 f->Print(")"); 774 f->Print(")");
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
1018 f->Print(" ["); 1027 f->Print(" [");
1019 locations_[i].PrintTo(f); 1028 locations_[i].PrintTo(f);
1020 f->Print("]"); 1029 f->Print("]");
1021 } 1030 }
1022 } 1031 }
1023 f->Print(" }"); 1032 f->Print(" }");
1024 if (outer_ != NULL) outer_->PrintTo(f); 1033 if (outer_ != NULL) outer_->PrintTo(f);
1025 } 1034 }
1026 1035
1027 } // namespace dart 1036 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_type_propagator.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698