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

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

Issue 1485183002: [turbofan] Deopt support for escape analysis (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@ea-local
Patch Set: Rebase Created 4 years, 11 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/instruction-selector.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 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 V(Select) \ 43 V(Select) \
44 V(Phi) \ 44 V(Phi) \
45 V(EffectSet) \ 45 V(EffectSet) \
46 V(EffectPhi) \ 46 V(EffectPhi) \
47 V(Guard) \ 47 V(Guard) \
48 V(BeginRegion) \ 48 V(BeginRegion) \
49 V(FinishRegion) \ 49 V(FinishRegion) \
50 V(FrameState) \ 50 V(FrameState) \
51 V(StateValues) \ 51 V(StateValues) \
52 V(TypedStateValues) \ 52 V(TypedStateValues) \
53 V(ObjectState) \
53 V(Call) \ 54 V(Call) \
54 V(Parameter) \ 55 V(Parameter) \
55 V(OsrValue) \ 56 V(OsrValue) \
56 V(Projection) 57 V(Projection)
57 58
58 #define COMMON_OP_LIST(V) \ 59 #define COMMON_OP_LIST(V) \
59 CONSTANT_OP_LIST(V) \ 60 CONSTANT_OP_LIST(V) \
60 INNER_OP_LIST(V) \ 61 INNER_OP_LIST(V) \
61 V(Dead) 62 V(Dead)
62 63
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 } 401 }
401 }; 402 };
402 403
403 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 404 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
404 405
405 } // namespace compiler 406 } // namespace compiler
406 } // namespace internal 407 } // namespace internal
407 } // namespace v8 408 } // namespace v8
408 409
409 #endif // V8_COMPILER_OPCODES_H_ 410 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698