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

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

Issue 1015423002: [turbofan] Remember types for deoptimization during simplified lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address review comments 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/liveness-analyzer.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 30 matching lines...) Expand all
41 41
42 #define INNER_OP_LIST(V) \ 42 #define INNER_OP_LIST(V) \
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(ValueEffect) \ 47 V(ValueEffect) \
48 V(Finish) \ 48 V(Finish) \
49 V(FrameState) \ 49 V(FrameState) \
50 V(StateValues) \ 50 V(StateValues) \
51 V(TypedStateValues) \
51 V(Call) \ 52 V(Call) \
52 V(Parameter) \ 53 V(Parameter) \
53 V(OsrValue) \ 54 V(OsrValue) \
54 V(Projection) 55 V(Projection)
55 56
56 #define COMMON_OP_LIST(V) \ 57 #define COMMON_OP_LIST(V) \
57 CONSTANT_OP_LIST(V) \ 58 CONSTANT_OP_LIST(V) \
58 INNER_OP_LIST(V) \ 59 INNER_OP_LIST(V) \
59 V(Always) 60 V(Always)
60 61
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 333 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
333 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 334 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
334 } 335 }
335 }; 336 };
336 337
337 } // namespace compiler 338 } // namespace compiler
338 } // namespace internal 339 } // namespace internal
339 } // namespace v8 340 } // namespace v8
340 341
341 #endif // V8_COMPILER_OPCODES_H_ 342 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/liveness-analyzer.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698