Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
HDScalarEvolution.cpp7956 Operator *LShift = dyn_cast<Operator>(L->getOperand(0)); in createSCEV() local
7958 if (LShift && LShift->getOpcode() == Instruction::Shl) { in createSCEV()
7960 const SCEV *ShlOp0SCEV = getSCEV(LShift->getOperand(0)); in createSCEV()
7961 ShlAmtCI = dyn_cast<ConstantInt>(LShift->getOperand(1)); in createSCEV()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86ISelLowering.cpp29138 bool LShift = (VT.is128BitVector() && Subtarget.hasSSE2()) || in supportedVectorShiftWithImm() local
29141 bool AShift = LShift && (Subtarget.hasAVX512() || in supportedVectorShiftWithImm()
29143 return (Opcode == ISD::SRA) ? AShift : LShift; in supportedVectorShiftWithImm()
29178 bool LShift = VT.is128BitVector() || VT.is256BitVector(); in supportedVectorVarShift() local
29179 bool AShift = LShift && VT != MVT::v2i64 && VT != MVT::v4i64; in supportedVectorVarShift()
29180 return (Opcode == ISD::SRA) ? AShift : LShift; in supportedVectorVarShift()