Searched refs:NewSelect (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineNegator.cpp | 319 auto *NewSelect = cast<SelectInst>(I->clone()); in visitImpl() local 321 NewSelect->swapValues(); in visitImpl() 323 NewSelect->setName(I->getName() + ".neg"); in visitImpl() 324 Builder.Insert(NewSelect); in visitImpl() 325 return NewSelect; in visitImpl()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUCodeGenPrepare.cpp | 643 Value *NewSelect = Builder.CreateSelect(Sel->getCondition(), in foldBinOpIntoSelect() local 645 NewSelect->takeName(&BO); in foldBinOpIntoSelect() 646 BO.replaceAllUsesWith(NewSelect); in foldBinOpIntoSelect()
|
| H A D | AMDGPUISelLowering.cpp | 3532 SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, VT, Cond, in distributeOpThroughSelect() local 3534 DCI.AddToWorklist(NewSelect.getNode()); in distributeOpThroughSelect() 3535 return DAG.getNode(Op, SL, VT, NewSelect); in distributeOpThroughSelect() 3594 SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, VT, in foldFreeOpFromSelect() local 3596 DCI.AddToWorklist(NewSelect.getNode()); in foldFreeOpFromSelect() 3597 return DAG.getNode(LHS.getOpcode(), SL, VT, NewSelect); in foldFreeOpFromSelect()
|
| H A D | SIISelLowering.cpp | 5057 SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, SelectVT, in ReplaceNodeResults() local 5061 NewSelect = DAG.getNode(ISD::TRUNCATE, SL, NewVT, NewSelect); in ReplaceNodeResults() 5062 Results.push_back(DAG.getNode(ISD::BITCAST, SL, VT, NewSelect)); in ReplaceNodeResults()
|
| H A D | SIInstrInfo.cpp | 6535 auto NewSelect = in lowerSelect() local 6537 NewSelect->getOperand(3).setIsUndef(Cond.isUndef()); in lowerSelect()
|
| /llvm-project-15.0.7/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 6205 SDValue NewSelect = DAG.getNode(SystemZISD::SELECT_CCMASK, DL, VT, Ops); in combineZERO_EXTEND() local 6209 DAG.getNode(ISD::TRUNCATE, DL, N0.getValueType(), NewSelect); in combineZERO_EXTEND() 6212 return NewSelect; in combineZERO_EXTEND()
|