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

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

Issue 2065113002: [ic] LoadGlobalIC caches PropertyCells in the feedback vector. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebasing Created 4 years, 6 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/builtins.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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 43
44 const Register VectorStoreTransitionDescriptor::SlotRegister() { return x4; } 44 const Register VectorStoreTransitionDescriptor::SlotRegister() { return x4; }
45 const Register VectorStoreTransitionDescriptor::VectorRegister() { return x3; } 45 const Register VectorStoreTransitionDescriptor::VectorRegister() { return x3; }
46 const Register VectorStoreTransitionDescriptor::MapRegister() { return x5; } 46 const Register VectorStoreTransitionDescriptor::MapRegister() { return x5; }
47 47
48 48
49 const Register StoreTransitionDescriptor::MapRegister() { return x3; } 49 const Register StoreTransitionDescriptor::MapRegister() { return x3; }
50 50
51 51
52 const Register LoadGlobalViaContextDescriptor::SlotRegister() { return x2; }
53
54
55 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; } 52 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return x2; }
56 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return x0; } 53 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return x0; }
57 54
58 55
59 const Register StringCompareDescriptor::LeftRegister() { return x1; } 56 const Register StringCompareDescriptor::LeftRegister() { return x1; }
60 const Register StringCompareDescriptor::RightRegister() { return x0; } 57 const Register StringCompareDescriptor::RightRegister() { return x0; }
61 58
62 const Register ApiGetterDescriptor::HolderRegister() { return x0; } 59 const Register ApiGetterDescriptor::HolderRegister() { return x0; }
63 const Register ApiGetterDescriptor::CallbackRegister() { return x3; } 60 const Register ApiGetterDescriptor::CallbackRegister() { return x3; }
64 61
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 x1, // the JSGeneratorObject to resume 464 x1, // the JSGeneratorObject to resume
468 x2 // the resume mode (tagged) 465 x2 // the resume mode (tagged)
469 }; 466 };
470 data->InitializePlatformSpecific(arraysize(registers), registers); 467 data->InitializePlatformSpecific(arraysize(registers), registers);
471 } 468 }
472 469
473 } // namespace internal 470 } // namespace internal
474 } // namespace v8 471 } // namespace v8
475 472
476 #endif // V8_TARGET_ARCH_ARM64 473 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/builtins.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698