| 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_MIPS64 | 5 #if V8_TARGET_ARCH_MIPS64 |
| 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 void CompareDescriptor::InitializePlatformSpecific( | 286 void CompareDescriptor::InitializePlatformSpecific( |
| 295 CallInterfaceDescriptorData* data) { | 287 CallInterfaceDescriptorData* data) { |
| 296 Register registers[] = {a1, a0}; | 288 Register registers[] = {a1, a0}; |
| 297 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); | 289 data->InitializePlatformSpecific(arraysize(registers), registers, NULL); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 a1, // the JSGeneratorObject to resume | 411 a1, // the JSGeneratorObject to resume |
| 420 a2 // the resume mode (tagged) | 412 a2 // the resume mode (tagged) |
| 421 }; | 413 }; |
| 422 data->InitializePlatformSpecific(arraysize(registers), registers); | 414 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 423 } | 415 } |
| 424 | 416 |
| 425 } // namespace internal | 417 } // namespace internal |
| 426 } // namespace v8 | 418 } // namespace v8 |
| 427 | 419 |
| 428 #endif // V8_TARGET_ARCH_MIPS64 | 420 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |