OLD | NEW |
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 Loading... |
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 |
OLD | NEW |