| 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 left()->PrintTo(f); | 740 left()->PrintTo(f); |
| 741 } | 741 } |
| 742 | 742 |
| 743 | 743 |
| 744 void Float64x2ToFloat32x4Instr::PrintOperandsTo(BufferFormatter* f) const { | 744 void Float64x2ToFloat32x4Instr::PrintOperandsTo(BufferFormatter* f) const { |
| 745 f->Print("Float32x4.fromFloat64x2 "); | 745 f->Print("Float32x4.fromFloat64x2 "); |
| 746 left()->PrintTo(f); | 746 left()->PrintTo(f); |
| 747 } | 747 } |
| 748 | 748 |
| 749 | 749 |
| 750 void Float64x2ZeroArgInstr::PrintOperandsTo(BufferFormatter* f) const { |
| 751 f->Print("%s, ", MethodRecognizer::KindToCString(op_kind())); |
| 752 left()->PrintTo(f); |
| 753 } |
| 754 |
| 755 |
| 750 void Int32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const { | 756 void Int32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const { |
| 751 f->Print("Int32x4.bool("); | 757 f->Print("Int32x4.bool("); |
| 752 value0()->PrintTo(f); | 758 value0()->PrintTo(f); |
| 753 f->Print(", "); | 759 f->Print(", "); |
| 754 value1()->PrintTo(f); | 760 value1()->PrintTo(f); |
| 755 f->Print(", "); | 761 f->Print(", "); |
| 756 value2()->PrintTo(f); | 762 value2()->PrintTo(f); |
| 757 f->Print(", "); | 763 f->Print(", "); |
| 758 value3()->PrintTo(f); | 764 value3()->PrintTo(f); |
| 759 f->Print(")"); | 765 f->Print(")"); |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1012 f->Print(" ["); | 1018 f->Print(" ["); |
| 1013 locations_[i].PrintTo(f); | 1019 locations_[i].PrintTo(f); |
| 1014 f->Print("]"); | 1020 f->Print("]"); |
| 1015 } | 1021 } |
| 1016 } | 1022 } |
| 1017 f->Print(" }"); | 1023 f->Print(" }"); |
| 1018 if (outer_ != NULL) outer_->PrintTo(f); | 1024 if (outer_ != NULL) outer_->PrintTo(f); |
| 1019 } | 1025 } |
| 1020 | 1026 |
| 1021 } // namespace dart | 1027 } // namespace dart |
| OLD | NEW |