| 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 #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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |