Skip to content
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

Fix a bug with hoisting 'IRVar' insts that are used outside the loop #6446

Merged

Conversation

saipraveenb25
Copy link
Collaborator

  • We introduce a 'OpCheckpointObject' inst and use that to split loop state insts into two pieces (one for within-loop uses and one for outside-loop uses.
  • This allows the two kinds of uses to be handled separately by the hoisting mechanism
  • OpCheckpointObject is then lowered to a no-op after hoisting is complete.

Also added a test to check for this.

Fixes: #6394 and #5999

Verified

This commit was signed with the committer’s verified signature.
benibenj Benjamin Christopher Simmonds
- We introduce a 'CheckpointObject' inst and use that to split loop state insts into two pieces (one for within-loop uses and one for outside-loop uses.
- This allows the two kinds of uses to be handled separately by the hoisting mechanism
- CheckpointObject is then lowered to a no-op after hoisting is complete.
@saipraveenb25 saipraveenb25 added the pr: non-breaking PRs without breaking changes label Feb 24, 2025
@saipraveenb25 saipraveenb25 requested a review from a team as a code owner February 24, 2025 20:23
{
setInsertAfterOrdinaryInst(&builder, inst);
auto copy = builder.emitCheckpointObject(inst);
copy->sourceLoc = inst->sourceLoc; // Copy source location so that checkpoint
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

long multiline comment should be placed before the line.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed!

HashSet<IRUse*> afterLoopUses;

// Get the indices for the condition block
auto condBlockIndices = indexedBlockInfo.getValue(condBlock);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I want us to be extra careful when using List types inside loops like this. The code here would be alloc/free-ing memory like crazy just to represent the temporary list objects. Should return and use references if indexedBlockInfo is immutable in this loop.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed!

// Shouldn't see any vars.
SLANG_ASSERT(!as<IRVar>(inst));

HashSet<IRUse*> loopUses;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any reason to use HashSet? it seems List would suffice.

also move these outside of the loop, and do a loopUses.clear() here to avoid frequent alloc.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed!

@saipraveenb25 saipraveenb25 enabled auto-merge (squash) February 25, 2025 20:04
@csyonghe csyonghe disabled auto-merge February 25, 2025 20:04
@csyonghe csyonghe merged commit f7b9745 into shader-slang:master Feb 25, 2025
15 of 16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pr: non-breaking PRs without breaking changes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Slang.D backward mode doesn't run lines of code after a for loop
2 participants