OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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/globals.h" // Needed here to get TARGET_ARCH_ARM. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. |
6 #if defined(TARGET_ARCH_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
7 | 7 |
8 #include "vm/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
9 | 9 |
10 #include "lib/error.h" | 10 #include "lib/error.h" |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 UNIMPLEMENTED(); | 165 UNIMPLEMENTED(); |
166 return NULL; | 166 return NULL; |
167 } | 167 } |
168 | 168 |
169 | 169 |
170 void StringFromCharCodeInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 170 void StringFromCharCodeInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
171 UNIMPLEMENTED(); | 171 UNIMPLEMENTED(); |
172 } | 172 } |
173 | 173 |
174 | 174 |
175 intptr_t LoadIndexedInstr::ResultCid() const { | 175 CompileType* LoadIndexedInstr::ComputeInitialType() const { |
176 UNIMPLEMENTED(); | 176 UNIMPLEMENTED(); |
177 return kDynamicCid; | 177 return NULL; |
178 } | 178 } |
179 | 179 |
180 | 180 |
181 Representation LoadIndexedInstr::representation() const { | 181 Representation LoadIndexedInstr::representation() const { |
182 UNIMPLEMENTED(); | 182 UNIMPLEMENTED(); |
183 return kTagged; | 183 return kTagged; |
184 } | 184 } |
185 | 185 |
186 | 186 |
187 LocationSummary* LoadIndexedInstr::MakeLocationSummary() const { | 187 LocationSummary* LoadIndexedInstr::MakeLocationSummary() const { |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 | 746 |
747 | 747 |
748 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 748 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
749 UNIMPLEMENTED(); | 749 UNIMPLEMENTED(); |
750 } | 750 } |
751 | 751 |
752 } // namespace dart | 752 } // namespace dart |
753 | 753 |
754 #endif // defined TARGET_ARCH_ARM | 754 #endif // defined TARGET_ARCH_ARM |
755 | 755 |
OLD | NEW |