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

Side by Side Diff: src/counters.h

Issue 2548753003: [ic] Ensure state of load/store ICs always progresses. (Closed)
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/ic/ic.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 #ifndef V8_COUNTERS_H_ 5 #ifndef V8_COUNTERS_H_
6 #define V8_COUNTERS_H_ 6 #define V8_COUNTERS_H_
7 7
8 #include "include/v8.h" 8 #include "include/v8.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/base/atomic-utils.h" 10 #include "src/base/atomic-utils.h"
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 V(LoadIC_LoadFieldFromPrototypeDH) \ 776 V(LoadIC_LoadFieldFromPrototypeDH) \
777 V(LoadIC_LoadField) \ 777 V(LoadIC_LoadField) \
778 V(LoadIC_LoadFieldStub) \ 778 V(LoadIC_LoadFieldStub) \
779 V(LoadIC_LoadGlobal) \ 779 V(LoadIC_LoadGlobal) \
780 V(LoadIC_LoadInterceptor) \ 780 V(LoadIC_LoadInterceptor) \
781 V(LoadIC_LoadNonexistentDH) \ 781 V(LoadIC_LoadNonexistentDH) \
782 V(LoadIC_LoadNonexistent) \ 782 V(LoadIC_LoadNonexistent) \
783 V(LoadIC_LoadNormal) \ 783 V(LoadIC_LoadNormal) \
784 V(LoadIC_LoadScriptContextFieldStub) \ 784 V(LoadIC_LoadScriptContextFieldStub) \
785 V(LoadIC_LoadViaGetter) \ 785 V(LoadIC_LoadViaGetter) \
786 V(LoadIC_NonReceiver) \
786 V(LoadIC_Premonomorphic) \ 787 V(LoadIC_Premonomorphic) \
787 V(LoadIC_SlowStub) \ 788 V(LoadIC_SlowStub) \
788 V(LoadIC_StringLengthStub) \ 789 V(LoadIC_StringLengthStub) \
789 V(StoreIC_HandlerCacheHit_AccessCheck) \ 790 V(StoreIC_HandlerCacheHit_AccessCheck) \
790 V(StoreIC_HandlerCacheHit_Exotic) \ 791 V(StoreIC_HandlerCacheHit_Exotic) \
791 V(StoreIC_HandlerCacheHit_Interceptor) \ 792 V(StoreIC_HandlerCacheHit_Interceptor) \
792 V(StoreIC_HandlerCacheHit_JSProxy) \ 793 V(StoreIC_HandlerCacheHit_JSProxy) \
793 V(StoreIC_HandlerCacheHit_NonExistent) \ 794 V(StoreIC_HandlerCacheHit_NonExistent) \
794 V(StoreIC_HandlerCacheHit_Accessor) \ 795 V(StoreIC_HandlerCacheHit_Accessor) \
795 V(StoreIC_HandlerCacheHit_Data) \ 796 V(StoreIC_HandlerCacheHit_Data) \
796 V(StoreIC_HandlerCacheHit_Transition) \ 797 V(StoreIC_HandlerCacheHit_Transition) \
798 V(StoreIC_NonReceiver) \
797 V(StoreIC_Premonomorphic) \ 799 V(StoreIC_Premonomorphic) \
798 V(StoreIC_SlowStub) \ 800 V(StoreIC_SlowStub) \
799 V(StoreIC_StoreCallback) \ 801 V(StoreIC_StoreCallback) \
800 V(StoreIC_StoreField) \ 802 V(StoreIC_StoreField) \
801 V(StoreIC_StoreFieldDH) \ 803 V(StoreIC_StoreFieldDH) \
802 V(StoreIC_StoreFieldStub) \ 804 V(StoreIC_StoreFieldStub) \
803 V(StoreIC_StoreGlobal) \ 805 V(StoreIC_StoreGlobal) \
804 V(StoreIC_StoreGlobalTransition) \ 806 V(StoreIC_StoreGlobalTransition) \
805 V(StoreIC_StoreInterceptorStub) \ 807 V(StoreIC_StoreInterceptorStub) \
806 V(StoreIC_StoreNormal) \ 808 V(StoreIC_StoreNormal) \
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 1326
1325 explicit Counters(Isolate* isolate); 1327 explicit Counters(Isolate* isolate);
1326 1328
1327 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1329 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1328 }; 1330 };
1329 1331
1330 } // namespace internal 1332 } // namespace internal
1331 } // namespace v8 1333 } // namespace v8
1332 1334
1333 #endif // V8_COUNTERS_H_ 1335 #endif // V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « no previous file | src/ic/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698