Skip to content

Commit

Permalink
[compiler] Handle optional where innermost property access is non-opt…
Browse files Browse the repository at this point in the history
…ional

Handles an additional case as part of testing combinations of the same path being accessed in different places with different segments as optional/unconditional.

ghstack-source-id: ace777fcbb98fa8f41b977d0aec8418f3f58fb7b
Pull Request resolved: #30836
  • Loading branch information
josephsavona committed Aug 28, 2024
1 parent 4005fe6 commit 62d5acd
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ class PropagationVisitor extends ReactiveFunctionVisitor<Context> {
loc: sequence.loc,
});
/**
* Base case: inner `<variable> "." or "?."" <property>`
* Base case: inner `<variable> "?." <property>`
*```
* <lvalue> = OptionalExpression optional=true (`optionalValue` is here)
* Sequence (`sequence` is here)
Expand All @@ -776,8 +776,8 @@ class PropagationVisitor extends ReactiveFunctionVisitor<Context> {
*/
if (
sequence.instructions.length === 1 &&
sequence.instructions[0].value.kind === 'LoadLocal' &&
sequence.instructions[0].lvalue !== null &&
sequence.instructions[0].value.kind === 'LoadLocal' &&
sequence.instructions[0].value.place.identifier.name !== null &&
!context.isUsedOutsideDeclaringScope(sequence.instructions[0].lvalue) &&
sequence.value.kind === 'SequenceExpression' &&
Expand All @@ -803,7 +803,83 @@ class PropagationVisitor extends ReactiveFunctionVisitor<Context> {
};
}
/**
* Composed case: `<base-case> "." or "?." <property>`
* Base case 2: inner `<variable> "." <property1> "?." <property2>
* ```
* <lvalue> = OptionalExpression optional=true (`optionalValue` is here)
* Sequence (`sequence` is here)
* t0 = Sequence
* t1 = LoadLocal <variable>
* ... // see note
* PropertyLoad t1 . <property1>
* [46] Sequence
* t2 = PropertyLoad t0 . <property2>
* [46] LoadLocal t2
* ```
*
* Note that it's possible to have additional inner chained non-optional
* property loads at "...", from an expression like `a?.b.c.d.e`. We could
* expand to support this case by relaxing the check on the inner sequence
* length, ensuring all instructions after the first LoadLocal are PropertyLoad
* and then iterating to ensure that the lvalue of the previous is always
* the object of the next PropertyLoad, w the final lvalue as the object
* of the sequence.value's object.
*
* But this case is likely rare in practice, usually once you're optional
* chaining all property accesses are optional (not `a?.b.c` but `a?.b?.c`).
* Also, HIR-based PropagateScopeDeps will handle this case so it doesn't
* seem worth it to optimize for that edge-case here.
*/
if (
sequence.instructions.length === 1 &&
sequence.instructions[0].lvalue !== null &&
sequence.instructions[0].value.kind === 'SequenceExpression' &&
sequence.instructions[0].value.instructions.length === 1 &&
sequence.instructions[0].value.instructions[0].lvalue !== null &&
sequence.instructions[0].value.instructions[0].value.kind ===
'LoadLocal' &&
sequence.instructions[0].value.instructions[0].value.place.identifier
.name !== null &&
!context.isUsedOutsideDeclaringScope(
sequence.instructions[0].value.instructions[0].lvalue,
) &&
sequence.instructions[0].value.value.kind === 'PropertyLoad' &&
sequence.instructions[0].value.value.object.identifier.id ===
sequence.instructions[0].value.instructions[0].lvalue.identifier.id &&
sequence.value.kind === 'SequenceExpression' &&
sequence.value.instructions.length === 1 &&
sequence.value.instructions[0].lvalue !== null &&
sequence.value.instructions[0].value.kind === 'PropertyLoad' &&
sequence.value.instructions[0].value.object.identifier.id ===
sequence.instructions[0].lvalue.identifier.id &&
sequence.value.value.kind === 'LoadLocal' &&
sequence.value.value.place.identifier.id ===
sequence.value.instructions[0].lvalue.identifier.id
) {
// LoadLocal <variable>
context.declareTemporary(
sequence.instructions[0].value.instructions[0].lvalue,
sequence.instructions[0].value.instructions[0].value.place,
);
// PropertyLoad <variable> . <property1> (the inner non-optional property)
context.declareProperty(
sequence.instructions[0].lvalue,
sequence.instructions[0].value.value.object,
sequence.instructions[0].value.value.property,
false,
);
const propertyLoad = sequence.value.instructions[0].value;
return {
lvalue,
object: propertyLoad.object,
property: propertyLoad.property,
optional: optionalValue.optional,
};
}

/**
* Composed case:
* - `<base-case> "." or "?." <property>`
* - `<composed-case> "." or "?>" <property>`
*
* This case is convoluted, note how `t0` appears as an lvalue *twice*
* and then is an operand of an intermediate LoadLocal and then the
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

## Input

```javascript
// @validatePreserveExistingMemoizationGuarantees @enableOptionalDependencies
import {ValidateMemoization} from 'shared-runtime';
function Component(props) {
const data = useMemo(() => {
const x = [];
x.push(props?.a.b?.c.d?.e);
x.push(props.a?.b.c?.d.e);
return x;
}, [props.a.b.c.d.e]);
return <ValidateMemoization inputs={[props.a.b.c.d.e]} output={x} />;
}

```
## Code
```javascript
import { c as _c } from "react/compiler-runtime"; // @validatePreserveExistingMemoizationGuarantees @enableOptionalDependencies
import { ValidateMemoization } from "shared-runtime";
function Component(props) {
const $ = _c(2);
let t0;

const x$0 = [];
x$0.push(props?.a.b?.c.d?.e);
x$0.push(props.a?.b.c?.d.e);
t0 = x$0;
let t1;
if ($[0] !== props.a.b.c.d.e) {
t1 = <ValidateMemoization inputs={[props.a.b.c.d.e]} output={x} />;
$[0] = props.a.b.c.d.e;
$[1] = t1;
} else {
t1 = $[1];
}
return t1;
}

```
### Eval output
(kind: exception) Fixture not implemented
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// @validatePreserveExistingMemoizationGuarantees @enableOptionalDependencies
import {ValidateMemoization} from 'shared-runtime';
function Component(props) {
const data = useMemo(() => {
const x = [];
x.push(props?.a.b?.c.d?.e);
x.push(props.a?.b.c?.d.e);
return x;
}, [props.a.b.c.d.e]);
return <ValidateMemoization inputs={[props.a.b.c.d.e]} output={x} />;
}

0 comments on commit 62d5acd

Please sign in to comment.