[llvm] [RFC] implement convergence control in MIR using SelectionDAG (PR #71785)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 15 01:43:11 PST 2024


================
@@ -285,6 +285,27 @@ Register InstrEmitter::getVR(SDValue Op,
   return I->second;
 }
 
+static bool isConvergenceCtrlIntrinsic(SDValue Op) {
+  if (Op->isMachineOpcode()) {
----------------
arsenm wrote:

CopyFromReg is fine, but you shouldn't need to handle the pre-selection convergence opcodes 

https://github.com/llvm/llvm-project/pull/71785


More information about the llvm-commits mailing list