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

Side by Side Diff: src/arm64/interface-descriptors-arm64.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/arm/interface-descriptors-arm.cc ('k') | src/code-stub-assembler.h » ('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 #include "src/arm64/interface-descriptors-arm64.h" 5 #include "src/arm64/interface-descriptors-arm64.h"
6 6
7 #if V8_TARGET_ARCH_ARM64 7 #if V8_TARGET_ARCH_ARM64
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 13 matching lines...) Expand all
24 24
25 const Register FastNewFunctionContextDescriptor::FunctionRegister() { 25 const Register FastNewFunctionContextDescriptor::FunctionRegister() {
26 return x1; 26 return x1;
27 } 27 }
28 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return x0; } 28 const Register FastNewFunctionContextDescriptor::SlotsRegister() { return x0; }
29 29
30 const Register LoadDescriptor::ReceiverRegister() { return x1; } 30 const Register LoadDescriptor::ReceiverRegister() { return x1; }
31 const Register LoadDescriptor::NameRegister() { return x2; } 31 const Register LoadDescriptor::NameRegister() { return x2; }
32 const Register LoadDescriptor::SlotRegister() { return x0; } 32 const Register LoadDescriptor::SlotRegister() { return x0; }
33 33
34
35 const Register LoadWithVectorDescriptor::VectorRegister() { return x3; } 34 const Register LoadWithVectorDescriptor::VectorRegister() { return x3; }
36 35
36 const Register LoadICProtoArrayDescriptor::HandlerRegister() { return x4; }
37 37
38 const Register StoreDescriptor::ReceiverRegister() { return x1; } 38 const Register StoreDescriptor::ReceiverRegister() { return x1; }
39 const Register StoreDescriptor::NameRegister() { return x2; } 39 const Register StoreDescriptor::NameRegister() { return x2; }
40 const Register StoreDescriptor::ValueRegister() { return x0; } 40 const Register StoreDescriptor::ValueRegister() { return x0; }
41 const Register StoreDescriptor::SlotRegister() { return x4; } 41 const Register StoreDescriptor::SlotRegister() { return x4; }
42 42
43 const Register StoreWithVectorDescriptor::VectorRegister() { return x3; } 43 const Register StoreWithVectorDescriptor::VectorRegister() { return x3; }
44 44
45 const Register StoreTransitionDescriptor::SlotRegister() { return x4; } 45 const Register StoreTransitionDescriptor::SlotRegister() { return x4; }
46 const Register StoreTransitionDescriptor::VectorRegister() { return x3; } 46 const Register StoreTransitionDescriptor::VectorRegister() { return x3; }
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 x1, // the JSGeneratorObject to resume 462 x1, // the JSGeneratorObject to resume
463 x2 // the resume mode (tagged) 463 x2 // the resume mode (tagged)
464 }; 464 };
465 data->InitializePlatformSpecific(arraysize(registers), registers); 465 data->InitializePlatformSpecific(arraysize(registers), registers);
466 } 466 }
467 467
468 } // namespace internal 468 } // namespace internal
469 } // namespace v8 469 } // namespace v8
470 470
471 #endif // V8_TARGET_ARCH_ARM64 471 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm/interface-descriptors-arm.cc ('k') | src/code-stub-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698