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

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

Issue 2147043002: Cleanup interface descriptors to reflect that vectors are part of stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@rename-store-ic
Patch Set: Rebasing Created 4 years, 5 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
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/builtins/builtins.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 15 matching lines...) Expand all
26 const Register LoadDescriptor::NameRegister() { return x2; } 26 const Register LoadDescriptor::NameRegister() { return x2; }
27 const Register LoadDescriptor::SlotRegister() { return x0; } 27 const Register LoadDescriptor::SlotRegister() { return x0; }
28 28
29 29
30 const Register LoadWithVectorDescriptor::VectorRegister() { return x3; } 30 const Register LoadWithVectorDescriptor::VectorRegister() { return x3; }
31 31
32 32
33 const Register StoreDescriptor::ReceiverRegister() { return x1; } 33 const Register StoreDescriptor::ReceiverRegister() { return x1; }
34 const Register StoreDescriptor::NameRegister() { return x2; } 34 const Register StoreDescriptor::NameRegister() { return x2; }
35 const Register StoreDescriptor::ValueRegister() { return x0; } 35 const Register StoreDescriptor::ValueRegister() { return x0; }
36 const Register StoreDescriptor::SlotRegister() { return x4; }
36 37
37 38 const Register StoreWithVectorDescriptor::VectorRegister() { return x3; }
38 const Register VectorStoreICTrampolineDescriptor::SlotRegister() { return x4; }
39
40
41 const Register VectorStoreICDescriptor::VectorRegister() { return x3; }
42
43 39
44 const Register VectorStoreTransitionDescriptor::SlotRegister() { return x4; } 40 const Register VectorStoreTransitionDescriptor::SlotRegister() { return x4; }
45 const Register VectorStoreTransitionDescriptor::VectorRegister() { return x3; } 41 const Register VectorStoreTransitionDescriptor::VectorRegister() { return x3; }
46 const Register VectorStoreTransitionDescriptor::MapRegister() { return x5; } 42 const Register VectorStoreTransitionDescriptor::MapRegister() { return x5; }
47 43
48 44
49 const Register StoreTransitionDescriptor::MapRegister() { return x3; } 45 const Register StoreTransitionDescriptor::MapRegister() { return x3; }
50 46
51 47
52 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; } 48 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; }
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 x1, // the JSGeneratorObject to resume 459 x1, // the JSGeneratorObject to resume
464 x2 // the resume mode (tagged) 460 x2 // the resume mode (tagged)
465 }; 461 };
466 data->InitializePlatformSpecific(arraysize(registers), registers); 462 data->InitializePlatformSpecific(arraysize(registers), registers);
467 } 463 }
468 464
469 } // namespace internal 465 } // namespace internal
470 } // namespace v8 466 } // namespace v8
471 467
472 #endif // V8_TARGET_ARCH_ARM64 468 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/builtins/builtins.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698