[llvm] [AArch64][SME] Introduce CHECK_MATCHING_VL pseudo for streaming transitions (PR #157510)
Sander de Smalen via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 12 07:14:31 PDT 2025
================
@@ -2940,6 +2940,52 @@ AArch64TargetLowering::EmitDynamicProbedAlloc(MachineInstr &MI,
return NextInst->getParent();
}
+MachineBasicBlock *
+AArch64TargetLowering::EmitCheckVL(MachineInstr &MI,
+ MachineBasicBlock *MBB) const {
+ MachineFunction *MF = MBB->getParent();
+ const TargetInstrInfo *TII = Subtarget->getInstrInfo();
+ const BasicBlock *LLVM_BB = MBB->getBasicBlock();
+ DebugLoc DL = MI.getDebugLoc();
+ MachineFunction::iterator It = ++MBB->getIterator();
----------------
sdesmalen-arm wrote:
Super-nit: Also please move this closer to its use rather than defining it at the top of the function.
https://github.com/llvm/llvm-project/pull/157510
More information about the llvm-commits
mailing list