Home
last modified time | relevance | path

Searched refs:BoolVec (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp2697 Value *BoolVec; in instCombineIntrinsic() local
2699 if (match(Mask, PatternMatch::m_SExt(PatternMatch::m_Value(BoolVec))) && in instCombineIntrinsic()
2700 BoolVec->getType()->isVectorTy() && in instCombineIntrinsic()
2701 BoolVec->getType()->getScalarSizeInBits() == 1) { in instCombineIntrinsic()
2711 return SelectInst::Create(BoolVec, Op1, Op0); in instCombineIntrinsic()
2719 Value *Sel = IC.Builder.CreateSelect(BoolVec, CastOp1, CastOp0); in instCombineIntrinsic()
H A DX86ISelLowering.cpp50009 SDValue BoolVec = DAG.getBitcast(RegVT, IntLoad); in combineLoad() local
50010 return DCI.CombineTo(N, BoolVec, IntLoad.getValue(1), true); in combineLoad()
53848 SDValue BoolVec = Src.getOperand(0); in combineCMP() local
53850 if (BoolVec.getOpcode() == X86ISD::KSHIFTR) { in combineCMP()
53851 ShAmt = BoolVec.getConstantOperandVal(1); in combineCMP()
53852 BoolVec = BoolVec.getOperand(0); in combineCMP()
53854 BoolVec = widenMaskVector(BoolVec, false, Subtarget, DAG, dl); in combineCMP()
53855 EVT VecVT = BoolVec.getValueType(); in combineCMP()
53860 Op = DAG.getBitcast(BCVT, BoolVec); in combineCMP()