Home
last modified time | relevance | path

Searched defs:smax (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/test/MC/AArch64/SVE/
H A Dsmax.s12 smax z0.b, z0.b, #-128 label
18 smax z31.b, z31.b, #127 label
24 smax z0.h, z0.h, #-128 label
30 smax z31.h, z31.h, #127 label
36 smax z0.s, z0.s, #-128 label
42 smax z31.s, z31.s, #127 label
48 smax z0.d, z0.d, #-128 label
54 smax z31.d, z31.d, #127 label
94 smax z4.d, p7/m, z4.d, z31.d label
106 smax z4.d, p7/m, z4.d, z31.d label
[all …]
H A Dsmax-diagnostics.s3 smax z0.b, z0.b, #-129 label
8 smax z31.b, z31.b, #128 label
13 smax z0.b, p8/m, z0.b, z0.b label
23 smax z31.d, z31.d, #127 label
/llvm-project-15.0.7/mlir/lib/Interfaces/
H A DInferIntRangeInterface.cpp27 const APInt &ConstantIntRanges::smax() const { return smaxVal; } in smax() function in ConstantIntRanges
54 const APInt &smax) { in fromSigned()
70 APInt smin, smax; in fromUnsigned() local
/llvm-project-15.0.7/mlir/include/mlir/Interfaces/
H A DInferIntRangeInterface.h31 const APInt &smax) in ConstantIntRanges()
/llvm-project-15.0.7/mlir/lib/Dialect/Arithmetic/IR/
H A DInferIntRangeInterfaceImpls.cpp324 APInt smax = APInt::getSignedMaxValue(width); in inferResultRanges() local
425 const APInt &smax = lhs.smax().sgt(rhs.smax()) ? lhs.smax() : rhs.smax(); in inferResultRanges() local
451 const APInt &smax = lhs.smax().slt(rhs.smax()) ? lhs.smax() : rhs.smax(); in inferResultRanges() local
489 APInt smax = range.smax().sext(destWidth); in extSIRange() local
509 APInt smax = range.smax().trunc(destWidth); in truncIRange() local
/llvm-project-15.0.7/mlir/lib/Analysis/DataFlow/
H A DIntegerRangeAnalysis.cpp31 APInt smax = width != 0 ? APInt::getSignedMaxValue(width) : umax; in getPessimisticValueState() local
/llvm-project-15.0.7/llvm/lib/Support/
H A DKnownBits.cpp141 KnownBits KnownBits::smax(const KnownBits &LHS, const KnownBits &RHS) { in smax() function in KnownBits
/llvm-project-15.0.7/llvm/test/tools/llvm-mca/AArch64/Neoverse/
H A DN2-sve-instructions.s2598 smax z0.b, z0.b, #-128 label
2599 smax z0.d, z0.d, #-128 label
2600 smax z0.h, z0.h, #-128 label
2601 smax z0.s, z0.s, #-128 label
2602 smax z31.b, p7/m, z31.b, z31.b label
2603 smax z31.b, z31.b, #127 label
2604 smax z31.d, p7/m, z31.d, z31.d label
2605 smax z31.d, z31.d, #127 label
2606 smax z31.h, p7/m, z31.h, z31.h label
2607 smax z31.h, z31.h, #127 label
[all …]
H A DN2-neon-instructions.s507 smax v0.2s, v0.2s, v0.2s label
508 smax v0.4h, v0.4h, v0.4h label
509 smax v0.8b, v0.8b, v0.8b label
/llvm-project-15.0.7/llvm/test/tools/llvm-mca/AArch64/Cortex/
H A DA55-neon-instructions.s507 smax v0.2s, v0.2s, v0.2s label
508 smax v0.4h, v0.4h, v0.4h label
509 smax v0.8b, v0.8b, v0.8b label
/llvm-project-15.0.7/llvm/lib/IR/
H A DConstantRange.cpp1159 ConstantRange::smax(const ConstantRange &Other) const { in smax() function in ConstantRange