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

Side by Side Diff: src/arm64/interface-descriptors-arm64.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/arm/interface-descriptors-arm.cc ('k') | src/builtins.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 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 const Register MathPowTaggedDescriptor::exponent() { return x11; } 61 const Register MathPowTaggedDescriptor::exponent() { return x11; }
62 62
63 63
64 const Register MathPowIntegerDescriptor::exponent() { return x12; } 64 const Register MathPowIntegerDescriptor::exponent() { return x12; }
65 65
66 66
67 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } 67 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; }
68 const Register GrowArrayElementsDescriptor::KeyRegister() { return x3; } 68 const Register GrowArrayElementsDescriptor::KeyRegister() { return x3; }
69 69
70 const Register HasPropertyDescriptor::ObjectRegister() { return x0; }
71 const Register HasPropertyDescriptor::KeyRegister() { return x3; }
70 72
71 void FastNewClosureDescriptor::InitializePlatformSpecific( 73 void FastNewClosureDescriptor::InitializePlatformSpecific(
72 CallInterfaceDescriptorData* data) { 74 CallInterfaceDescriptorData* data) {
73 // x2: function info 75 // x2: function info
74 Register registers[] = {x2}; 76 Register registers[] = {x2};
75 data->InitializePlatformSpecific(arraysize(registers), registers); 77 data->InitializePlatformSpecific(arraysize(registers), registers);
76 } 78 }
77 79
78 80
79 void FastNewContextDescriptor::InitializePlatformSpecific( 81 void FastNewContextDescriptor::InitializePlatformSpecific(
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 x1, // the JSGeneratorObject to resume 479 x1, // the JSGeneratorObject to resume
478 x2 // the resume mode (tagged) 480 x2 // the resume mode (tagged)
479 }; 481 };
480 data->InitializePlatformSpecific(arraysize(registers), registers); 482 data->InitializePlatformSpecific(arraysize(registers), registers);
481 } 483 }
482 484
483 } // namespace internal 485 } // namespace internal
484 } // namespace v8 486 } // namespace v8
485 487
486 #endif // V8_TARGET_ARCH_ARM64 488 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm/interface-descriptors-arm.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698