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

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

Issue 2388303006: Reland of "[turbofan] Osr value typing + dynamic type checks on entry. (patchset #5 id:80001 of htt… (Closed)
Patch Set: Tweaks Created 4 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
« no previous file with comments | « src/compiler/node-properties.cc ('k') | src/compiler/osr.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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 V(Checkpoint) \ 51 V(Checkpoint) \
52 V(BeginRegion) \ 52 V(BeginRegion) \
53 V(FinishRegion) \ 53 V(FinishRegion) \
54 V(FrameState) \ 54 V(FrameState) \
55 V(StateValues) \ 55 V(StateValues) \
56 V(TypedStateValues) \ 56 V(TypedStateValues) \
57 V(ObjectState) \ 57 V(ObjectState) \
58 V(Call) \ 58 V(Call) \
59 V(Parameter) \ 59 V(Parameter) \
60 V(OsrValue) \ 60 V(OsrValue) \
61 V(OsrGuard) \
61 V(LoopExit) \ 62 V(LoopExit) \
62 V(LoopExitValue) \ 63 V(LoopExitValue) \
63 V(LoopExitEffect) \ 64 V(LoopExitEffect) \
64 V(Projection) \ 65 V(Projection) \
65 V(Retain) \ 66 V(Retain) \
66 V(TypeGuard) 67 V(TypeGuard)
67 68
68 #define COMMON_OP_LIST(V) \ 69 #define COMMON_OP_LIST(V) \
69 CONSTANT_OP_LIST(V) \ 70 CONSTANT_OP_LIST(V) \
70 INNER_OP_LIST(V) \ 71 INNER_OP_LIST(V) \
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 } 783 }
783 }; 784 };
784 785
785 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 786 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
786 787
787 } // namespace compiler 788 } // namespace compiler
788 } // namespace internal 789 } // namespace internal
789 } // namespace v8 790 } // namespace v8
790 791
791 #endif // V8_COMPILER_OPCODES_H_ 792 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/node-properties.cc ('k') | src/compiler/osr.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698