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

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

Issue 609463003: Hydrogenize (and share) part of StoreTransition handler as a StoreTransitionStub. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebasing Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/interface-descriptors-arm.cc ('k') | src/code-stubs.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/v8.h" 5 #include "src/v8.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 11 matching lines...) Expand all
22 22
23 23
24 const Register VectorLoadICDescriptor::VectorRegister() { return x3; } 24 const Register VectorLoadICDescriptor::VectorRegister() { return x3; }
25 25
26 26
27 const Register StoreDescriptor::ReceiverRegister() { return x1; } 27 const Register StoreDescriptor::ReceiverRegister() { return x1; }
28 const Register StoreDescriptor::NameRegister() { return x2; } 28 const Register StoreDescriptor::NameRegister() { return x2; }
29 const Register StoreDescriptor::ValueRegister() { return x0; } 29 const Register StoreDescriptor::ValueRegister() { return x0; }
30 30
31 31
32 const Register ExtendStorageDescriptor::MapRegister() { return x3; } 32 const Register StoreTransitionDescriptor::MapRegister() { return x3; }
33 33
34 34
35 const Register ElementTransitionAndStoreDescriptor::MapRegister() { return x3; } 35 const Register ElementTransitionAndStoreDescriptor::MapRegister() { return x3; }
36 36
37 37
38 const Register InstanceofDescriptor::left() { 38 const Register InstanceofDescriptor::left() {
39 // Object to check (instanceof lhs). 39 // Object to check (instanceof lhs).
40 return x11; 40 return x11;
41 } 41 }
42 42
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 Representation::Tagged(), // holder 362 Representation::Tagged(), // holder
363 Representation::External(), // api_function_address 363 Representation::External(), // api_function_address
364 }; 364 };
365 data->Initialize(arraysize(registers), registers, representations, 365 data->Initialize(arraysize(registers), registers, representations,
366 &default_descriptor); 366 &default_descriptor);
367 } 367 }
368 } 368 }
369 } // namespace v8::internal 369 } // namespace v8::internal
370 370
371 #endif // V8_TARGET_ARCH_ARM64 371 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm/interface-descriptors-arm.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698