-
Notifications
You must be signed in to change notification settings - Fork 275
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
Fix a bug with hoisting 'IRVar' insts that are used outside the loop #6446
Conversation
- 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.
{ | ||
setInsertAfterOrdinaryInst(&builder, inst); | ||
auto copy = builder.emitCheckpointObject(inst); | ||
copy->sourceLoc = inst->sourceLoc; // Copy source location so that checkpoint |
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.
long multiline comment should be placed before the line.
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.
Fixed!
HashSet<IRUse*> afterLoopUses; | ||
|
||
// Get the indices for the condition block | ||
auto condBlockIndices = indexedBlockInfo.getValue(condBlock); |
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.
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.
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.
Fixed!
// Shouldn't see any vars. | ||
SLANG_ASSERT(!as<IRVar>(inst)); | ||
|
||
HashSet<IRUse*> loopUses; |
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.
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
.
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.
Fixed!
OpCheckpointObject
is then lowered to a no-op after hoisting is complete.Also added a test to check for this.
Fixes: #6394 and #5999