Skip to content

[AMDGPU] Fix #115505

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

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,18 @@ static MCRegister findScratchNonCalleeSaveRegister(
if (Unused)
return findUnusedRegister(MRI, LiveUnits, RC);

dbgs() << "--------\n";

for (MCRegister Reg : RC) {
if (LiveUnits.available(Reg) && !MRI.isReserved(Reg))
dbgs() << "reg " << Reg << " avail? " << LiveUnits.available(Reg)
<< ", reserved? " << MRI.isReserved(Reg) << "\n";
}

for (MCRegister Reg : RC) {
if (LiveUnits.available(Reg) && !MRI.isReserved(Reg)) {
dbgs() << "--------choose reg " << Reg << '\n';
return Reg;
}
}

return MCRegister();
Expand Down
Loading