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

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

Issue 2496333002: [ic] Extract load IC proto array handlers handling to a separate stub. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/ppc/interface-descriptors-ppc.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 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 11 matching lines...) Expand all
22 22
23 const Register FastNewFunctionContextDescriptor::FunctionRegister() { 23 const Register FastNewFunctionContextDescriptor::FunctionRegister() {
24 return a1; 24 return a1;
25 } 25 }
26 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return a0; } 26 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return a0; }
27 27
28 const Register LoadDescriptor::ReceiverRegister() { return a1; } 28 const Register LoadDescriptor::ReceiverRegister() { return a1; }
29 const Register LoadDescriptor::NameRegister() { return a2; } 29 const Register LoadDescriptor::NameRegister() { return a2; }
30 const Register LoadDescriptor::SlotRegister() { return a0; } 30 const Register LoadDescriptor::SlotRegister() { return a0; }
31 31
32
33 const Register LoadWithVectorDescriptor::VectorRegister() { return a3; } 32 const Register LoadWithVectorDescriptor::VectorRegister() { return a3; }
34 33
34 const Register LoadICProtoArrayDescriptor::HandlerRegister() { return a4; }
35 35
36 const Register StoreDescriptor::ReceiverRegister() { return a1; } 36 const Register StoreDescriptor::ReceiverRegister() { return a1; }
37 const Register StoreDescriptor::NameRegister() { return a2; } 37 const Register StoreDescriptor::NameRegister() { return a2; }
38 const Register StoreDescriptor::ValueRegister() { return a0; } 38 const Register StoreDescriptor::ValueRegister() { return a0; }
39 const Register StoreDescriptor::SlotRegister() { return a4; } 39 const Register StoreDescriptor::SlotRegister() { return a4; }
40 40
41 const Register StoreWithVectorDescriptor::VectorRegister() { return a3; } 41 const Register StoreWithVectorDescriptor::VectorRegister() { return a3; }
42 42
43 const Register StoreTransitionDescriptor::SlotRegister() { return a4; } 43 const Register StoreTransitionDescriptor::SlotRegister() { return a4; }
44 const Register StoreTransitionDescriptor::VectorRegister() { return a3; } 44 const Register StoreTransitionDescriptor::VectorRegister() { return a3; }
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 a1, // the JSGeneratorObject to resume 410 a1, // the JSGeneratorObject to resume
411 a2 // the resume mode (tagged) 411 a2 // the resume mode (tagged)
412 }; 412 };
413 data->InitializePlatformSpecific(arraysize(registers), registers); 413 data->InitializePlatformSpecific(arraysize(registers), registers);
414 } 414 }
415 415
416 } // namespace internal 416 } // namespace internal
417 } // namespace v8 417 } // namespace v8
418 418
419 #endif // V8_TARGET_ARCH_MIPS64 419 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/ppc/interface-descriptors-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698