Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DConstantRange.h319 enum PreferredRangeType { Smallest, Unsigned, Signed }; enumerator
325 PreferredRangeType Type = Smallest) const;
333 PreferredRangeType Type = Smallest) const;
402 PreferredRangeType RangeType = Smallest) const;
414 PreferredRangeType RangeType = Smallest) const;
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/AArch64/
H A Dsmallest-and-widest-types.ll8 ; CHECK: The Smallest and Widest types: 64 / 64 bits
40 ; CHECK: The Smallest and Widest types: 4294967295 / 32 bits
63 ; CHECK: The Smallest and Widest types: 4294967295 / 16 bits
85 ; CHECK: The Smallest and Widest types: 4294967295 / 8 bits
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/X86/
H A Dvector_ptr_load_store.ll20 ; CHECK: LV: The Smallest and Widest types: 64 / 64 bits.
55 ; CHECK: LV: The Smallest and Widest types: 16 / 64 bits.
98 ; CHECK: LV: The Smallest and Widest types: 8 / 64 bits.
123 ; CHECK: LV: The Smallest and Widest types: 16 / 64 bits.
/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZTDC.cpp135 APFloat Smallest = APFloat::getSmallestNormalized(Sem); in convertFCmp() local
136 APFloat NegSmallest = Smallest; in convertFCmp()
146 } else if (Const->isExactlyValue(Smallest)) { in convertFCmp()
/llvm-project-15.0.7/llvm/test/CodeGen/Thumb/
H A Dlarge-stack.ll43 ; Smallest stack for which we use a constant pool
54 ; Smallest stack for which we use a constant pool
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp1088 const SCEV *Smallest = nullptr, *Greatest = nullptr, *GreatestSeen = nullptr; in calculateSubRanges() local
1092 Smallest = Start; in calculateSubRanges()
1112 Smallest = SE.getAddExpr(End, One); in calculateSubRanges()
1117 auto Clamp = [this, Smallest, Greatest, IsSignedPredicate](const SCEV *S) { in calculateSubRanges()
1119 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges()
1120 : SE.getUMaxExpr(Smallest, SE.getUMinExpr(Greatest, S)); in calculateSubRanges()
1130 SE.isKnownPredicate(PredLE, Range.getBegin(), Smallest); in calculateSubRanges()
/llvm-project-15.0.7/llvm/test/MC/Disassembler/PowerPC/
H A Dppc64-encoding-ISA31.txt14 # Smallest non-zero displacement.
/llvm-project-15.0.7/llvm/unittests/IR/
H A DConstantRangeTest.cpp548 ConstantRange SmallestCR = OpFn(CR1, CR2, ConstantRange::Smallest); in testBinarySetOperationExhaustive()
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DAPFloatTest.cpp3477 APFloat Smallest = APFloat::getSmallest(APFloat::IEEEdouble(), false); in TEST() local
3534 Frac = frexp(Smallest, Exp, RM); in TEST()
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dlower-mem-intrinsics.ll43 ; Smallest static size which will be expanded
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGBuiltin.cpp3286 APFloat Smallest = APFloat::getSmallestNormalized( in EmitBuiltinExpr() local
3289 Builder.CreateFCmpUGE(Abs, ConstantFP::get(V->getContext(), Smallest), in EmitBuiltinExpr()
3351 APFloat Smallest = APFloat::getSmallestNormalized( in EmitBuiltinExpr() local
3354 Builder.CreateFCmpUGE(VAbs, ConstantFP::get(V->getContext(), Smallest), in EmitBuiltinExpr()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DScalarEvolution.cpp6766 return SR.intersectWith(UR, ConstantRange::Smallest); in getRangeForAffineAR()