Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp1847 uint64_t MaxVL = MaxVLEN / RISCVVType::getSEWLMULRatio(SEW, VLMUL); in computeKnownBitsFromOperator() local
1852 MaxVL = std::min(MaxVL, CI->getZExtValue()); in computeKnownBitsFromOperator()
1854 unsigned KnownZeroFirstBit = Log2_32(MaxVL) + 1; in computeKnownBitsFromOperator()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp17933 uint64_t MaxVL = Subtarget.getRealMaxVLen() / SEW; in computeKnownBitsForTargetNode()
17934 MaxVL = (Fractional) ? MaxVL / LMul : MaxVL * LMul; in computeKnownBitsForTargetNode()
17938 MaxVL = std::min(MaxVL, Op.getConstantOperandVal(1)); in computeKnownBitsForTargetNode()
17940 unsigned KnownZeroFirstBit = Log2_32(MaxVL) + 1; in computeKnownBitsForTargetNode()
17930 uint64_t MaxVL = Subtarget.getRealMaxVLen() / SEW; computeKnownBitsForTargetNode() local