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

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

Issue 2639883002: [turbofan] Add Receiver feedback for abstract/strict equality. (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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(CheckInternalizedString) \
311 V(CheckReceiver) \
311 V(CheckString) \ 312 V(CheckString) \
312 V(CheckSmi) \ 313 V(CheckSmi) \
313 V(CheckHeapObject) \ 314 V(CheckHeapObject) \
314 V(CheckFloat64Hole) \ 315 V(CheckFloat64Hole) \
315 V(CheckTaggedHole) \ 316 V(CheckTaggedHole) \
316 V(ConvertTaggedHoleToUndefined) \ 317 V(ConvertTaggedHoleToUndefined) \
317 V(Allocate) \ 318 V(Allocate) \
318 V(LoadField) \ 319 V(LoadField) \
319 V(LoadBuffer) \ 320 V(LoadBuffer) \
320 V(LoadElement) \ 321 V(LoadElement) \
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 } 807 }
807 }; 808 };
808 809
809 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 810 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
810 811
811 } // namespace compiler 812 } // namespace compiler
812 } // namespace internal 813 } // namespace internal
813 } // namespace v8 814 } // namespace v8
814 815
815 #endif // V8_COMPILER_OPCODES_H_ 816 #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