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

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

Issue 2313093002: [stubs] Port StoreTransitionStub and ElementsTransitionAndStoreStub to TurboFan. (Closed)
Patch Set: Addressing comments Created 4 years, 3 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 24 matching lines...) Expand all
35 const Register LoadWithVectorDescriptor::VectorRegister() { return r3; } 35 const Register LoadWithVectorDescriptor::VectorRegister() { return r3; }
36 36
37 37
38 const Register StoreDescriptor::ReceiverRegister() { return r1; } 38 const Register StoreDescriptor::ReceiverRegister() { return r1; }
39 const Register StoreDescriptor::NameRegister() { return r2; } 39 const Register StoreDescriptor::NameRegister() { return r2; }
40 const Register StoreDescriptor::ValueRegister() { return r0; } 40 const Register StoreDescriptor::ValueRegister() { return r0; }
41 const Register StoreDescriptor::SlotRegister() { return r4; } 41 const Register StoreDescriptor::SlotRegister() { return r4; }
42 42
43 const Register StoreWithVectorDescriptor::VectorRegister() { return r3; } 43 const Register StoreWithVectorDescriptor::VectorRegister() { return r3; }
44 44
45 const Register VectorStoreTransitionDescriptor::SlotRegister() { return r4; } 45 const Register StoreTransitionDescriptor::SlotRegister() { return r4; }
46 const Register VectorStoreTransitionDescriptor::VectorRegister() { return r3; } 46 const Register StoreTransitionDescriptor::VectorRegister() { return r3; }
47 const Register VectorStoreTransitionDescriptor::MapRegister() { return r5; } 47 const Register StoreTransitionDescriptor::MapRegister() { return r5; }
48
49
50 const Register StoreTransitionDescriptor::MapRegister() { return r3; }
51
52 48
53 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; } 49 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; }
54 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r0; } 50 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r0; }
55 51
56 52
57 const Register StringCompareDescriptor::LeftRegister() { return r1; } 53 const Register StringCompareDescriptor::LeftRegister() { return r1; }
58 const Register StringCompareDescriptor::RightRegister() { return r0; } 54 const Register StringCompareDescriptor::RightRegister() { return r0; }
59 55
60 const Register ApiGetterDescriptor::HolderRegister() { return r0; } 56 const Register ApiGetterDescriptor::HolderRegister() { return r0; }
61 const Register ApiGetterDescriptor::CallbackRegister() { return r3; } 57 const Register ApiGetterDescriptor::CallbackRegister() { return r3; }
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 r1, // the JSGeneratorObject to resume 444 r1, // the JSGeneratorObject to resume
449 r2 // the resume mode (tagged) 445 r2 // the resume mode (tagged)
450 }; 446 };
451 data->InitializePlatformSpecific(arraysize(registers), registers); 447 data->InitializePlatformSpecific(arraysize(registers), registers);
452 } 448 }
453 449
454 } // namespace internal 450 } // namespace internal
455 } // namespace v8 451 } // namespace v8
456 452
457 #endif // V8_TARGET_ARCH_ARM 453 #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