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

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

Issue 1799893002: S390: Upstream changes from the past 2 weeks (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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/s390/frames-s390.h ('k') | src/s390/macro-assembler-s390.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_S390 5 #if V8_TARGET_ARCH_S390
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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 Register registers[] = {r3, r2}; 262 Register registers[] = {r3, r2};
263 data->InitializePlatformSpecific(arraysize(registers), registers); 263 data->InitializePlatformSpecific(arraysize(registers), registers);
264 } 264 }
265 265
266 void CompareDescriptor::InitializePlatformSpecific( 266 void CompareDescriptor::InitializePlatformSpecific(
267 CallInterfaceDescriptorData* data) { 267 CallInterfaceDescriptorData* data) {
268 Register registers[] = {r3, r2}; 268 Register registers[] = {r3, r2};
269 data->InitializePlatformSpecific(arraysize(registers), registers); 269 data->InitializePlatformSpecific(arraysize(registers), registers);
270 } 270 }
271 271
272 void CompareNilDescriptor::InitializePlatformSpecific(
273 CallInterfaceDescriptorData* data) {
274 Register registers[] = {r2};
275 data->InitializePlatformSpecific(arraysize(registers), registers);
276 }
277
278 void ToBooleanDescriptor::InitializePlatformSpecific( 272 void ToBooleanDescriptor::InitializePlatformSpecific(
279 CallInterfaceDescriptorData* data) { 273 CallInterfaceDescriptorData* data) {
280 Register registers[] = {r2}; 274 Register registers[] = {r2};
281 data->InitializePlatformSpecific(arraysize(registers), registers); 275 data->InitializePlatformSpecific(arraysize(registers), registers);
282 } 276 }
283 277
284 void BinaryOpDescriptor::InitializePlatformSpecific( 278 void BinaryOpDescriptor::InitializePlatformSpecific(
285 CallInterfaceDescriptorData* data) { 279 CallInterfaceDescriptorData* data) {
286 Register registers[] = {r3, r2}; 280 Register registers[] = {r3, r2};
287 data->InitializePlatformSpecific(arraysize(registers), registers); 281 data->InitializePlatformSpecific(arraysize(registers), registers);
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 r4, // address of first argument (argv) 376 r4, // address of first argument (argv)
383 r3 // the runtime function to call 377 r3 // the runtime function to call
384 }; 378 };
385 data->InitializePlatformSpecific(arraysize(registers), registers); 379 data->InitializePlatformSpecific(arraysize(registers), registers);
386 } 380 }
387 381
388 } // namespace internal 382 } // namespace internal
389 } // namespace v8 383 } // namespace v8
390 384
391 #endif // V8_TARGET_ARCH_S390 385 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/s390/frames-s390.h ('k') | src/s390/macro-assembler-s390.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698