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

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

Issue 2677163003: WIP: type profiling. (Closed)
Patch Set: Rebaseline. Created 3 years, 10 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/compiler/js-operator.cc ('k') | src/compiler/typer.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 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 V(JSCreateLiteralArray) \ 138 V(JSCreateLiteralArray) \
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(JSStoreGlobal) \ 146 V(JSStoreGlobal) \
147 V(JSStoreDataPropertyInLiteral) \ 147 V(JSStoreDataPropertyInLiteral) \
148 V(JSCollectTypeProfile) \
148 V(JSDeleteProperty) \ 149 V(JSDeleteProperty) \
149 V(JSHasProperty) \ 150 V(JSHasProperty) \
150 V(JSGetSuperConstructor) 151 V(JSGetSuperConstructor)
151 152
152 #define JS_CONTEXT_OP_LIST(V) \ 153 #define JS_CONTEXT_OP_LIST(V) \
153 V(JSLoadContext) \ 154 V(JSLoadContext) \
154 V(JSStoreContext) \ 155 V(JSStoreContext) \
155 V(JSCreateFunctionContext) \ 156 V(JSCreateFunctionContext) \
156 V(JSCreateCatchContext) \ 157 V(JSCreateCatchContext) \
157 V(JSCreateWithContext) \ 158 V(JSCreateWithContext) \
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 } 816 }
816 }; 817 };
817 818
818 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 819 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
819 820
820 } // namespace compiler 821 } // namespace compiler
821 } // namespace internal 822 } // namespace internal
822 } // namespace v8 823 } // namespace v8
823 824
824 #endif // V8_COMPILER_OPCODES_H_ 825 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698