Searched refs:Limit (Results 51 - 75 of 78) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp361 S.Limit = true;
H A DCodeCoverage.cpp952 S.Limit = true;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp343 int64_t Limit = Int64 ? INT64_MIN : INT32_MIN; local
344 int64_t Substitute = IsUnsigned ? 0 : Limit;
345 double CmpVal = IsUnsigned ? -(double)Limit * 2.0 : -(double)Limit;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineLICM.cpp1206 int Limit = RegLimit[Class]; local
1214 if (static_cast<int>(RP[Class]) + RPIdAndCost.second >= Limit)
H A DMachinePipeliner.cpp241 int Limit = SwpLoopLimit; local
242 if (Limit >= 0) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp523 const unsigned Limit = SimplifyLimit; local
526 if (Count++ >= Limit)
547 return Count < Limit ? C.Root : nullptr;
H A DHexagonHardwareLoops.cpp1167 int Limit = HWLoopLimit; local
1168 if (Limit >= 0) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp715 const unsigned Limit = TLI->getMaxStoresPerMemmove(F->hasMinSize()); local
722 MemOps, Limit,
1578 // Limit the CFG of the loop body for targets with a branch predictor.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp2726 unsigned Limit = 0; local
2729 Limit < 10 && U != E; ++U, ++Limit) {
2763 return !AllUsesAcceptSReg && (Limit < 10);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1576 uint64_t getLimitedValue(uint64_t Limit = UINT64_MAX) {
1577 return Value->getLimitedValue(Limit);
H A DTargetLowering.h3246 /// Return true if the number of memory ops is below the threshold (Limit).
3249 bool findOptimalMemOpLowering(std::vector<EVT> &MemOps, unsigned Limit,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1260 auto Limit = MD->getDefaultBlockScanLimit(); local
1389 /*QueryInst=*/ nullptr, &Limit);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp4787 unsigned Limit = getDiagnostics().getDiagnosticOptions().SpellCheckingLimit;
4788 if (Limit && TyposCorrected >= Limit)
H A DSemaExprCXX.cpp7066 unsigned Limit = 9;
7067 if (OperatorArrows.size() > Limit) {
7068 // Produce Limit-1 normal notes and one 'skipping' note.
7069 SkipStart = (Limit - 1) / 2 + (Limit - 1) % 2;
7070 SkipCount = OperatorArrows.size() - (Limit - 1);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp1778 const uint64_t Limit = uint64_t(std::numeric_limits<unsigned>::max()) + 1;
1779 uint64_t Val64 = Token.integerValue().getLimitedValue(Limit);
1780 if (Val64 == Limit)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp1811 auto IsSignedSaturateLimit = [&](Value *Limit, bool IsAdd) {
1812 Type *Ty = Limit->getType();
1817 if (!match(Limit, m_Select(m_ICmp(Pred, m_Value(Op), m_APInt(C)),
H A DInstCombineCompares.cpp3095 // Limit to one use to ensure we don't increase instruction count.
3161 APInt Limit = APInt::getOneBitSet(BitWidth, BitWidth - Num - 1); local
3163 II->getArgOperand(0), ConstantInt::get(Ty, Limit));
3170 APInt Limit = APInt::getLowBitsSet(BitWidth, BitWidth - Num); local
3172 II->getArgOperand(0), ConstantInt::get(Ty, Limit));
3177 // Limit to one use to ensure we don't increase instruction count.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp1945 {Disassembler::Limit::Instructions, disasm_lines},
/freebsd-13-stable/sys/contrib/edk2/Include/Library/
H A DBaseLib.h5376 UINT16 Limit; member in struct:__anon9454
5452 UINT32 LimitLow:16; ///< Segment Limit 15..00
5459 UINT32 LimitHigh:4; ///< Segment Limit 19..16
5509 UINT32 LimitLow:16; ///< Segment Limit 15..00
5516 UINT32 LimitHigh:4; ///< Segment Limit 19..16
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp1338 const SCEV *Limit = ExtendOpTraits<ExtendOpTy>::getOverflowLimitForStep(
1340 if (Limit && isKnownPredicate(Pred, PreAR, Limit)) // proves (1)
1720 // Limit recursion depth.
2195 // Limit recursion calls depth.
2679 // Limit recursion calls depth, but fold all-constant expressions.
2857 // Limit max number of arguments to avoid creation of unreasonably big
7849 unsigned MaxIterations = MaxBruteForceIterations; // Limit analysis.
10433 APInt Limit = MaxValue - (StrideForMaxBECount - 1);
10439 APInt MaxEnd = IsSigned ? APIntOps::smin(getSignedRangeMax(End), Limit)
[all...]
H A DDependenceAnalysis.cpp1028 const SCEV *Limit = AddRec->evaluateAtIteration(BECount, *SE); local
1029 if (SE->isKnownNegative(Limit))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2589 return Known; // Limit search depth.
3580 return 1; // Limit search depth.
4127 return false; // Limit search depth.
6044 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
6051 MemOps, Limit, Op, DstPtrInfo.getAddrSpace(),
6226 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
6228 MemOps, Limit,
9929 size_t Limit = SDNode::getMaxNumOperands();
9930 while (Vals.size() > Limit) {
9931 unsigned SliceIdx = Vals.size() - Limit;
[all...]
H A DTargetLowering.cpp184 std::vector<EVT> &MemOps, unsigned Limit, const MemOp &Op, unsigned DstAS,
263 if (++NumMemOps > Limit)
627 // Limit search depth.
937 // Limit search depth.
2342 // Limit search depth.
183 findOptimalMemOpLowering( std::vector<EVT> &MemOps, unsigned Limit, const MemOp &Op, unsigned DstAS, unsigned SrcAS, const AttributeList &FuncAttributes) const argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp126 unsigned Limit = 20; local
155 if (--Limit == 0) return true;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1807 const auto Limit = End - (std::min)(EndAlign, End - Start);
1808 while (End > Limit &&

Completed in 337 milliseconds

1234