-
Notifications
You must be signed in to change notification settings - Fork 46.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[compiler] patch: retain UpdateExpression for globals #30471
Conversation
[ghstack-poisoned]
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
ghstack-source-id: 2d69cb57b0947c13c41a62ab11554556c7f9e68a Pull Request resolved: #30471
[ghstack-poisoned]
ghstack-source-id: 962af1e9641b46cfbd029c1885d60f8de1a35fb7 Pull Request resolved: #30471
loc: exprLoc, | ||
}); | ||
return {kind: 'LoadLocal', place: identifier, loc: exprLoc}; | ||
const binding = builder.resolveIdentifier(leftExpr); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the key change: we check if the identifier is a local (or non-local) binding
const identifier = lowerIdentifier(builder, leftExpr); | ||
const kind = getStoreKind(builder, leftExpr); | ||
if (kind === 'StoreLocal') { | ||
lowerValueToTemporary(builder, { | ||
kind: 'StoreLocal', | ||
lvalue: { | ||
place: {...identifier}, | ||
kind: InstructionKind.Reassign, | ||
}, | ||
value: {...binaryPlace}, | ||
type: null, | ||
loc: exprLoc, | ||
}); | ||
return {kind: 'LoadLocal', place: identifier, loc: exprLoc}; | ||
} else { | ||
lowerValueToTemporary(builder, { | ||
kind: 'StoreContext', | ||
lvalue: { | ||
place: {...identifier}, | ||
kind: InstructionKind.Reassign, | ||
}, | ||
value: {...binaryPlace}, | ||
loc: exprLoc, | ||
}); | ||
return {kind: 'LoadContext', place: identifier, loc: exprLoc}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Only whitespace changes here)
[ghstack-poisoned]
ghstack-source-id: aff6606f85698ccda13d1deffb6faa9d91f9821a Pull Request resolved: #30471
ghstack-source-id: aff6606f85698ccda13d1deffb6faa9d91f9821a Pull Request resolved: #30471
Stack from ghstack (oldest at bottom):