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

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

Issue 621833003: Implement inlined stack-check guards in TurboFan. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/simplified-lowering.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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 V(TruncateFloat64ToInt32) \ 215 V(TruncateFloat64ToInt32) \
216 V(TruncateInt64ToInt32) \ 216 V(TruncateInt64ToInt32) \
217 V(Float64Add) \ 217 V(Float64Add) \
218 V(Float64Sub) \ 218 V(Float64Sub) \
219 V(Float64Mul) \ 219 V(Float64Mul) \
220 V(Float64Div) \ 220 V(Float64Div) \
221 V(Float64Mod) \ 221 V(Float64Mod) \
222 V(Float64Sqrt) \ 222 V(Float64Sqrt) \
223 V(Float64Equal) \ 223 V(Float64Equal) \
224 V(Float64LessThan) \ 224 V(Float64LessThan) \
225 V(Float64LessThanOrEqual) 225 V(Float64LessThanOrEqual) \
226 V(LoadStackPointer)
226 227
227 #define VALUE_OP_LIST(V) \ 228 #define VALUE_OP_LIST(V) \
228 COMMON_OP_LIST(V) \ 229 COMMON_OP_LIST(V) \
229 SIMPLIFIED_OP_LIST(V) \ 230 SIMPLIFIED_OP_LIST(V) \
230 MACHINE_OP_LIST(V) \ 231 MACHINE_OP_LIST(V) \
231 JS_OP_LIST(V) 232 JS_OP_LIST(V)
232 233
233 // The combination of all operators at all levels and the common operators. 234 // The combination of all operators at all levels and the common operators.
234 #define ALL_OP_LIST(V) \ 235 #define ALL_OP_LIST(V) \
235 CONTROL_OP_LIST(V) \ 236 CONTROL_OP_LIST(V) \
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 return false; 315 return false;
315 } 316 }
316 } 317 }
317 }; 318 };
318 319
319 } // namespace compiler 320 } // namespace compiler
320 } // namespace internal 321 } // namespace internal
321 } // namespace v8 322 } // namespace v8
322 323
323 #endif // V8_COMPILER_OPCODES_H_ 324 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698