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

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

Issue 1424943008: [turbofan] Desugar lookup slot optimization in graph builder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comment. Created 5 years, 1 month 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-typed-lowering.cc ('k') | src/compiler/operator-properties.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 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 V(JSStoreProperty) \ 120 V(JSStoreProperty) \
121 V(JSStoreNamed) \ 121 V(JSStoreNamed) \
122 V(JSStoreGlobal) \ 122 V(JSStoreGlobal) \
123 V(JSDeleteProperty) \ 123 V(JSDeleteProperty) \
124 V(JSHasProperty) \ 124 V(JSHasProperty) \
125 V(JSInstanceOf) 125 V(JSInstanceOf)
126 126
127 #define JS_CONTEXT_OP_LIST(V) \ 127 #define JS_CONTEXT_OP_LIST(V) \
128 V(JSLoadContext) \ 128 V(JSLoadContext) \
129 V(JSStoreContext) \ 129 V(JSStoreContext) \
130 V(JSLoadDynamicGlobal) \ 130 V(JSLoadDynamic) \
131 V(JSLoadDynamicContext) \
132 V(JSCreateFunctionContext) \ 131 V(JSCreateFunctionContext) \
133 V(JSCreateCatchContext) \ 132 V(JSCreateCatchContext) \
134 V(JSCreateWithContext) \ 133 V(JSCreateWithContext) \
135 V(JSCreateBlockContext) \ 134 V(JSCreateBlockContext) \
136 V(JSCreateModuleContext) \ 135 V(JSCreateModuleContext) \
137 V(JSCreateScriptContext) 136 V(JSCreateScriptContext)
138 137
139 #define JS_OTHER_OP_LIST(V) \ 138 #define JS_OTHER_OP_LIST(V) \
140 V(JSCallConstruct) \ 139 V(JSCallConstruct) \
141 V(JSCallFunction) \ 140 V(JSCallFunction) \
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 } 373 }
375 }; 374 };
376 375
377 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 376 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
378 377
379 } // namespace compiler 378 } // namespace compiler
380 } // namespace internal 379 } // namespace internal
381 } // namespace v8 380 } // namespace v8
382 381
383 #endif // V8_COMPILER_OPCODES_H_ 382 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698