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

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

Issue 2108793003: [turbofan] Drop the obsolete TypeGuard operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@MathRandom
Patch Set: Created 4 years, 5 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/simplified-operator.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 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 V(LoadBuffer) \ 255 V(LoadBuffer) \
256 V(LoadElement) \ 256 V(LoadElement) \
257 V(StoreField) \ 257 V(StoreField) \
258 V(StoreBuffer) \ 258 V(StoreBuffer) \
259 V(StoreElement) \ 259 V(StoreElement) \
260 V(ObjectIsCallable) \ 260 V(ObjectIsCallable) \
261 V(ObjectIsNumber) \ 261 V(ObjectIsNumber) \
262 V(ObjectIsReceiver) \ 262 V(ObjectIsReceiver) \
263 V(ObjectIsSmi) \ 263 V(ObjectIsSmi) \
264 V(ObjectIsString) \ 264 V(ObjectIsString) \
265 V(ObjectIsUndetectable) \ 265 V(ObjectIsUndetectable)
266 V(TypeGuard)
267 266
268 // Opcodes for Machine-level operators. 267 // Opcodes for Machine-level operators.
269 #define MACHINE_COMPARE_BINOP_LIST(V) \ 268 #define MACHINE_COMPARE_BINOP_LIST(V) \
270 V(Word32Equal) \ 269 V(Word32Equal) \
271 V(Word64Equal) \ 270 V(Word64Equal) \
272 V(Int32LessThan) \ 271 V(Int32LessThan) \
273 V(Int32LessThanOrEqual) \ 272 V(Int32LessThanOrEqual) \
274 V(Uint32LessThan) \ 273 V(Uint32LessThan) \
275 V(Uint32LessThanOrEqual) \ 274 V(Uint32LessThanOrEqual) \
276 V(Int64LessThan) \ 275 V(Int64LessThan) \
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 } 688 }
690 }; 689 };
691 690
692 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 691 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
693 692
694 } // namespace compiler 693 } // namespace compiler
695 } // namespace internal 694 } // namespace internal
696 } // namespace v8 695 } // namespace v8
697 696
698 #endif // V8_COMPILER_OPCODES_H_ 697 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/load-elimination.cc ('k') | src/compiler/simplified-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698