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

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

Issue 1980483003: [es6] Reintroduce the instanceof operator in the backends. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Igors comments. Created 4 years, 7 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/code-stubs-arm.cc ('k') | src/arm64/builtins-arm64.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/arm/interface-descriptors-arm.h" 5 #include "src/arm/interface-descriptors-arm.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_ARM
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 30 matching lines...) Expand all
41 const Register StoreTransitionDescriptor::MapRegister() { return r3; } 41 const Register StoreTransitionDescriptor::MapRegister() { return r3; }
42 42
43 43
44 const Register LoadGlobalViaContextDescriptor::SlotRegister() { return r2; } 44 const Register LoadGlobalViaContextDescriptor::SlotRegister() { return r2; }
45 45
46 46
47 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; } 47 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r2; }
48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r0; } 48 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r0; }
49 49
50 50
51 const Register InstanceOfDescriptor::LeftRegister() { return r1; }
52 const Register InstanceOfDescriptor::RightRegister() { return r0; }
53
54
55 const Register StringCompareDescriptor::LeftRegister() { return r1; } 51 const Register StringCompareDescriptor::LeftRegister() { return r1; }
56 const Register StringCompareDescriptor::RightRegister() { return r0; } 52 const Register StringCompareDescriptor::RightRegister() { return r0; }
57 53
58 const Register ApiGetterDescriptor::HolderRegister() { return r0; } 54 const Register ApiGetterDescriptor::HolderRegister() { return r0; }
59 const Register ApiGetterDescriptor::CallbackRegister() { return r3; } 55 const Register ApiGetterDescriptor::CallbackRegister() { return r3; }
60 56
61 const Register MathPowTaggedDescriptor::exponent() { return r2; } 57 const Register MathPowTaggedDescriptor::exponent() { return r2; }
62 58
63 59
64 const Register MathPowIntegerDescriptor::exponent() { 60 const Register MathPowIntegerDescriptor::exponent() {
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 r1, // the JSGeneratorObject to resume 446 r1, // the JSGeneratorObject to resume
451 r2 // the resume mode (tagged) 447 r2 // the resume mode (tagged)
452 }; 448 };
453 data->InitializePlatformSpecific(arraysize(registers), registers); 449 data->InitializePlatformSpecific(arraysize(registers), registers);
454 } 450 }
455 451
456 } // namespace internal 452 } // namespace internal
457 } // namespace v8 453 } // namespace v8
458 454
459 #endif // V8_TARGET_ARCH_ARM 455 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/arm64/builtins-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698