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

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

Issue 2115513002: [turbofan] Introduce CheckIf simplified operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
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/node-matchers.h ('k') | src/compiler/redundancy-elimination.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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 V(NumberSin) \ 241 V(NumberSin) \
242 V(NumberSqrt) \ 242 V(NumberSqrt) \
243 V(NumberTan) \ 243 V(NumberTan) \
244 V(NumberTrunc) \ 244 V(NumberTrunc) \
245 V(NumberToInt32) \ 245 V(NumberToInt32) \
246 V(NumberToUint32) \ 246 V(NumberToUint32) \
247 V(NumberSilenceNaN) \ 247 V(NumberSilenceNaN) \
248 V(StringFromCharCode) \ 248 V(StringFromCharCode) \
249 V(StringToNumber) \ 249 V(StringToNumber) \
250 V(CheckBounds) \ 250 V(CheckBounds) \
251 V(CheckIf) \
251 V(CheckNumber) \ 252 V(CheckNumber) \
252 V(CheckTaggedPointer) \ 253 V(CheckTaggedPointer) \
253 V(CheckTaggedSigned) \ 254 V(CheckTaggedSigned) \
254 V(CheckFloat64Hole) \ 255 V(CheckFloat64Hole) \
255 V(CheckTaggedHole) \ 256 V(CheckTaggedHole) \
256 V(Allocate) \ 257 V(Allocate) \
257 V(LoadField) \ 258 V(LoadField) \
258 V(LoadBuffer) \ 259 V(LoadBuffer) \
259 V(LoadElement) \ 260 V(LoadElement) \
260 V(StoreField) \ 261 V(StoreField) \
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 } 698 }
698 }; 699 };
699 700
700 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 701 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
701 702
702 } // namespace compiler 703 } // namespace compiler
703 } // namespace internal 704 } // namespace internal
704 } // namespace v8 705 } // namespace v8
705 706
706 #endif // V8_COMPILER_OPCODES_H_ 707 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/node-matchers.h ('k') | src/compiler/redundancy-elimination.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698