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

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

Issue 2078333002: Revert of [turbofan] Introduce CheckUnless. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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/js-native-context-specialization.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 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 V(ChangeTaggedToBit) \ 235 V(ChangeTaggedToBit) \
236 V(ChangeBitToTagged) \ 236 V(ChangeBitToTagged) \
237 V(CheckBounds) \ 237 V(CheckBounds) \
238 V(CheckedUint32ToInt32) \ 238 V(CheckedUint32ToInt32) \
239 V(CheckedFloat64ToInt32) \ 239 V(CheckedFloat64ToInt32) \
240 V(CheckedTaggedToInt32) \ 240 V(CheckedTaggedToInt32) \
241 V(CheckedTaggedToFloat64) \ 241 V(CheckedTaggedToFloat64) \
242 V(CheckFloat64Hole) \ 242 V(CheckFloat64Hole) \
243 V(CheckTaggedHole) \ 243 V(CheckTaggedHole) \
244 V(CheckIf) \ 244 V(CheckIf) \
245 V(CheckUnless) \
246 V(TruncateTaggedToWord32) \ 245 V(TruncateTaggedToWord32) \
247 V(TruncateTaggedToFloat64) \ 246 V(TruncateTaggedToFloat64) \
248 V(Allocate) \ 247 V(Allocate) \
249 V(LoadField) \ 248 V(LoadField) \
250 V(LoadBuffer) \ 249 V(LoadBuffer) \
251 V(LoadElement) \ 250 V(LoadElement) \
252 V(StoreField) \ 251 V(StoreField) \
253 V(StoreBuffer) \ 252 V(StoreBuffer) \
254 V(StoreElement) \ 253 V(StoreElement) \
255 V(ObjectIsCallable) \ 254 V(ObjectIsCallable) \
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 } 681 }
683 }; 682 };
684 683
685 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 684 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
686 685
687 } // namespace compiler 686 } // namespace compiler
688 } // namespace internal 687 } // namespace internal
689 } // namespace v8 688 } // namespace v8
690 689
691 #endif // V8_COMPILER_OPCODES_H_ 690 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698