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

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

Issue 2609013002: [turbofan] Use InternalizedString feedback abstract/strict equality comparisons. (Closed)
Patch Set: Created 3 years, 11 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-typed-lowering.cc ('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 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 V(PlainPrimitiveToFloat64) \ 300 V(PlainPrimitiveToFloat64) \
301 V(BooleanNot) \ 301 V(BooleanNot) \
302 V(StringCharAt) \ 302 V(StringCharAt) \
303 V(StringCharCodeAt) \ 303 V(StringCharCodeAt) \
304 V(StringFromCharCode) \ 304 V(StringFromCharCode) \
305 V(StringFromCodePoint) \ 305 V(StringFromCodePoint) \
306 V(CheckBounds) \ 306 V(CheckBounds) \
307 V(CheckIf) \ 307 V(CheckIf) \
308 V(CheckMaps) \ 308 V(CheckMaps) \
309 V(CheckNumber) \ 309 V(CheckNumber) \
310 V(CheckInternalizedString) \
310 V(CheckString) \ 311 V(CheckString) \
311 V(CheckSmi) \ 312 V(CheckSmi) \
312 V(CheckHeapObject) \ 313 V(CheckHeapObject) \
313 V(CheckFloat64Hole) \ 314 V(CheckFloat64Hole) \
314 V(CheckTaggedHole) \ 315 V(CheckTaggedHole) \
315 V(ConvertTaggedHoleToUndefined) \ 316 V(ConvertTaggedHoleToUndefined) \
316 V(Allocate) \ 317 V(Allocate) \
317 V(LoadField) \ 318 V(LoadField) \
318 V(LoadBuffer) \ 319 V(LoadBuffer) \
319 V(LoadElement) \ 320 V(LoadElement) \
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 } 802 }
802 }; 803 };
803 804
804 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 805 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
805 806
806 } // namespace compiler 807 } // namespace compiler
807 } // namespace internal 808 } // namespace internal
808 } // namespace v8 809 } // namespace v8
809 810
810 #endif // V8_COMPILER_OPCODES_H_ 811 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/redundancy-elimination.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698