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

Side by Side Diff: src/s390/interface-descriptors-s390.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/s390/code-stubs-s390.cc ('k') | src/x64/code-stubs-x64.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_S390 5 #if V8_TARGET_ARCH_S390
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 LoadDescriptor::ReceiverRegister() { return r3; } 23 const Register LoadDescriptor::ReceiverRegister() { return r3; }
24 const Register LoadDescriptor::NameRegister() { return r4; } 24 const Register LoadDescriptor::NameRegister() { return r4; }
25 const Register LoadDescriptor::SlotRegister() { return r2; } 25 const Register LoadDescriptor::SlotRegister() { return r2; }
26 26
27 const Register LoadWithVectorDescriptor::VectorRegister() { return r5; } 27 const Register LoadWithVectorDescriptor::VectorRegister() { return r5; }
28 28
29 const Register StoreDescriptor::ReceiverRegister() { return r3; } 29 const Register StoreDescriptor::ReceiverRegister() { return r3; }
30 const Register StoreDescriptor::NameRegister() { return r4; } 30 const Register StoreDescriptor::NameRegister() { return r4; }
31 const Register StoreDescriptor::ValueRegister() { return r2; } 31 const Register StoreDescriptor::ValueRegister() { return r2; }
32 const Register StoreDescriptor::SlotRegister() { return r6; }
32 33
33 const Register VectorStoreICTrampolineDescriptor::SlotRegister() { return r6; } 34 const Register StoreWithVectorDescriptor::VectorRegister() { return r5; }
34
35 const Register VectorStoreICDescriptor::VectorRegister() { return r5; }
36 35
37 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r6; } 36 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r6; }
38 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r5; } 37 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r5; }
39 const Register VectorStoreTransitionDescriptor::MapRegister() { return r7; } 38 const Register VectorStoreTransitionDescriptor::MapRegister() { return r7; }
40 39
41 const Register StoreTransitionDescriptor::MapRegister() { return r5; } 40 const Register StoreTransitionDescriptor::MapRegister() { return r5; }
42 41
43 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r4; } 42 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r4; }
44 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r2; } 43 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r2; }
45 44
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 r3, // the JSGeneratorObject to resume 371 r3, // the JSGeneratorObject to resume
373 r4 // the resume mode (tagged) 372 r4 // the resume mode (tagged)
374 }; 373 };
375 data->InitializePlatformSpecific(arraysize(registers), registers); 374 data->InitializePlatformSpecific(arraysize(registers), registers);
376 } 375 }
377 376
378 } // namespace internal 377 } // namespace internal
379 } // namespace v8 378 } // namespace v8
380 379
381 #endif // V8_TARGET_ARCH_S390 380 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/s390/code-stubs-s390.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698