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

Side by Side Diff: src/interface-descriptors.h

Issue 871063002: Use a trampoline stub to load the type feedback vector for CallICs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ports. Created 5 years, 11 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/ic/ic.cc ('k') | src/x64/code-stubs-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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #ifndef V8_CALL_INTERFACE_DESCRIPTOR_H_ 5 #ifndef V8_CALL_INTERFACE_DESCRIPTOR_H_
6 #define V8_CALL_INTERFACE_DESCRIPTOR_H_ 6 #define V8_CALL_INTERFACE_DESCRIPTOR_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/macro-assembler.h" 9 #include "src/macro-assembler.h"
10 10
(...skipping 12 matching lines...) Expand all
23 V(VectorLoadIC) \ 23 V(VectorLoadIC) \
24 V(FastNewClosure) \ 24 V(FastNewClosure) \
25 V(FastNewContext) \ 25 V(FastNewContext) \
26 V(ToNumber) \ 26 V(ToNumber) \
27 V(NumberToString) \ 27 V(NumberToString) \
28 V(FastCloneShallowArray) \ 28 V(FastCloneShallowArray) \
29 V(FastCloneShallowObject) \ 29 V(FastCloneShallowObject) \
30 V(CreateAllocationSite) \ 30 V(CreateAllocationSite) \
31 V(CallFunction) \ 31 V(CallFunction) \
32 V(CallFunctionWithFeedback) \ 32 V(CallFunctionWithFeedback) \
33 V(CallFunctionWithFeedbackAndVector) \
33 V(CallConstruct) \ 34 V(CallConstruct) \
34 V(RegExpConstructResult) \ 35 V(RegExpConstructResult) \
35 V(TransitionElementsKind) \ 36 V(TransitionElementsKind) \
36 V(AllocateHeapNumber) \ 37 V(AllocateHeapNumber) \
37 V(ArrayConstructorConstantArgCount) \ 38 V(ArrayConstructorConstantArgCount) \
38 V(ArrayConstructor) \ 39 V(ArrayConstructor) \
39 V(InternalArrayConstructorConstantArgCount) \ 40 V(InternalArrayConstructorConstantArgCount) \
40 V(InternalArrayConstructor) \ 41 V(InternalArrayConstructor) \
41 V(CompareNil) \ 42 V(CompareNil) \
42 V(ToBoolean) \ 43 V(ToBoolean) \
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 }; 324 };
324 325
325 326
326 class CallFunctionWithFeedbackDescriptor : public CallInterfaceDescriptor { 327 class CallFunctionWithFeedbackDescriptor : public CallInterfaceDescriptor {
327 public: 328 public:
328 DECLARE_DESCRIPTOR(CallFunctionWithFeedbackDescriptor, 329 DECLARE_DESCRIPTOR(CallFunctionWithFeedbackDescriptor,
329 CallInterfaceDescriptor) 330 CallInterfaceDescriptor)
330 }; 331 };
331 332
332 333
334 class CallFunctionWithFeedbackAndVectorDescriptor
335 : public CallInterfaceDescriptor {
336 public:
337 DECLARE_DESCRIPTOR(CallFunctionWithFeedbackAndVectorDescriptor,
338 CallInterfaceDescriptor)
339 };
340
341
333 class CallConstructDescriptor : public CallInterfaceDescriptor { 342 class CallConstructDescriptor : public CallInterfaceDescriptor {
334 public: 343 public:
335 DECLARE_DESCRIPTOR(CallConstructDescriptor, CallInterfaceDescriptor) 344 DECLARE_DESCRIPTOR(CallConstructDescriptor, CallInterfaceDescriptor)
336 }; 345 };
337 346
338 347
339 class RegExpConstructResultDescriptor : public CallInterfaceDescriptor { 348 class RegExpConstructResultDescriptor : public CallInterfaceDescriptor {
340 public: 349 public:
341 DECLARE_DESCRIPTOR(RegExpConstructResultDescriptor, CallInterfaceDescriptor) 350 DECLARE_DESCRIPTOR(RegExpConstructResultDescriptor, CallInterfaceDescriptor)
342 }; 351 };
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 } // namespace v8::internal 517 } // namespace v8::internal
509 518
510 519
511 #if V8_TARGET_ARCH_ARM64 520 #if V8_TARGET_ARCH_ARM64
512 #include "src/arm64/interface-descriptors-arm64.h" 521 #include "src/arm64/interface-descriptors-arm64.h"
513 #elif V8_TARGET_ARCH_ARM 522 #elif V8_TARGET_ARCH_ARM
514 #include "src/arm/interface-descriptors-arm.h" 523 #include "src/arm/interface-descriptors-arm.h"
515 #endif 524 #endif
516 525
517 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ 526 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_
OLDNEW
« no previous file with comments | « src/ic/ic.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698