| 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 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 replacement()->PrintTo(f); | 699 replacement()->PrintTo(f); |
| 700 } | 700 } |
| 701 | 701 |
| 702 | 702 |
| 703 void Float32x4ToUint32x4Instr::PrintOperandsTo(BufferFormatter* f) const { | 703 void Float32x4ToUint32x4Instr::PrintOperandsTo(BufferFormatter* f) const { |
| 704 f->Print("Float32x4.toUint32x4 "); | 704 f->Print("Float32x4.toUint32x4 "); |
| 705 left()->PrintTo(f); | 705 left()->PrintTo(f); |
| 706 } | 706 } |
| 707 | 707 |
| 708 | 708 |
| 709 void Float32x4TwoArgShuffleInstr::PrintOperandsTo(BufferFormatter* f) const { |
| 710 f->Print("%s, ", MethodRecognizer::KindToCString(op_kind())); |
| 711 left()->PrintTo(f); |
| 712 f->Print(", "); |
| 713 right()->PrintTo(f); |
| 714 } |
| 715 |
| 716 |
| 709 void Uint32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const { | 717 void Uint32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const { |
| 710 f->Print("Uint32x4.bool("); | 718 f->Print("Uint32x4.bool("); |
| 711 value0()->PrintTo(f); | 719 value0()->PrintTo(f); |
| 712 f->Print(", "); | 720 f->Print(", "); |
| 713 value1()->PrintTo(f); | 721 value1()->PrintTo(f); |
| 714 f->Print(", "); | 722 f->Print(", "); |
| 715 value2()->PrintTo(f); | 723 value2()->PrintTo(f); |
| 716 f->Print(", "); | 724 f->Print(", "); |
| 717 value3()->PrintTo(f); | 725 value3()->PrintTo(f); |
| 718 f->Print(")"); | 726 f->Print(")"); |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 f->Print(" ["); | 962 f->Print(" ["); |
| 955 locations_[i].PrintTo(f); | 963 locations_[i].PrintTo(f); |
| 956 f->Print("]"); | 964 f->Print("]"); |
| 957 } | 965 } |
| 958 } | 966 } |
| 959 f->Print(" }"); | 967 f->Print(" }"); |
| 960 if (outer_ != NULL) outer_->PrintTo(f); | 968 if (outer_ != NULL) outer_->PrintTo(f); |
| 961 } | 969 } |
| 962 | 970 |
| 963 } // namespace dart | 971 } // namespace dart |
| OLD | NEW |