Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp6588 auto IConstant = getIConstantVRegValWithLookThrough(Src, MRI); in isOneOrOneSplat() local
6589 return IConstant && IConstant->Value == 1; in isOneOrOneSplat()
6601 auto IConstant = getIConstantVRegValWithLookThrough(Src, MRI); in isZeroOrZeroSplat() local
6602 return IConstant && IConstant->Value == 0; in isZeroOrZeroSplat()
6623 std::optional<ValueAndVReg> IConstant = in isConstantSplatVector() local
6625 if (IConstant && IConstant->Value == SplatValue) in isConstantSplatVector()
6636 auto IConstant = getIConstantVRegValWithLookThrough(Src, MRI); in getConstantOrConstantSplatVector() local
6637 if (IConstant) in getConstantOrConstantSplatVector()
6638 return IConstant->Value; in getConstantOrConstantSplatVector()
6647 std::optional<ValueAndVReg> IConstant = in getConstantOrConstantSplatVector() local
[all …]