OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #if V8_TARGET_ARCH_MIPS | 5 #if V8_TARGET_ARCH_MIPS |
6 | 6 |
7 #include "src/interface-descriptors.h" | 7 #include "src/interface-descriptors.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 void ArraySingleArgumentConstructorDescriptor::InitializePlatformSpecific( | 263 void ArraySingleArgumentConstructorDescriptor::InitializePlatformSpecific( |
264 CallInterfaceDescriptorData* data) { | 264 CallInterfaceDescriptorData* data) { |
265 // register state | 265 // register state |
266 // a0 -- number of arguments | 266 // a0 -- number of arguments |
267 // a1 -- function | 267 // a1 -- function |
268 // a2 -- allocation site with elements kind | 268 // a2 -- allocation site with elements kind |
269 Register registers[] = {a1, a2, a0}; | 269 Register registers[] = {a1, a2, a0}; |
270 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); | 270 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); |
271 } | 271 } |
272 | 272 |
273 void ArrayConstructorDescriptor::InitializePlatformSpecific( | 273 void ArrayNArgumentsConstructorDescriptor::InitializePlatformSpecific( |
274 CallInterfaceDescriptorData* data) { | 274 CallInterfaceDescriptorData* data) { |
275 // stack param count needs (constructor pointer, and single argument) | 275 // stack param count needs (constructor pointer, and single argument) |
276 Register registers[] = {a1, a2, a0}; | 276 Register registers[] = {a1, a2, a0}; |
277 data->InitializePlatformSpecific(arraysize(registers), registers); | 277 data->InitializePlatformSpecific(arraysize(registers), registers); |
278 } | 278 } |
279 | 279 |
280 | |
281 void InternalArrayConstructorDescriptor::InitializePlatformSpecific( | |
282 CallInterfaceDescriptorData* data) { | |
283 // stack param count needs (constructor pointer, and single argument) | |
284 Register registers[] = {a1, a0}; | |
285 data->InitializePlatformSpecific(arraysize(registers), registers); | |
286 } | |
287 | |
288 void VarArgFunctionDescriptor::InitializePlatformSpecific( | 280 void VarArgFunctionDescriptor::InitializePlatformSpecific( |
289 CallInterfaceDescriptorData* data) { | 281 CallInterfaceDescriptorData* data) { |
290 // stack param count needs (arg count) | 282 // stack param count needs (arg count) |
291 Register registers[] = {a0}; | 283 Register registers[] = {a0}; |
292 data->InitializePlatformSpecific(arraysize(registers), registers); | 284 data->InitializePlatformSpecific(arraysize(registers), registers); |
293 } | 285 } |
294 | 286 |
295 void CompareDescriptor::InitializePlatformSpecific( | 287 void CompareDescriptor::InitializePlatformSpecific( |
296 CallInterfaceDescriptorData* data) { | 288 CallInterfaceDescriptorData* data) { |
297 Register registers[] = {a1, a0}; | 289 Register registers[] = {a1, a0}; |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 a1, // the JSGeneratorObject to resume | 412 a1, // the JSGeneratorObject to resume |
421 a2 // the resume mode (tagged) | 413 a2 // the resume mode (tagged) |
422 }; | 414 }; |
423 data->InitializePlatformSpecific(arraysize(registers), registers); | 415 data->InitializePlatformSpecific(arraysize(registers), registers); |
424 } | 416 } |
425 | 417 |
426 } // namespace internal | 418 } // namespace internal |
427 } // namespace v8 | 419 } // namespace v8 |
428 | 420 |
429 #endif // V8_TARGET_ARCH_MIPS | 421 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |