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

Unified Diff: src/runtime/runtime.h

Issue 1553703002: [runtime] TailCallRuntime and CallRuntime should use default argument counts (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2015-12-29_TailCallRuntime_default_result_size_1_1550923002
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: src/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index a714a51ce53eaf99267549c7f6638df1c09b9f25..4aae2b501aa663bae2441c3527498d3e7f74d70f 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -1027,29 +1027,29 @@ namespace internal {
// Most intrinsics are implemented in the runtime/ directory, but ICs are
// implemented in ic.cc for now.
#define FOR_EACH_INTRINSIC_IC(F) \
- F(LoadIC_Miss, 3, 1) \
- F(KeyedLoadIC_Miss, 3, 1) \
+ F(BinaryOpIC_Miss, 2, 1) \
+ F(BinaryOpIC_MissWithAllocationSite, 3, 1) \
F(CallIC_Miss, 3, 1) \
- F(StoreIC_Miss, 3, 1) \
- F(StoreIC_Slow, 3, 1) \
- F(KeyedStoreIC_Miss, 3, 1) \
- F(KeyedStoreIC_Slow, 3, 1) \
- F(StoreCallbackProperty, 5, 1) \
- F(LoadPropertyWithInterceptorOnly, 3, 1) \
- F(LoadPropertyWithInterceptor, 3, 1) \
- F(LoadElementWithInterceptor, 2, 1) \
- F(StorePropertyWithInterceptor, 3, 1) \
F(CompareIC_Miss, 3, 1) \
- F(BinaryOpIC_Miss, 2, 1) \
F(CompareNilIC_Miss, 1, 1) \
- F(Unreachable, 0, 1) \
- F(ToBooleanIC_Miss, 1, 1) \
+ F(ElementsTransitionAndStoreIC_Miss, 5, 1) \
+ F(KeyedLoadIC_Miss, 4, 1) \
F(KeyedLoadIC_MissFromStubFailure, 4, 1) \
- F(KeyedStoreIC_MissFromStubFailure, 3, 1) \
- F(StoreIC_MissFromStubFailure, 3, 1) \
- F(ElementsTransitionAndStoreIC_Miss, 4, 1) \
- F(BinaryOpIC_MissWithAllocationSite, 3, 1) \
- F(LoadIC_MissFromStubFailure, 0, 1)
Camillo Bruni 2015/12/30 13:31:47 Updated some default argument counts + sorted the
+ F(KeyedStoreIC_Miss, 5, 1) \
+ F(KeyedStoreIC_MissFromStubFailure, 5, 1) \
+ F(KeyedStoreIC_Slow, 5, 1) \
+ F(LoadElementWithInterceptor, 2, 1) \
+ F(LoadIC_Miss, 4, 1) \
+ F(LoadIC_MissFromStubFailure, 4, 1) \
+ F(LoadPropertyWithInterceptor, 3, 1) \
+ F(LoadPropertyWithInterceptorOnly, 3, 1) \
+ F(StoreCallbackProperty, 5, 1) \
+ F(StoreIC_Miss, 5, 1) \
+ F(StoreIC_MissFromStubFailure, 5, 1) \
+ F(StoreIC_Slow, 5, 1) \
+ F(StorePropertyWithInterceptor, 3, 1) \
+ F(ToBooleanIC_Miss, 1, 1) \
+ F(Unreachable, 0, 1)
#define FOR_EACH_INTRINSIC_RETURN_OBJECT(F) \

Powered by Google App Engine
This is Rietveld 408576698