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

Side by Side Diff: src/mips/interface-descriptors-mips.cc

Issue 2190293003: [Interpreter] Collect type feedback for 'new' in the bytecode handler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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
OLDNEW
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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 }; 375 };
376 data->InitializePlatformSpecific(arraysize(registers), registers); 376 data->InitializePlatformSpecific(arraysize(registers), registers);
377 } 377 }
378 378
379 void InterpreterPushArgsAndConstructDescriptor::InitializePlatformSpecific( 379 void InterpreterPushArgsAndConstructDescriptor::InitializePlatformSpecific(
380 CallInterfaceDescriptorData* data) { 380 CallInterfaceDescriptorData* data) {
381 Register registers[] = { 381 Register registers[] = {
382 a0, // argument count (not including receiver) 382 a0, // argument count (not including receiver)
383 a3, // new target 383 a3, // new target
384 a1, // constructor to call 384 a1, // constructor to call
385 a2 // address of the first argument 385 a2, // allocation site feedback if available, undefined otherwise.
386 t4 // address of the first argument
386 }; 387 };
387 data->InitializePlatformSpecific(arraysize(registers), registers); 388 data->InitializePlatformSpecific(arraysize(registers), registers);
388 } 389 }
389 390
390 void InterpreterCEntryDescriptor::InitializePlatformSpecific( 391 void InterpreterCEntryDescriptor::InitializePlatformSpecific(
391 CallInterfaceDescriptorData* data) { 392 CallInterfaceDescriptorData* data) {
392 Register registers[] = { 393 Register registers[] = {
393 a0, // argument count (argc) 394 a0, // argument count (argc)
394 a2, // address of first argument (argv) 395 a2, // address of first argument (argv)
395 a1 // the runtime function to call 396 a1 // the runtime function to call
396 }; 397 };
397 data->InitializePlatformSpecific(arraysize(registers), registers); 398 data->InitializePlatformSpecific(arraysize(registers), registers);
398 } 399 }
399 400
400 void ResumeGeneratorDescriptor::InitializePlatformSpecific( 401 void ResumeGeneratorDescriptor::InitializePlatformSpecific(
401 CallInterfaceDescriptorData* data) { 402 CallInterfaceDescriptorData* data) {
402 Register registers[] = { 403 Register registers[] = {
403 v0, // the value to pass to the generator 404 v0, // the value to pass to the generator
404 a1, // the JSGeneratorObject to resume 405 a1, // the JSGeneratorObject to resume
405 a2 // the resume mode (tagged) 406 a2 // the resume mode (tagged)
406 }; 407 };
407 data->InitializePlatformSpecific(arraysize(registers), registers); 408 data->InitializePlatformSpecific(arraysize(registers), registers);
408 } 409 }
409 410
410 } // namespace internal 411 } // namespace internal
411 } // namespace v8 412 } // namespace v8
412 413
413 #endif // V8_TARGET_ARCH_MIPS 414 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698