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

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

Issue 716833002: Various clean-ups after top-level lexical declarations are done. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Patch for landing Created 6 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 | Annotate | Revision Log
« 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 // Opcodes for control operators. 8 // Opcodes for control operators.
9 #define INNER_CONTROL_OP_LIST(V) \ 9 #define INNER_CONTROL_OP_LIST(V) \
10 V(Dead) \ 10 V(Dead) \
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 V(JSInstanceOf) 107 V(JSInstanceOf)
108 108
109 #define JS_CONTEXT_OP_LIST(V) \ 109 #define JS_CONTEXT_OP_LIST(V) \
110 V(JSLoadContext) \ 110 V(JSLoadContext) \
111 V(JSStoreContext) \ 111 V(JSStoreContext) \
112 V(JSCreateFunctionContext) \ 112 V(JSCreateFunctionContext) \
113 V(JSCreateCatchContext) \ 113 V(JSCreateCatchContext) \
114 V(JSCreateWithContext) \ 114 V(JSCreateWithContext) \
115 V(JSCreateBlockContext) \ 115 V(JSCreateBlockContext) \
116 V(JSCreateModuleContext) \ 116 V(JSCreateModuleContext) \
117 V(JSCreateGlobalContext) 117 V(JSCreateScriptContext)
118 118
119 #define JS_OTHER_OP_LIST(V) \ 119 #define JS_OTHER_OP_LIST(V) \
120 V(JSCallConstruct) \ 120 V(JSCallConstruct) \
121 V(JSCallFunction) \ 121 V(JSCallFunction) \
122 V(JSCallRuntime) \ 122 V(JSCallRuntime) \
123 V(JSYield) \ 123 V(JSYield) \
124 V(JSDebugger) 124 V(JSDebugger)
125 125
126 #define JS_OP_LIST(V) \ 126 #define JS_OP_LIST(V) \
127 JS_SIMPLE_BINOP_LIST(V) \ 127 JS_SIMPLE_BINOP_LIST(V) \
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 return false; 329 return false;
330 } 330 }
331 } 331 }
332 }; 332 };
333 333
334 } // namespace compiler 334 } // namespace compiler
335 } // namespace internal 335 } // namespace internal
336 } // namespace v8 336 } // namespace v8
337 337
338 #endif // V8_COMPILER_OPCODES_H_ 338 #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