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

Side by Side Diff: src/arm/interface-descriptors-arm.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/arm/code-stubs-arm.cc ('k') | src/arm64/code-stubs-arm64.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 #include "src/arm/interface-descriptors-arm.h" 5 #include "src/arm/interface-descriptors-arm.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_ARM
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 r2; } 26 const Register LoadDescriptor::NameRegister() { return r2; }
27 const Register LoadDescriptor::SlotRegister() { return r0; } 27 const Register LoadDescriptor::SlotRegister() { return r0; }
28 28
29 29
30 const Register LoadWithVectorDescriptor::VectorRegister() { return r3; } 30 const Register LoadWithVectorDescriptor::VectorRegister() { return r3; }
31 31
32 32
33 const Register StoreDescriptor::ReceiverRegister() { return r1; } 33 const Register StoreDescriptor::ReceiverRegister() { return r1; }
34 const Register StoreDescriptor::NameRegister() { return r2; } 34 const Register StoreDescriptor::NameRegister() { return r2; }
35 const Register StoreDescriptor::ValueRegister() { return r0; } 35 const Register StoreDescriptor::ValueRegister() { return r0; }
36 const Register StoreDescriptor::SlotRegister() { return r4; }
36 37
37 38 const Register StoreWithVectorDescriptor::VectorRegister() { return r3; }
38 const Register VectorStoreICTrampolineDescriptor::SlotRegister() { return r4; }
39
40
41 const Register VectorStoreICDescriptor::VectorRegister() { return r3; }
42
43 39
44 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r4; } 40 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r4; }
45 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r3; } 41 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r3; }
46 const Register VectorStoreTransitionDescriptor::MapRegister() { return r5; } 42 const Register VectorStoreTransitionDescriptor::MapRegister() { return r5; }
47 43
48 44
49 const Register StoreTransitionDescriptor::MapRegister() { return r3; } 45 const Register StoreTransitionDescriptor::MapRegister() { return r3; }
50 46
51 47
52 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; } 48 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; }
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 r1, // the JSGeneratorObject to resume 426 r1, // the JSGeneratorObject to resume
431 r2 // the resume mode (tagged) 427 r2 // the resume mode (tagged)
432 }; 428 };
433 data->InitializePlatformSpecific(arraysize(registers), registers); 429 data->InitializePlatformSpecific(arraysize(registers), registers);
434 } 430 }
435 431
436 } // namespace internal 432 } // namespace internal
437 } // namespace v8 433 } // namespace v8
438 434
439 #endif // V8_TARGET_ARCH_ARM 435 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/arm64/code-stubs-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698