Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: runtime/vm/intermediate_language_mips.cc

Issue 12041005: Optimize loads and stores to Int32Array and Uint32Array. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_MIPS. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS.
6 #if defined(TARGET_ARCH_MIPS) 6 #if defined(TARGET_ARCH_MIPS)
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
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 {
176 UNIMPLEMENTED();
177 return kDynamicCid;
178 }
179
180
181 Representation LoadIndexedInstr::representation() const {
182 UNIMPLEMENTED();
183 return kTagged;
184 }
185
186
175 LocationSummary* LoadIndexedInstr::MakeLocationSummary() const { 187 LocationSummary* LoadIndexedInstr::MakeLocationSummary() const {
176 UNIMPLEMENTED(); 188 UNIMPLEMENTED();
177 return NULL; 189 return NULL;
178 } 190 }
179 191
180 192
181 void LoadIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 193 void LoadIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
182 UNIMPLEMENTED(); 194 UNIMPLEMENTED();
183 } 195 }
184 196
185 197
198 Representation StoreIndexedInstr::RequiredInputRepresentation(
199 intptr_t idx) const {
200 UNIMPLEMENTED();
201 return kTagged;
202 }
203
204
186 LocationSummary* StoreIndexedInstr::MakeLocationSummary() const { 205 LocationSummary* StoreIndexedInstr::MakeLocationSummary() const {
187 UNIMPLEMENTED(); 206 UNIMPLEMENTED();
188 return NULL; 207 return NULL;
189 } 208 }
190 209
191 210
192 void StoreIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 211 void StoreIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
193 UNIMPLEMENTED(); 212 UNIMPLEMENTED();
194 } 213 }
195 214
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 735
717 736
718 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 737 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
719 UNIMPLEMENTED(); 738 UNIMPLEMENTED();
720 } 739 }
721 740
722 } // namespace dart 741 } // namespace dart
723 742
724 #endif // defined TARGET_ARCH_MIPS 743 #endif // defined TARGET_ARCH_MIPS
725 744
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698