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

Side by Side Diff: src/compiler/opcodes.h

Issue 2707873002: Collect type profile for DevTools. (Closed)
Patch Set: Add documentation and sprinkle consts around. Created 3 years, 9 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_COMPILER_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 V(JSCreateLiteralObject) \ 139 V(JSCreateLiteralObject) \
140 V(JSCreateLiteralRegExp) \ 140 V(JSCreateLiteralRegExp) \
141 V(JSLoadProperty) \ 141 V(JSLoadProperty) \
142 V(JSLoadNamed) \ 142 V(JSLoadNamed) \
143 V(JSLoadGlobal) \ 143 V(JSLoadGlobal) \
144 V(JSStoreProperty) \ 144 V(JSStoreProperty) \
145 V(JSStoreNamed) \ 145 V(JSStoreNamed) \
146 V(JSStoreNamedOwn) \ 146 V(JSStoreNamedOwn) \
147 V(JSStoreGlobal) \ 147 V(JSStoreGlobal) \
148 V(JSStoreDataPropertyInLiteral) \ 148 V(JSStoreDataPropertyInLiteral) \
149 V(JSCollectTypeProfile) \
149 V(JSDeleteProperty) \ 150 V(JSDeleteProperty) \
150 V(JSHasProperty) \ 151 V(JSHasProperty) \
151 V(JSGetSuperConstructor) 152 V(JSGetSuperConstructor)
152 153
153 #define JS_CONTEXT_OP_LIST(V) \ 154 #define JS_CONTEXT_OP_LIST(V) \
154 V(JSLoadContext) \ 155 V(JSLoadContext) \
155 V(JSStoreContext) \ 156 V(JSStoreContext) \
156 V(JSCreateFunctionContext) \ 157 V(JSCreateFunctionContext) \
157 V(JSCreateCatchContext) \ 158 V(JSCreateCatchContext) \
158 V(JSCreateWithContext) \ 159 V(JSCreateWithContext) \
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 } 790 }
790 }; 791 };
791 792
792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 793 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
793 794
794 } // namespace compiler 795 } // namespace compiler
795 } // namespace internal 796 } // namespace internal
796 } // namespace v8 797 } // namespace v8
797 798
798 #endif // V8_COMPILER_OPCODES_H_ 799 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698