Searched refs:Limit (Results 1 - 22 of 22) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DAllocationOrder.h60 /// Limit'th register in the RegisterClassInfo allocation order.
62 /// This can produce more than Limit registers if there are hints.
63 unsigned nextWithDups(unsigned Limit) { argument
66 if (Pos < int(Limit))
H A DInterferenceCache.cpp165 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; local
167 i != e && RegMaskSlots[i] < Limit; ++i)
222 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start; local
224 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
H A DRegisterPressure.cpp546 unsigned Limit = TRI->getRegPressureSetLimit(i); local
547 if (Limit > POld) {
548 if (Limit > PNew)
551 PDiff = PNew - Limit; // Just exceeded limit.
553 else if (Limit > PNew)
554 PDiff = Limit - POld; // Just obeyed limit.
H A DMachineScheduler.cpp494 unsigned Limit = TRI->getRegPressureSetLimit(i); local
496 << "Limit " << Limit
498 if (RegionPressure[i] > Limit)
520 unsigned Limit = TRI->getRegPressureSetLimit(i);
521 if (NewMaxPressure[i] > Limit ) {
523 << NewMaxPressure[i] << " > " << Limit << "\n";
1554 << " CP Limit " << CriticalPathLimit << '\n');
H A DMachineLICM.cpp1078 unsigned Limit = RegLimit[RCId]; local
1088 if (RP[RCId] + Cost >= Limit)
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Format/
H A DFormat.cpp1181 unsigned Limit = Style.ColumnLimit - Indent; local
1182 // If we already exceed the column limit, we set 'Limit' to 0. The different
1184 Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength;
1190 tryMergeSimpleBlock(I, E, Limit);
1192 tryMergeSimpleIf(I, E, Limit);
1195 tryMergeSimplePPDirective(I, E, Limit);
1202 unsigned Limit) {
1203 if (Limit
1200 tryMergeSimplePPDirective(std::vector<AnnotatedLine>::iterator &I, std::vector<AnnotatedLine>::iterator E, unsigned Limit) argument
1216 tryMergeSimpleIf(std::vector<AnnotatedLine>::iterator &I, std::vector<AnnotatedLine>::iterator E, unsigned Limit) argument
1240 tryMergeSimpleBlock(std::vector<AnnotatedLine>::iterator &I, std::vector<AnnotatedLine>::iterator E, unsigned Limit) argument
1290 nextTwoLinesFitInto(std::vector<AnnotatedLine>::iterator I, unsigned Limit) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp461 unsigned Limit = ~0U; local
468 Limit = 32;
471 Limit = 16;
474 Limit = 16;
477 Limit = 32;
492 ((Count < Limit) && RegNum == PRegNum+1))) {
530 unsigned Bytes, unsigned Limit,
548 if (Bytes == 0 || (Limit && Bytes >= Limit))
563 unsigned Bytes, unsigned Limit,
529 isMatchingDecrement(MachineInstr *MI, unsigned Base, unsigned Bytes, unsigned Limit, ARMCC::CondCodes Pred, unsigned PredReg) argument
562 isMatchingIncrement(MachineInstr *MI, unsigned Base, unsigned Bytes, unsigned Limit, ARMCC::CondCodes Pred, unsigned PredReg) argument
877 unsigned Limit = isAM5 ? 0 : (isAM2 ? 0x1000 : 0x100); local
1621 int Limit = (1 << 8) * Scale; local
1631 int Limit = (1 << 8) * Scale; local
[all...]
H A DARMFrameLowering.cpp1048 unsigned Limit = (1 << 12) - 1; local
1058 Limit = std::min(Limit, (1U << 8) - 1);
1066 Limit = std::min(Limit, (1U << 8) - 1);
1070 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
1076 Limit = std::min(Limit, (1U << 8) - 1);
1091 return Limit;
[all...]
H A DThumb2SizeReduction.cpp47 uint8_t Imm1Limit; // Limit of immediate field (bits)
48 uint8_t Imm2Limit; // Limit of immediate field when it's two-address
676 unsigned Limit = (1 << Entry.Imm2Limit) - 1; local
677 if (Imm > Limit)
760 unsigned Limit = ~0U; local
762 Limit = (1 << Entry.Imm1Limit) - 1;
777 if (((unsigned)MO.getImm()) > Limit)
/freebsd-10.0-release/sys/boot/i386/pxeldr/
H A Dpxeldr.S281 gdtdesc: .word gdt.1-gdt-1 # Limit
/freebsd-10.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp470 unsigned Limit = (1 << 16) - 1; local
480 Limit = std::min(Limit, 0xfffu);
486 Limit = std::min(Limit, static_cast<unsigned>(MaxOffset));
493 return Limit;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnostic.h401 void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; } argument
405 void setTemplateBacktraceLimit(unsigned Limit) { argument
406 TemplateBacktraceLimit = Limit;
417 void setConstexprBacktraceLimit(unsigned Limit) { argument
418 ConstexprBacktraceLimit = Limit;
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp49 // Limit for the number of instructions to scan in a block.
194 unsigned Limit = BlockScanLimit; local
198 // Limit the amount of scanning we do so we don't end up with quadratic
200 --Limit;
201 if (!Limit)
364 unsigned Limit = BlockScanLimit; local
374 // Limit the amount of scanning we do so we don't end up with quadratic
376 --Limit;
377 if (!Limit)
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DAPInt.h388 uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
389 return (getActiveBits() > 64 || getZExtValue() > Limit) ?
390 Limit : getZExtValue();
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp431 unsigned Limit = Diags.getTemplateBacktraceLimit(); local
432 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
433 SkipStart = Limit / 2 + Limit % 2;
434 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
450 << unsigned(ActiveTemplateInstantiations.size() - Limit);
/freebsd-10.0-release/sys/boot/i386/cdboot/
H A Dcdboot.S557 gdtdesc: .word gdt.1-gdt-1 # Limit
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DConstants.h220 uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
221 return Val.getLimitedValue(Limit);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp458 void addCallStack(unsigned Limit);
470 unsigned Limit = Ctx.getDiagnostics().getConstexprBacktraceLimit(); local
471 if (Limit)
472 CallStackNotes = std::min(CallStackNotes, Limit + 1);
481 addCallStack(Limit);
639 void EvalInfo::addCallStack(unsigned Limit) { argument
643 if (Limit && Limit < ActiveCalls) {
644 SkipStart = Limit / 2 + Limit
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp999 int Limit = HWLoopLimit; local
1000 if (Limit >= 0) {
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1687 return; // Limit search depth.
2135 return 1; // Limit search depth.
3488 unsigned Limit, uint64_t Size,
3578 if (++NumMemOps > Limit)
3620 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize); local
3622 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
3732 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize); local
3734 if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
3487 FindOptimalMemOpLowering(std::vector<EVT> &MemOps, unsigned Limit, uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc, bool AllowOverlap, SelectionDAG &DAG, const TargetLowering &TLI) argument
/freebsd-10.0-release/sys/boot/pc98/cdboot/
H A Dcdboot.S765 gdtdesc: .word gdt.1-gdt-1 # Limit
/freebsd-10.0-release/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp320 unsigned Limit = 20; local
345 if (--Limit == 0) return true;

Completed in 399 milliseconds