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

Side by Side Diff: src/compiler/simplified-operator.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/simplified-lowering.cc ('k') | src/compiler/simplified-operator.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 const Operator* ChangeBitToTagged(); 318 const Operator* ChangeBitToTagged();
319 const Operator* TruncateTaggedToWord32(); 319 const Operator* TruncateTaggedToWord32();
320 const Operator* TruncateTaggedToFloat64(); 320 const Operator* TruncateTaggedToFloat64();
321 const Operator* TruncateTaggedToBit(); 321 const Operator* TruncateTaggedToBit();
322 322
323 const Operator* CheckIf(); 323 const Operator* CheckIf();
324 const Operator* CheckBounds(); 324 const Operator* CheckBounds();
325 const Operator* CheckMaps(int map_input_count); 325 const Operator* CheckMaps(int map_input_count);
326 326
327 const Operator* CheckHeapObject(); 327 const Operator* CheckHeapObject();
328 const Operator* CheckInternalizedString();
328 const Operator* CheckNumber(); 329 const Operator* CheckNumber();
329 const Operator* CheckSmi(); 330 const Operator* CheckSmi();
330 const Operator* CheckString(); 331 const Operator* CheckString();
331 332
332 const Operator* CheckedInt32Add(); 333 const Operator* CheckedInt32Add();
333 const Operator* CheckedInt32Sub(); 334 const Operator* CheckedInt32Sub();
334 const Operator* CheckedInt32Div(); 335 const Operator* CheckedInt32Div();
335 const Operator* CheckedInt32Mod(); 336 const Operator* CheckedInt32Mod();
336 const Operator* CheckedUint32Div(); 337 const Operator* CheckedUint32Div();
337 const Operator* CheckedUint32Mod(); 338 const Operator* CheckedUint32Mod();
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 Zone* const zone_; 407 Zone* const zone_;
407 408
408 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 409 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
409 }; 410 };
410 411
411 } // namespace compiler 412 } // namespace compiler
412 } // namespace internal 413 } // namespace internal
413 } // namespace v8 414 } // namespace v8
414 415
415 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 416 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698