Searched refs:NewSelect (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineNegator.cpp | 291 auto *NewSelect = cast<SelectInst>(I->clone()); in visitImpl() local 293 NewSelect->swapValues(); in visitImpl() 295 NewSelect->setName(I->getName() + ".neg"); in visitImpl() 296 Builder.Insert(NewSelect); in visitImpl() 297 return NewSelect; in visitImpl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUCodeGenPrepare.cpp | 623 Value *NewSelect = Builder.CreateSelect(Sel->getCondition(), in foldBinOpIntoSelect() local 625 NewSelect->takeName(&BO); in foldBinOpIntoSelect() 626 BO.replaceAllUsesWith(NewSelect); in foldBinOpIntoSelect()
|
| H A D | AMDGPUISelLowering.cpp | 3600 SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, VT, Cond, in distributeOpThroughSelect() local 3602 DCI.AddToWorklist(NewSelect.getNode()); in distributeOpThroughSelect() 3603 return DAG.getNode(Op, SL, VT, NewSelect); in distributeOpThroughSelect() 3662 SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, VT, in foldFreeOpFromSelect() local 3664 DCI.AddToWorklist(NewSelect.getNode()); in foldFreeOpFromSelect() 3665 return DAG.getNode(LHS.getOpcode(), SL, VT, NewSelect); in foldFreeOpFromSelect()
|
| H A D | SIISelLowering.cpp | 4931 SDValue NewSelect = DAG.getNode(ISD::SELECT, SL, SelectVT, in ReplaceNodeResults() local 4935 NewSelect = DAG.getNode(ISD::TRUNCATE, SL, NewVT, NewSelect); in ReplaceNodeResults() 4936 Results.push_back(DAG.getNode(ISD::BITCAST, SL, VT, NewSelect)); in ReplaceNodeResults()
|
| H A D | SIInstrInfo.cpp | 6220 auto NewSelect = in lowerSelect() local 6222 NewSelect->getOperand(3).setIsUndef(Cond.isUndef()); in lowerSelect()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 5906 SDValue NewSelect = DAG.getNode(SystemZISD::SELECT_CCMASK, DL, VT, Ops); in combineZERO_EXTEND() local 5910 DAG.getNode(ISD::TRUNCATE, DL, N0.getValueType(), NewSelect); in combineZERO_EXTEND() 5913 return NewSelect; in combineZERO_EXTEND()
|