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

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

Issue 481903002: [turbofan] Support lowering of ChangeFloat64ToTagged/ChangeTaggedToInt32. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: GCC fix...again Created 6 years, 4 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/common-operator.h ('k') | src/compiler/operator-properties-inl.h » ('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 CONTROL_OP_LIST(V) \ 9 #define CONTROL_OP_LIST(V) \
10 V(Start) \ 10 V(Start) \
(...skipping 16 matching lines...) Expand all
27 V(Int64Constant) \ 27 V(Int64Constant) \
28 V(Float64Constant) \ 28 V(Float64Constant) \
29 V(ExternalConstant) \ 29 V(ExternalConstant) \
30 V(NumberConstant) \ 30 V(NumberConstant) \
31 V(HeapConstant) 31 V(HeapConstant)
32 32
33 #define INNER_OP_LIST(V) \ 33 #define INNER_OP_LIST(V) \
34 V(Phi) \ 34 V(Phi) \
35 V(EffectPhi) \ 35 V(EffectPhi) \
36 V(ControlEffect) \ 36 V(ControlEffect) \
37 V(ValueEffect) \
37 V(Finish) \ 38 V(Finish) \
38 V(FrameState) \ 39 V(FrameState) \
39 V(StateValues) \ 40 V(StateValues) \
40 V(Call) \ 41 V(Call) \
41 V(Parameter) \ 42 V(Parameter) \
42 V(Projection) 43 V(Projection)
43 44
44 #define COMMON_OP_LIST(V) \ 45 #define COMMON_OP_LIST(V) \
45 LEAF_OP_LIST(V) \ 46 LEAF_OP_LIST(V) \
46 INNER_OP_LIST(V) 47 INNER_OP_LIST(V)
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 return false; 293 return false;
293 } 294 }
294 } 295 }
295 }; 296 };
296 297
297 } // namespace compiler 298 } // namespace compiler
298 } // namespace internal 299 } // namespace internal
299 } // namespace v8 300 } // namespace v8
300 301
301 #endif // V8_COMPILER_OPCODES_H_ 302 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/common-operator.h ('k') | src/compiler/operator-properties-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698