| 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 } | 817 } |
| 818 } | 818 } |
| 819 | 819 |
| 820 | 820 |
| 821 void CatchBlockEntryInstr::PrintTo(BufferFormatter* f) const { | 821 void CatchBlockEntryInstr::PrintTo(BufferFormatter* f) const { |
| 822 f->Print("B%"Pd"[target catch %"Pd"]", block_id(), catch_try_index()); | 822 f->Print("B%"Pd"[target catch %"Pd"]", block_id(), catch_try_index()); |
| 823 if (HasParallelMove()) { | 823 if (HasParallelMove()) { |
| 824 f->Print(" "); | 824 f->Print(" "); |
| 825 parallel_move()->PrintTo(f); | 825 parallel_move()->PrintTo(f); |
| 826 } | 826 } |
| 827 |
| 828 const GrowableArray<Definition*>& defns = initial_definitions_; |
| 829 if (defns.length() > 0) { |
| 830 f->Print(" {"); |
| 831 for (intptr_t i = 0; i < defns.length(); ++i) { |
| 832 Definition* def = defns[i]; |
| 833 f->Print("\n "); |
| 834 def->PrintTo(f); |
| 835 } |
| 836 f->Print("\n}"); |
| 837 } |
| 827 } | 838 } |
| 828 | 839 |
| 829 | 840 |
| 830 void PushArgumentInstr::PrintOperandsTo(BufferFormatter* f) const { | 841 void PushArgumentInstr::PrintOperandsTo(BufferFormatter* f) const { |
| 831 value()->PrintTo(f); | 842 value()->PrintTo(f); |
| 832 } | 843 } |
| 833 | 844 |
| 834 | 845 |
| 835 void GotoInstr::PrintTo(BufferFormatter* f) const { | 846 void GotoInstr::PrintTo(BufferFormatter* f) const { |
| 836 if (HasParallelMove()) { | 847 if (HasParallelMove()) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 f->Print(" ["); | 892 f->Print(" ["); |
| 882 locations_[i].PrintTo(f); | 893 locations_[i].PrintTo(f); |
| 883 f->Print("]"); | 894 f->Print("]"); |
| 884 } | 895 } |
| 885 } | 896 } |
| 886 f->Print(" }"); | 897 f->Print(" }"); |
| 887 if (outer_ != NULL) outer_->PrintTo(f); | 898 if (outer_ != NULL) outer_->PrintTo(f); |
| 888 } | 899 } |
| 889 | 900 |
| 890 } // namespace dart | 901 } // namespace dart |
| OLD | NEW |