@@ -490,124 +490,34 @@ Reduction JSTypedLowering::ReduceJSStrictEqual(Node* node, bool invert) {
490
490
}
491
491
492
492
493
- Reduction JSTypedLowering::ReduceJSToBooleanInput (Node* input) {
494
- if (input->opcode () == IrOpcode::kJSToBoolean ) {
495
- // Recursively try to reduce the input first.
496
- Reduction result = ReduceJSToBoolean (input);
497
- if (result.Changed ()) return result;
498
- return Changed (input); // JSToBoolean(JSToBoolean(x)) => JSToBoolean(x)
499
- }
500
- // Check if we have a cached conversion.
501
- Node* conversion = FindConversion<IrOpcode::kJSToBoolean >(input);
502
- if (conversion) return Replace (conversion);
493
+ Reduction JSTypedLowering::ReduceJSUnaryNot (Node* node) {
494
+ Node* input = node->InputAt (0 );
503
495
Type* input_type = NodeProperties::GetBounds (input).upper ;
504
496
if (input_type->Is (Type::Boolean ())) {
505
- return Changed (input); // JSToBoolean(x:boolean) => x
506
- }
507
- if (input_type->Is (Type::Undefined ())) {
508
- // JSToBoolean(undefined) => #false
509
- return Replace (jsgraph ()->FalseConstant ());
510
- }
511
- if (input_type->Is (Type::Null ())) {
512
- // JSToBoolean(null) => #false
513
- return Replace (jsgraph ()->FalseConstant ());
514
- }
515
- if (input_type->Is (Type::DetectableReceiver ())) {
516
- // JSToBoolean(x:detectable) => #true
517
- return Replace (jsgraph ()->TrueConstant ());
518
- }
519
- if (input_type->Is (Type::Undetectable ())) {
520
- // JSToBoolean(x:undetectable) => #false
521
- return Replace (jsgraph ()->FalseConstant ());
522
- }
523
- if (input_type->Is (Type::OrderedNumber ())) {
524
- // JSToBoolean(x:ordered-number) => BooleanNot(NumberEqual(x, #0))
525
- Node* cmp = graph ()->NewNode (simplified ()->NumberEqual (), input,
526
- jsgraph ()->ZeroConstant ());
527
- Node* inv = graph ()->NewNode (simplified ()->BooleanNot (), cmp);
528
- return Replace (inv);
529
- }
530
- if (input_type->Is (Type::String ())) {
531
- // JSToBoolean(x:string) => BooleanNot(NumberEqual(x.length, #0))
532
- FieldAccess access = AccessBuilder::ForStringLength ();
533
- Node* length = graph ()->NewNode (simplified ()->LoadField (access ), input,
534
- graph ()->start (), graph ()->start ());
535
- Node* cmp = graph ()->NewNode (simplified ()->NumberEqual (), length,
536
- jsgraph ()->ZeroConstant ());
537
- Node* inv = graph ()->NewNode (simplified ()->BooleanNot (), cmp);
538
- return Replace (inv);
497
+ // JSUnaryNot(x:boolean,context) => BooleanNot(x)
498
+ node->set_op (simplified ()->BooleanNot ());
499
+ node->TrimInputCount (1 );
500
+ return Changed (node);
539
501
}
540
- return NoChange ();
502
+ // JSUnaryNot(x,context) => BooleanNot(AnyToBoolean(x))
503
+ node->set_op (simplified ()->BooleanNot ());
504
+ node->ReplaceInput (0 , graph ()->NewNode (simplified ()->AnyToBoolean (), input));
505
+ node->TrimInputCount (1 );
506
+ return Changed (node);
541
507
}
542
508
543
509
544
510
Reduction JSTypedLowering::ReduceJSToBoolean (Node* node) {
545
- // Try to reduce the input first.
546
- Node* const input = node->InputAt (0 );
547
- Reduction reduction = ReduceJSToBooleanInput (input);
548
- if (reduction.Changed ()) return reduction;
549
- if (input->opcode () == IrOpcode::kPhi ) {
550
- // JSToBoolean(phi(x1,...,xn,control),context)
551
- // => phi(JSToBoolean(x1,no-context),...,JSToBoolean(xn,no-context))
552
- int const input_count = input->InputCount () - 1 ;
553
- Node* const control = input->InputAt (input_count);
554
- DCHECK_LE (0 , input_count);
555
- DCHECK (NodeProperties::IsControl (control));
556
- DCHECK (NodeProperties::GetBounds (node).upper ->Is (Type::Boolean ()));
557
- DCHECK (!NodeProperties::GetBounds (input).upper ->Is (Type::Boolean ()));
558
- node->set_op (common ()->Phi (kMachAnyTagged , input_count));
559
- for (int i = 0 ; i < input_count; ++i) {
560
- // We must be very careful not to introduce cycles when pushing
561
- // operations into phis. It is safe for {value}, since it appears
562
- // as input to the phi that we are replacing, but it's not safe
563
- // to simply reuse the context of the {node}. However, ToBoolean()
564
- // does not require a context anyways, so it's safe to discard it
565
- // here and pass the dummy context.
566
- Node* const value = ConvertToBoolean (input->InputAt (i));
567
- if (i < node->InputCount ()) {
568
- node->ReplaceInput (i, value);
569
- } else {
570
- node->AppendInput (graph ()->zone (), value);
571
- }
572
- }
573
- if (input_count < node->InputCount ()) {
574
- node->ReplaceInput (input_count, control);
575
- } else {
576
- node->AppendInput (graph ()->zone (), control);
577
- }
578
- node->TrimInputCount (input_count + 1 );
579
- return Changed (node);
580
- }
581
- if (input->opcode () == IrOpcode::kSelect ) {
582
- // JSToBoolean(select(c,x1,x2),context)
583
- // => select(c,JSToBoolean(x1,no-context),...,JSToBoolean(x2,no-context))
584
- int const input_count = input->InputCount ();
585
- BranchHint const input_hint = SelectParametersOf (input->op ()).hint ();
586
- DCHECK_EQ (3 , input_count);
587
- DCHECK (NodeProperties::GetBounds (node).upper ->Is (Type::Boolean ()));
588
- DCHECK (!NodeProperties::GetBounds (input).upper ->Is (Type::Boolean ()));
589
- node->set_op (common ()->Select (kMachAnyTagged , input_hint));
590
- node->InsertInput (graph ()->zone (), 0 , input->InputAt (0 ));
591
- for (int i = 1 ; i < input_count; ++i) {
592
- // We must be very careful not to introduce cycles when pushing
593
- // operations into selects. It is safe for {value}, since it appears
594
- // as input to the select that we are replacing, but it's not safe
595
- // to simply reuse the context of the {node}. However, ToBoolean()
596
- // does not require a context anyways, so it's safe to discard it
597
- // here and pass the dummy context.
598
- Node* const value = ConvertToBoolean (input->InputAt (i));
599
- node->ReplaceInput (i, value);
600
- }
601
- DCHECK_EQ (3 , node->InputCount ());
602
- return Changed (node);
603
- }
604
- InsertConversion (node);
605
- if (node->InputAt (1 ) != jsgraph ()->NoContextConstant ()) {
606
- // JSToBoolean(x,context) => JSToBoolean(x,no-context)
607
- node->ReplaceInput (1 , jsgraph ()->NoContextConstant ());
608
- return Changed (node);
511
+ Node* input = node->InputAt (0 );
512
+ Type* input_type = NodeProperties::GetBounds (input).upper ;
513
+ if (input_type->Is (Type::Boolean ())) {
514
+ // JSToBoolean(x:boolean,context) => x
515
+ return Replace (input);
609
516
}
610
- return NoChange ();
517
+ // JSToBoolean(x,context) => AnyToBoolean(x)
518
+ node->set_op (simplified ()->AnyToBoolean ());
519
+ node->TrimInputCount (1 );
520
+ return Changed (node);
611
521
}
612
522
613
523
@@ -972,18 +882,8 @@ Reduction JSTypedLowering::Reduce(Node* node) {
972
882
return ReduceNumberBinop (node, simplified ()->NumberDivide ());
973
883
case IrOpcode::kJSModulus :
974
884
return ReduceNumberBinop (node, simplified ()->NumberModulus ());
975
- case IrOpcode::kJSUnaryNot : {
976
- Reduction result = ReduceJSToBooleanInput (node->InputAt (0 ));
977
- if (result.Changed ()) {
978
- // JSUnaryNot(x:boolean) => BooleanNot(x)
979
- node = result.replacement ();
980
- } else {
981
- // JSUnaryNot(x) => BooleanNot(JSToBoolean(x))
982
- node->set_op (javascript ()->ToBoolean ());
983
- }
984
- Node* value = graph ()->NewNode (simplified ()->BooleanNot (), node);
985
- return Replace (value);
986
- }
885
+ case IrOpcode::kJSUnaryNot :
886
+ return ReduceJSUnaryNot (node);
987
887
case IrOpcode::kJSToBoolean :
988
888
return ReduceJSToBoolean (node);
989
889
case IrOpcode::kJSToNumber :
@@ -1005,17 +905,6 @@ Reduction JSTypedLowering::Reduce(Node* node) {
1005
905
}
1006
906
1007
907
1008
- Node* JSTypedLowering::ConvertToBoolean (Node* input) {
1009
- // Avoid inserting too many eager ToBoolean() operations.
1010
- Reduction const reduction = ReduceJSToBooleanInput (input);
1011
- if (reduction.Changed ()) return reduction.replacement ();
1012
- Node* const conversion = graph ()->NewNode (javascript ()->ToBoolean (), input,
1013
- jsgraph ()->NoContextConstant ());
1014
- InsertConversion (conversion);
1015
- return conversion;
1016
- }
1017
-
1018
-
1019
908
Node* JSTypedLowering::ConvertToNumber (Node* input) {
1020
909
DCHECK (NodeProperties::GetBounds (input).upper ->Is (Type::PlainPrimitive ()));
1021
910
// Avoid inserting too many eager ToNumber() operations.
@@ -1043,8 +932,7 @@ Node* JSTypedLowering::FindConversion(Node* input) {
1043
932
1044
933
1045
934
void JSTypedLowering::InsertConversion (Node* conversion) {
1046
- DCHECK (conversion->opcode () == IrOpcode::kJSToBoolean ||
1047
- conversion->opcode () == IrOpcode::kJSToNumber );
935
+ DCHECK (conversion->opcode () == IrOpcode::kJSToNumber );
1048
936
size_t const input_id = conversion->InputAt (0 )->id ();
1049
937
if (input_id >= conversions_.size ()) {
1050
938
conversions_.resize (2 * input_id + 1 );
0 commit comments