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

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

Issue 1155103004: [turbofan] New operator for loads of DYNAMIC_[GLOBAL,LOCAL]. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments. Created 5 years, 6 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/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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 V(JSLoadNamed) \ 116 V(JSLoadNamed) \
117 V(JSStoreProperty) \ 117 V(JSStoreProperty) \
118 V(JSStoreNamed) \ 118 V(JSStoreNamed) \
119 V(JSDeleteProperty) \ 119 V(JSDeleteProperty) \
120 V(JSHasProperty) \ 120 V(JSHasProperty) \
121 V(JSInstanceOf) 121 V(JSInstanceOf)
122 122
123 #define JS_CONTEXT_OP_LIST(V) \ 123 #define JS_CONTEXT_OP_LIST(V) \
124 V(JSLoadContext) \ 124 V(JSLoadContext) \
125 V(JSStoreContext) \ 125 V(JSStoreContext) \
126 V(JSLoadDynamicGlobal) \
127 V(JSLoadDynamicContext) \
126 V(JSCreateFunctionContext) \ 128 V(JSCreateFunctionContext) \
127 V(JSCreateCatchContext) \ 129 V(JSCreateCatchContext) \
128 V(JSCreateWithContext) \ 130 V(JSCreateWithContext) \
129 V(JSCreateBlockContext) \ 131 V(JSCreateBlockContext) \
130 V(JSCreateModuleContext) \ 132 V(JSCreateModuleContext) \
131 V(JSCreateScriptContext) 133 V(JSCreateScriptContext)
132 134
133 #define JS_OTHER_OP_LIST(V) \ 135 #define JS_OTHER_OP_LIST(V) \
134 V(JSCallConstruct) \ 136 V(JSCallConstruct) \
135 V(JSCallFunction) \ 137 V(JSCallFunction) \
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 } 352 }
351 }; 353 };
352 354
353 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 355 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
354 356
355 } // namespace compiler 357 } // namespace compiler
356 } // namespace internal 358 } // namespace internal
357 } // namespace v8 359 } // namespace v8
358 360
359 #endif // V8_COMPILER_OPCODES_H_ 361 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-operator.cc ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698