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

Side by Side Diff: src/ppc/interface-descriptors-ppc.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/ppc/code-stubs-ppc.cc ('k') | src/s390/code-stubs-s390.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_PPC 5 #if V8_TARGET_ARCH_PPC
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 13 matching lines...) Expand all
24 const Register LoadDescriptor::NameRegister() { return r5; } 24 const Register LoadDescriptor::NameRegister() { return r5; }
25 const Register LoadDescriptor::SlotRegister() { return r3; } 25 const Register LoadDescriptor::SlotRegister() { return r3; }
26 26
27 27
28 const Register LoadWithVectorDescriptor::VectorRegister() { return r6; } 28 const Register LoadWithVectorDescriptor::VectorRegister() { return r6; }
29 29
30 30
31 const Register StoreDescriptor::ReceiverRegister() { return r4; } 31 const Register StoreDescriptor::ReceiverRegister() { return r4; }
32 const Register StoreDescriptor::NameRegister() { return r5; } 32 const Register StoreDescriptor::NameRegister() { return r5; }
33 const Register StoreDescriptor::ValueRegister() { return r3; } 33 const Register StoreDescriptor::ValueRegister() { return r3; }
34 const Register StoreDescriptor::SlotRegister() { return r7; }
34 35
35 36 const Register StoreWithVectorDescriptor::VectorRegister() { return r6; }
36 const Register VectorStoreICTrampolineDescriptor::SlotRegister() { return r7; }
37
38
39 const Register VectorStoreICDescriptor::VectorRegister() { return r6; }
40
41 37
42 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r7; } 38 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r7; }
43 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r6; } 39 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r6; }
44 const Register VectorStoreTransitionDescriptor::MapRegister() { return r8; } 40 const Register VectorStoreTransitionDescriptor::MapRegister() { return r8; }
45 41
46 42
47 const Register StoreTransitionDescriptor::MapRegister() { return r6; } 43 const Register StoreTransitionDescriptor::MapRegister() { return r6; }
48 44
49 45
50 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r5; } 46 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r5; }
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 r3, // the value to pass to the generator 401 r3, // the value to pass to the generator
406 r4, // the JSGeneratorObject to resume 402 r4, // the JSGeneratorObject to resume
407 r5 // the resume mode (tagged) 403 r5 // the resume mode (tagged)
408 }; 404 };
409 data->InitializePlatformSpecific(arraysize(registers), registers); 405 data->InitializePlatformSpecific(arraysize(registers), registers);
410 } 406 }
411 } // namespace internal 407 } // namespace internal
412 } // namespace v8 408 } // namespace v8
413 409
414 #endif // V8_TARGET_ARCH_PPC 410 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « src/ppc/code-stubs-ppc.cc ('k') | src/s390/code-stubs-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698