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

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

Issue 1894953004: Add HasProperty code stub that tries simple lookups or jumps to runtime otherwise. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebasing Created 4 years, 8 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/ppc/interface-descriptors-ppc.cc ('k') | src/x64/interface-descriptors-x64.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 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 const Register MathPowTaggedDescriptor::exponent() { return r4; } 48 const Register MathPowTaggedDescriptor::exponent() { return r4; }
49 49
50 const Register MathPowIntegerDescriptor::exponent() { 50 const Register MathPowIntegerDescriptor::exponent() {
51 return MathPowTaggedDescriptor::exponent(); 51 return MathPowTaggedDescriptor::exponent();
52 } 52 }
53 53
54 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } 54 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; }
55 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } 55 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; }
56 56
57 const Register HasPropertyDescriptor::ObjectRegister() { return r2; }
58 const Register HasPropertyDescriptor::KeyRegister() { return r5; }
59
57 void FastNewClosureDescriptor::InitializePlatformSpecific( 60 void FastNewClosureDescriptor::InitializePlatformSpecific(
58 CallInterfaceDescriptorData* data) { 61 CallInterfaceDescriptorData* data) {
59 Register registers[] = {r4}; 62 Register registers[] = {r4};
60 data->InitializePlatformSpecific(arraysize(registers), registers); 63 data->InitializePlatformSpecific(arraysize(registers), registers);
61 } 64 }
62 65
63 void FastNewContextDescriptor::InitializePlatformSpecific( 66 void FastNewContextDescriptor::InitializePlatformSpecific(
64 CallInterfaceDescriptorData* data) { 67 CallInterfaceDescriptorData* data) {
65 Register registers[] = {r3}; 68 Register registers[] = {r3};
66 data->InitializePlatformSpecific(arraysize(registers), registers); 69 data->InitializePlatformSpecific(arraysize(registers), registers);
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 r3, // the JSGeneratorObject to resume 383 r3, // the JSGeneratorObject to resume
381 r4 // the resume mode (tagged) 384 r4 // the resume mode (tagged)
382 }; 385 };
383 data->InitializePlatformSpecific(arraysize(registers), registers); 386 data->InitializePlatformSpecific(arraysize(registers), registers);
384 } 387 }
385 388
386 } // namespace internal 389 } // namespace internal
387 } // namespace v8 390 } // namespace v8
388 391
389 #endif // V8_TARGET_ARCH_S390 392 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/ppc/interface-descriptors-ppc.cc ('k') | src/x64/interface-descriptors-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698