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

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

Issue 2365223003: Revert of [compiler] Properly guard the speculative optimizations for instanceof. (Closed)
Patch Set: Created 4 years, 2 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 V(StringLessThanOrEqual, Operator::kNoProperties, 2, 0) 420 V(StringLessThanOrEqual, Operator::kNoProperties, 2, 0)
421 421
422 #define SPECULATIVE_NUMBER_BINOP_LIST(V) \ 422 #define SPECULATIVE_NUMBER_BINOP_LIST(V) \
423 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ 423 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \
424 V(SpeculativeNumberEqual) \ 424 V(SpeculativeNumberEqual) \
425 V(SpeculativeNumberLessThan) \ 425 V(SpeculativeNumberLessThan) \
426 V(SpeculativeNumberLessThanOrEqual) 426 V(SpeculativeNumberLessThanOrEqual)
427 427
428 #define CHECKED_OP_LIST(V) \ 428 #define CHECKED_OP_LIST(V) \
429 V(CheckBounds, 2, 1) \ 429 V(CheckBounds, 2, 1) \
430 V(CheckHasInPrototypeChain, 2, 1) \
431 V(CheckHeapObject, 1, 1) \ 430 V(CheckHeapObject, 1, 1) \
432 V(CheckIf, 1, 0) \ 431 V(CheckIf, 1, 0) \
433 V(CheckNumber, 1, 1) \ 432 V(CheckNumber, 1, 1) \
434 V(CheckSmi, 1, 1) \ 433 V(CheckSmi, 1, 1) \
435 V(CheckString, 1, 1) \ 434 V(CheckString, 1, 1) \
436 V(CheckTaggedHole, 1, 1) \ 435 V(CheckTaggedHole, 1, 1) \
437 V(CheckedInt32Add, 2, 1) \ 436 V(CheckedInt32Add, 2, 1) \
438 V(CheckedInt32Sub, 2, 1) \ 437 V(CheckedInt32Sub, 2, 1) \
439 V(CheckedInt32Div, 2, 1) \ 438 V(CheckedInt32Div, 2, 1) \
440 V(CheckedInt32Mod, 2, 1) \ 439 V(CheckedInt32Mod, 2, 1) \
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 Operator::kNoDeopt | Operator::kNoThrow | properties, \ 813 Operator::kNoDeopt | Operator::kNoThrow | properties, \
815 #Name, value_input_count, 1, control_input_count, \ 814 #Name, value_input_count, 1, control_input_count, \
816 output_count, 1, 0, access); \ 815 output_count, 1, 0, access); \
817 } 816 }
818 ACCESS_OP_LIST(ACCESS) 817 ACCESS_OP_LIST(ACCESS)
819 #undef ACCESS 818 #undef ACCESS
820 819
821 } // namespace compiler 820 } // namespace compiler
822 } // namespace internal 821 } // namespace internal
823 } // namespace v8 822 } // 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