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

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

Issue 2669123002: [stubs] Port CallICTrampolineStub to CodeStubAssembler. (Closed)
Patch Set: Fix the CSA verifier issue. Created 3 years, 10 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-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/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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 void CallFunctionDescriptor::InitializePlatformSpecific( 159 void CallFunctionDescriptor::InitializePlatformSpecific(
160 CallInterfaceDescriptorData* data) { 160 CallInterfaceDescriptorData* data) {
161 // x1 function the function to call 161 // x1 function the function to call
162 Register registers[] = {x1}; 162 Register registers[] = {x1};
163 data->InitializePlatformSpecific(arraysize(registers), registers); 163 data->InitializePlatformSpecific(arraysize(registers), registers);
164 } 164 }
165 165
166 166
167 void CallFunctionWithFeedbackDescriptor::InitializePlatformSpecific( 167 void CallFunctionWithFeedbackDescriptor::InitializePlatformSpecific(
168 CallInterfaceDescriptorData* data) { 168 CallInterfaceDescriptorData* data) {
169 Register registers[] = {x1, x3}; 169 Register registers[] = {x1, x0, x3};
170 data->InitializePlatformSpecific(arraysize(registers), registers); 170 data->InitializePlatformSpecific(arraysize(registers), registers);
171 } 171 }
172 172
173 173
174 void CallFunctionWithFeedbackAndVectorDescriptor::InitializePlatformSpecific( 174 void CallFunctionWithFeedbackAndVectorDescriptor::InitializePlatformSpecific(
175 CallInterfaceDescriptorData* data) { 175 CallInterfaceDescriptorData* data) {
176 Register registers[] = {x1, x0, x3, x2}; 176 Register registers[] = {x1, x0, x3, x2};
177 data->InitializePlatformSpecific(arraysize(registers), registers); 177 data->InitializePlatformSpecific(arraysize(registers), registers);
178 } 178 }
179 179
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 Register registers[] = { 473 Register registers[] = {
474 x1, // loaded new FP 474 x1, // loaded new FP
475 }; 475 };
476 data->InitializePlatformSpecific(arraysize(registers), registers); 476 data->InitializePlatformSpecific(arraysize(registers), registers);
477 } 477 }
478 478
479 } // namespace internal 479 } // namespace internal
480 } // namespace v8 480 } // namespace v8
481 481
482 #endif // V8_TARGET_ARCH_ARM64 482 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698