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

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

Issue 2196653002: [turbofan] Introduce a dedicated CheckMaps simplified operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@TurboFan_JSNativeContextSpecialization_NonElementKeyedAccess
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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 V(NumberTan) \ 262 V(NumberTan) \
263 V(NumberTanh) \ 263 V(NumberTanh) \
264 V(NumberTrunc) \ 264 V(NumberTrunc) \
265 V(NumberToInt32) \ 265 V(NumberToInt32) \
266 V(NumberToUint32) \ 266 V(NumberToUint32) \
267 V(NumberSilenceNaN) \ 267 V(NumberSilenceNaN) \
268 V(StringCharCodeAt) \ 268 V(StringCharCodeAt) \
269 V(StringFromCharCode) \ 269 V(StringFromCharCode) \
270 V(CheckBounds) \ 270 V(CheckBounds) \
271 V(CheckIf) \ 271 V(CheckIf) \
272 V(CheckMaps) \
272 V(CheckNumber) \ 273 V(CheckNumber) \
273 V(CheckString) \ 274 V(CheckString) \
274 V(CheckTaggedPointer) \ 275 V(CheckTaggedPointer) \
275 V(CheckTaggedSigned) \ 276 V(CheckTaggedSigned) \
276 V(CheckFloat64Hole) \ 277 V(CheckFloat64Hole) \
277 V(CheckTaggedHole) \ 278 V(CheckTaggedHole) \
278 V(Allocate) \ 279 V(Allocate) \
279 V(LoadField) \ 280 V(LoadField) \
280 V(LoadBuffer) \ 281 V(LoadBuffer) \
281 V(LoadElement) \ 282 V(LoadElement) \
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 } 735 }
735 }; 736 };
736 737
737 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 738 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
738 739
739 } // namespace compiler 740 } // namespace compiler
740 } // namespace internal 741 } // namespace internal
741 } // namespace v8 742 } // namespace v8
742 743
743 #endif // V8_COMPILER_OPCODES_H_ 744 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698