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

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

Issue 1348773002: [turbofan] Call ArgumentsAccessStub to materialize arguments. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 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/arm64/code-stubs-arm64.cc ('k') | src/code-factory.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/arm64/interface-descriptors-arm64.h" 5 #include "src/arm64/interface-descriptors-arm64.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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 54
55 const Register StringCompareDescriptor::LeftRegister() { return x1; } 55 const Register StringCompareDescriptor::LeftRegister() { return x1; }
56 const Register StringCompareDescriptor::RightRegister() { return x0; } 56 const Register StringCompareDescriptor::RightRegister() { return x0; }
57 57
58 58
59 const Register ArgumentsAccessReadDescriptor::index() { return x1; } 59 const Register ArgumentsAccessReadDescriptor::index() { return x1; }
60 const Register ArgumentsAccessReadDescriptor::parameter_count() { return x0; } 60 const Register ArgumentsAccessReadDescriptor::parameter_count() { return x0; }
61 61
62 62
63 const Register ArgumentsAccessNewDescriptor::function() { return x1; }
64 const Register ArgumentsAccessNewDescriptor::parameter_count() { return x2; }
65 const Register ArgumentsAccessNewDescriptor::parameter_pointer() { return x3; }
66
67
63 const Register ApiGetterDescriptor::function_address() { return x2; } 68 const Register ApiGetterDescriptor::function_address() { return x2; }
64 69
65 70
66 const Register MathPowTaggedDescriptor::exponent() { return x11; } 71 const Register MathPowTaggedDescriptor::exponent() { return x11; }
67 72
68 73
69 const Register MathPowIntegerDescriptor::exponent() { return x12; } 74 const Register MathPowIntegerDescriptor::exponent() { return x12; }
70 75
71 76
72 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } 77 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; }
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 x2, // address of first argument 453 x2, // address of first argument
449 x1 // the target callable to be call 454 x1 // the target callable to be call
450 }; 455 };
451 data->InitializePlatformSpecific(arraysize(registers), registers); 456 data->InitializePlatformSpecific(arraysize(registers), registers);
452 } 457 }
453 458
454 } // namespace internal 459 } // namespace internal
455 } // namespace v8 460 } // namespace v8
456 461
457 #endif // V8_TARGET_ARCH_ARM64 462 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/code-factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698