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

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

Issue 1029583009: [turbofan] Remove obsolete JSDebugger operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_turbofan-debugger-1
Patch Set: Created 5 years, 9 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 // 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 V(JSCreateWithContext) \ 125 V(JSCreateWithContext) \
126 V(JSCreateBlockContext) \ 126 V(JSCreateBlockContext) \
127 V(JSCreateModuleContext) \ 127 V(JSCreateModuleContext) \
128 V(JSCreateScriptContext) 128 V(JSCreateScriptContext)
129 129
130 #define JS_OTHER_OP_LIST(V) \ 130 #define JS_OTHER_OP_LIST(V) \
131 V(JSCallConstruct) \ 131 V(JSCallConstruct) \
132 V(JSCallFunction) \ 132 V(JSCallFunction) \
133 V(JSCallRuntime) \ 133 V(JSCallRuntime) \
134 V(JSYield) \ 134 V(JSYield) \
135 V(JSDebugger) \
136 V(JSStackCheck) 135 V(JSStackCheck)
137 136
138 #define JS_OP_LIST(V) \ 137 #define JS_OP_LIST(V) \
139 JS_SIMPLE_BINOP_LIST(V) \ 138 JS_SIMPLE_BINOP_LIST(V) \
140 JS_SIMPLE_UNOP_LIST(V) \ 139 JS_SIMPLE_UNOP_LIST(V) \
141 JS_OBJECT_OP_LIST(V) \ 140 JS_OBJECT_OP_LIST(V) \
142 JS_CONTEXT_OP_LIST(V) \ 141 JS_CONTEXT_OP_LIST(V) \
143 JS_OTHER_OP_LIST(V) 142 JS_OTHER_OP_LIST(V)
144 143
145 // Opcodes for VirtuaMachine-level operators. 144 // Opcodes for VirtuaMachine-level operators.
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 332 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
334 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 333 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
335 } 334 }
336 }; 335 };
337 336
338 } // namespace compiler 337 } // namespace compiler
339 } // namespace internal 338 } // namespace internal
340 } // namespace v8 339 } // namespace v8
341 340
342 #endif // V8_COMPILER_OPCODES_H_ 341 #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