[llvm] [MachineOutliner] Preserve regmasks in calls to outlined functions (PR #120940)
Amara Emerson via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 31 11:29:09 PST 2024
================
@@ -1153,6 +1160,23 @@ bool MachineOutliner::outline(
MI->getMF()->eraseCallSiteInfo(MI);
}
+ if (!RegMasks.empty()) {
+ if (RegMasks.size() == 1) {
+ CallInst->addOperand(
+ MachineOperand::CreateRegMask(*RegMasks.begin()));
+ } else {
+ uint32_t *RegMask = MF->allocateRegMask();
+ unsigned NumRegs =
+ MF->getSubtarget().getRegisterInfo()->getNumRegs();
+ unsigned Size = MachineOperand::getRegMaskSize(NumRegs);
+ memset(RegMask, UINT32_MAX, Size * sizeof(RegMask[0]));
----------------
aemerson wrote:
I feel like this is too low level of an abstraction to be using to construct a new regmask. Can you move this into MachineFunction or some other appropriate place to provide a cleaner API?
https://github.com/llvm/llvm-project/pull/120940
More information about the llvm-commits
mailing list