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

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

Issue 2050813003: [turbofan] Introduce CheckIf node (deopt without explicit frame state). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rename 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/node-properties.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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 V(ChangeInt31ToTaggedSigned) \ 209 V(ChangeInt31ToTaggedSigned) \
210 V(ChangeInt32ToTagged) \ 210 V(ChangeInt32ToTagged) \
211 V(ChangeUint32ToTagged) \ 211 V(ChangeUint32ToTagged) \
212 V(ChangeFloat64ToTagged) \ 212 V(ChangeFloat64ToTagged) \
213 V(ChangeTaggedToBit) \ 213 V(ChangeTaggedToBit) \
214 V(ChangeBitToTagged) \ 214 V(ChangeBitToTagged) \
215 V(CheckedUint32ToInt32) \ 215 V(CheckedUint32ToInt32) \
216 V(CheckedFloat64ToInt32) \ 216 V(CheckedFloat64ToInt32) \
217 V(CheckedTaggedToInt32) \ 217 V(CheckedTaggedToInt32) \
218 V(CheckedTaggedToFloat64) \ 218 V(CheckedTaggedToFloat64) \
219 V(CheckIf) \
219 V(TruncateTaggedToWord32) \ 220 V(TruncateTaggedToWord32) \
220 V(TruncateTaggedToFloat64) \ 221 V(TruncateTaggedToFloat64) \
221 V(Allocate) \ 222 V(Allocate) \
222 V(LoadField) \ 223 V(LoadField) \
223 V(LoadBuffer) \ 224 V(LoadBuffer) \
224 V(LoadElement) \ 225 V(LoadElement) \
225 V(StoreField) \ 226 V(StoreField) \
226 V(StoreBuffer) \ 227 V(StoreBuffer) \
227 V(StoreElement) \ 228 V(StoreElement) \
228 V(ObjectIsCallable) \ 229 V(ObjectIsCallable) \
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 } 643 }
643 }; 644 };
644 645
645 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 646 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
646 647
647 } // namespace compiler 648 } // namespace compiler
648 } // namespace internal 649 } // namespace internal
649 } // namespace v8 650 } // namespace v8
650 651
651 #endif // V8_COMPILER_OPCODES_H_ 652 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/node-properties.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698