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

Side by Side Diff: src/compiler/simplified-operator.cc

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/simplified-operator.h ('k') | src/compiler/typer.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #include "src/compiler/simplified-operator.h" 5 #include "src/compiler/simplified-operator.h"
6 6
7 #include "src/base/lazy-instance.h" 7 #include "src/base/lazy-instance.h"
8 #include "src/compiler/opcodes.h" 8 #include "src/compiler/opcodes.h"
9 #include "src/compiler/operator.h" 9 #include "src/compiler/operator.h"
10 #include "src/compiler/types.h" 10 #include "src/compiler/types.h"
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 V(SpeculativeNumberEqual) \ 495 V(SpeculativeNumberEqual) \
496 V(SpeculativeNumberLessThan) \ 496 V(SpeculativeNumberLessThan) \
497 V(SpeculativeNumberLessThanOrEqual) 497 V(SpeculativeNumberLessThanOrEqual)
498 498
499 #define CHECKED_OP_LIST(V) \ 499 #define CHECKED_OP_LIST(V) \
500 V(CheckBounds, 2, 1) \ 500 V(CheckBounds, 2, 1) \
501 V(CheckHeapObject, 1, 1) \ 501 V(CheckHeapObject, 1, 1) \
502 V(CheckIf, 1, 0) \ 502 V(CheckIf, 1, 0) \
503 V(CheckInternalizedString, 1, 1) \ 503 V(CheckInternalizedString, 1, 1) \
504 V(CheckNumber, 1, 1) \ 504 V(CheckNumber, 1, 1) \
505 V(CheckReceiver, 1, 1) \
505 V(CheckSmi, 1, 1) \ 506 V(CheckSmi, 1, 1) \
506 V(CheckString, 1, 1) \ 507 V(CheckString, 1, 1) \
507 V(CheckTaggedHole, 1, 1) \ 508 V(CheckTaggedHole, 1, 1) \
508 V(CheckedInt32Add, 2, 1) \ 509 V(CheckedInt32Add, 2, 1) \
509 V(CheckedInt32Sub, 2, 1) \ 510 V(CheckedInt32Sub, 2, 1) \
510 V(CheckedInt32Div, 2, 1) \ 511 V(CheckedInt32Div, 2, 1) \
511 V(CheckedInt32Mod, 2, 1) \ 512 V(CheckedInt32Mod, 2, 1) \
512 V(CheckedUint32Div, 2, 1) \ 513 V(CheckedUint32Div, 2, 1) \
513 V(CheckedUint32Mod, 2, 1) \ 514 V(CheckedUint32Mod, 2, 1) \
514 V(CheckedUint32ToInt32, 1, 1) \ 515 V(CheckedUint32ToInt32, 1, 1) \
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 Operator::kNoDeopt | Operator::kNoThrow | properties, \ 905 Operator::kNoDeopt | Operator::kNoThrow | properties, \
905 #Name, value_input_count, 1, control_input_count, \ 906 #Name, value_input_count, 1, control_input_count, \
906 output_count, 1, 0, access); \ 907 output_count, 1, 0, access); \
907 } 908 }
908 ACCESS_OP_LIST(ACCESS) 909 ACCESS_OP_LIST(ACCESS)
909 #undef ACCESS 910 #undef ACCESS
910 911
911 } // namespace compiler 912 } // namespace compiler
912 } // namespace internal 913 } // namespace internal
913 } // namespace v8 914 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/simplified-operator.h ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698