Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp2905 Value *BoolVec; in instCombineIntrinsic() local
2906 if (match(Mask, m_SExt(m_Value(BoolVec))) && in instCombineIntrinsic()
2907 BoolVec->getType()->isVectorTy() && in instCombineIntrinsic()
2908 BoolVec->getType()->getScalarSizeInBits() == 1) { in instCombineIntrinsic()
2925 BoolVec = IC.Builder.CreateShuffleVector(BoolVec, ScaledMask); in instCombineIntrinsic()
2933 return SelectInst::Create(BoolVec, Op1, Op0); in instCombineIntrinsic()
2941 Value *Sel = IC.Builder.CreateSelect(BoolVec, CastOp1, CastOp0); in instCombineIntrinsic()
H A DX86ISelLowering.cpp51269 SDValue BoolVec = DAG.getBitcast(RegVT, IntLoad); in combineLoad() local
51270 return DCI.CombineTo(N, BoolVec, IntLoad.getValue(1), true); in combineLoad()
55199 SDValue BoolVec = Src.getOperand(0); in combineCMP() local
55201 if (BoolVec.getOpcode() == X86ISD::KSHIFTR) { in combineCMP()
55202 ShAmt = BoolVec.getConstantOperandVal(1); in combineCMP()
55203 BoolVec = BoolVec.getOperand(0); in combineCMP()
55205 BoolVec = widenMaskVector(BoolVec, false, Subtarget, DAG, dl); in combineCMP()
55206 EVT VecVT = BoolVec.getValueType(); in combineCMP()
55211 Op = DAG.getBitcast(BCVT, BoolVec); in combineCMP()