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

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

Issue 2181943003: [turbofan] Introduce CheckString simplified operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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
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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 V(NumberTan) \ 260 V(NumberTan) \
261 V(NumberTanh) \ 261 V(NumberTanh) \
262 V(NumberTrunc) \ 262 V(NumberTrunc) \
263 V(NumberToInt32) \ 263 V(NumberToInt32) \
264 V(NumberToUint32) \ 264 V(NumberToUint32) \
265 V(NumberSilenceNaN) \ 265 V(NumberSilenceNaN) \
266 V(StringFromCharCode) \ 266 V(StringFromCharCode) \
267 V(CheckBounds) \ 267 V(CheckBounds) \
268 V(CheckIf) \ 268 V(CheckIf) \
269 V(CheckNumber) \ 269 V(CheckNumber) \
270 V(CheckString) \
270 V(CheckTaggedPointer) \ 271 V(CheckTaggedPointer) \
271 V(CheckTaggedSigned) \ 272 V(CheckTaggedSigned) \
272 V(CheckFloat64Hole) \ 273 V(CheckFloat64Hole) \
273 V(CheckTaggedHole) \ 274 V(CheckTaggedHole) \
274 V(Allocate) \ 275 V(Allocate) \
275 V(LoadField) \ 276 V(LoadField) \
276 V(LoadBuffer) \ 277 V(LoadBuffer) \
277 V(LoadElement) \ 278 V(LoadElement) \
278 V(StoreField) \ 279 V(StoreField) \
279 V(StoreBuffer) \ 280 V(StoreBuffer) \
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 } 731 }
731 }; 732 };
732 733
733 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 734 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
734 735
735 } // namespace compiler 736 } // namespace compiler
736 } // namespace internal 737 } // namespace internal
737 } // namespace v8 738 } // namespace v8
738 739
739 #endif // V8_COMPILER_OPCODES_H_ 740 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/redundancy-elimination.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698