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

Side by Side Diff: src/mips/ic-mips.cc

Issue 6295013: Revert r6376 and r6373 which changes external array support. The ARM... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 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
« no previous file with comments | « src/ic.cc ('k') | src/mips/stub-cache-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) { 165 void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) {
166 UNIMPLEMENTED_MIPS(); 166 UNIMPLEMENTED_MIPS();
167 } 167 }
168 168
169 169
170 void KeyedLoadIC::GenerateString(MacroAssembler* masm) { 170 void KeyedLoadIC::GenerateString(MacroAssembler* masm) {
171 UNIMPLEMENTED_MIPS(); 171 UNIMPLEMENTED_MIPS();
172 } 172 }
173 173
174 174
175 void KeyedLoadIC::GenerateExternalArray(MacroAssembler* masm,
176 ExternalArrayType array_type) {
177 UNIMPLEMENTED_MIPS();
178 }
179
180
175 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) { 181 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) {
176 UNIMPLEMENTED_MIPS(); 182 UNIMPLEMENTED_MIPS();
177 } 183 }
178 184
179 185
186 void KeyedStoreIC::GenerateExternalArray(MacroAssembler* masm,
187 ExternalArrayType array_type) {
188 UNIMPLEMENTED_MIPS();
189 }
190
191
180 void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) { 192 void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) {
181 UNIMPLEMENTED_MIPS(); 193 UNIMPLEMENTED_MIPS();
182 } 194 }
183 195
184 196
185 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { 197 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
186 UNIMPLEMENTED_MIPS(); 198 UNIMPLEMENTED_MIPS();
187 } 199 }
188 200
189 201
190 void StoreIC::GenerateMegamorphic(MacroAssembler* masm) { 202 void StoreIC::GenerateMegamorphic(MacroAssembler* masm) {
191 UNIMPLEMENTED_MIPS(); 203 UNIMPLEMENTED_MIPS();
192 } 204 }
193 205
194 206
195 void StoreIC::GenerateMiss(MacroAssembler* masm) { 207 void StoreIC::GenerateMiss(MacroAssembler* masm) {
196 UNIMPLEMENTED_MIPS(); 208 UNIMPLEMENTED_MIPS();
197 } 209 }
198 210
199 211
200 void StoreIC::GenerateArrayLength(MacroAssembler* masm) { 212 void StoreIC::GenerateArrayLength(MacroAssembler* masm) {
201 UNIMPLEMENTED_MIPS(); 213 UNIMPLEMENTED_MIPS();
202 } 214 }
203 215
204 #undef __ 216 #undef __
205 217
206 } } // namespace v8::internal 218 } } // namespace v8::internal
207 219
208 #endif // V8_TARGET_ARCH_MIPS 220 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/mips/stub-cache-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698