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

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

Issue 2081733004: Rip out most of our outdated modules implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 years, 5 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/node-properties.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 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 V(JSHasProperty) \ 130 V(JSHasProperty) \
131 V(JSInstanceOf) 131 V(JSInstanceOf)
132 132
133 #define JS_CONTEXT_OP_LIST(V) \ 133 #define JS_CONTEXT_OP_LIST(V) \
134 V(JSLoadContext) \ 134 V(JSLoadContext) \
135 V(JSStoreContext) \ 135 V(JSStoreContext) \
136 V(JSCreateFunctionContext) \ 136 V(JSCreateFunctionContext) \
137 V(JSCreateCatchContext) \ 137 V(JSCreateCatchContext) \
138 V(JSCreateWithContext) \ 138 V(JSCreateWithContext) \
139 V(JSCreateBlockContext) \ 139 V(JSCreateBlockContext) \
140 V(JSCreateModuleContext) \
141 V(JSCreateScriptContext) 140 V(JSCreateScriptContext)
142 141
143 #define JS_OTHER_OP_LIST(V) \ 142 #define JS_OTHER_OP_LIST(V) \
144 V(JSCallConstruct) \ 143 V(JSCallConstruct) \
145 V(JSCallFunction) \ 144 V(JSCallFunction) \
146 V(JSCallRuntime) \ 145 V(JSCallRuntime) \
147 V(JSConvertReceiver) \ 146 V(JSConvertReceiver) \
148 V(JSForInDone) \ 147 V(JSForInDone) \
149 V(JSForInNext) \ 148 V(JSForInNext) \
150 V(JSForInPrepare) \ 149 V(JSForInPrepare) \
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 } 685 }
687 }; 686 };
688 687
689 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 688 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
690 689
691 } // namespace compiler 690 } // namespace compiler
692 } // namespace internal 691 } // namespace internal
693 } // namespace v8 692 } // namespace v8
694 693
695 #endif // V8_COMPILER_OPCODES_H_ 694 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/node-properties.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698