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

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

Issue 12260008: Reapply r18377 it was reverted due to the unrelated bug it surfaced. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 { 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
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_MIPS 754 #endif // defined TARGET_ARCH_MIPS
755 755
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698