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

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

Issue 1994503002: [turbofan] Turn common Guard operator into simplified TypeGuard. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/load-elimination.cc ('k') | src/compiler/pipeline.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 30 matching lines...) Expand all
41 V(NumberConstant) \ 41 V(NumberConstant) \
42 V(HeapConstant) \ 42 V(HeapConstant) \
43 V(RelocatableInt32Constant) \ 43 V(RelocatableInt32Constant) \
44 V(RelocatableInt64Constant) 44 V(RelocatableInt64Constant)
45 45
46 #define INNER_OP_LIST(V) \ 46 #define INNER_OP_LIST(V) \
47 V(Select) \ 47 V(Select) \
48 V(Phi) \ 48 V(Phi) \
49 V(EffectPhi) \ 49 V(EffectPhi) \
50 V(CheckPoint) \ 50 V(CheckPoint) \
51 V(Guard) \
52 V(BeginRegion) \ 51 V(BeginRegion) \
53 V(FinishRegion) \ 52 V(FinishRegion) \
54 V(FrameState) \ 53 V(FrameState) \
55 V(StateValues) \ 54 V(StateValues) \
56 V(TypedStateValues) \ 55 V(TypedStateValues) \
57 V(ObjectState) \ 56 V(ObjectState) \
58 V(Call) \ 57 V(Call) \
59 V(Parameter) \ 58 V(Parameter) \
60 V(OsrValue) \ 59 V(OsrValue) \
61 V(Projection) 60 V(Projection)
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 V(LoadBuffer) \ 212 V(LoadBuffer) \
214 V(LoadElement) \ 213 V(LoadElement) \
215 V(StoreField) \ 214 V(StoreField) \
216 V(StoreBuffer) \ 215 V(StoreBuffer) \
217 V(StoreElement) \ 216 V(StoreElement) \
218 V(ObjectIsCallable) \ 217 V(ObjectIsCallable) \
219 V(ObjectIsNumber) \ 218 V(ObjectIsNumber) \
220 V(ObjectIsReceiver) \ 219 V(ObjectIsReceiver) \
221 V(ObjectIsSmi) \ 220 V(ObjectIsSmi) \
222 V(ObjectIsString) \ 221 V(ObjectIsString) \
223 V(ObjectIsUndetectable) 222 V(ObjectIsUndetectable) \
223 V(TypeGuard)
224 224
225 // Opcodes for Machine-level operators. 225 // Opcodes for Machine-level operators.
226 #define MACHINE_COMPARE_BINOP_LIST(V) \ 226 #define MACHINE_COMPARE_BINOP_LIST(V) \
227 V(Word32Equal) \ 227 V(Word32Equal) \
228 V(Word64Equal) \ 228 V(Word64Equal) \
229 V(Int32LessThan) \ 229 V(Int32LessThan) \
230 V(Int32LessThanOrEqual) \ 230 V(Int32LessThanOrEqual) \
231 V(Uint32LessThan) \ 231 V(Uint32LessThan) \
232 V(Uint32LessThanOrEqual) \ 232 V(Uint32LessThanOrEqual) \
233 V(Int64LessThan) \ 233 V(Int64LessThan) \
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 } 624 }
625 }; 625 };
626 626
627 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 627 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
628 628
629 } // namespace compiler 629 } // namespace compiler
630 } // namespace internal 630 } // namespace internal
631 } // namespace v8 631 } // namespace v8
632 632
633 #endif // V8_COMPILER_OPCODES_H_ 633 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/load-elimination.cc ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698