Searched refs:MinSize (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTypeSize.h51 uint64_t MinSize; // The known minimum size. member in class:llvm::TypeSize
53 // of MinSize.
56 constexpr TypeSize(uint64_t MinSize, bool Scalable) argument
57 : MinSize(MinSize), IsScalable(Scalable) {}
63 static constexpr TypeSize Scalable(uint64_t MinSize) { argument
64 return TypeSize(MinSize, /*IsScalable=*/true);
71 return std::tie(LHS.MinSize, LHS.IsScalable) ==
72 std::tie(RHS.MinSize, RHS.IsScalable);
92 return LHS.MinSize < RH
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMagic.cpp41 size_t MinSize = local
43 if (Magic.size() < MinSize)
130 size_t MinSize; local
132 MinSize = sizeof(MachO::mach_header);
134 MinSize = sizeof(MachO::mach_header_64);
135 if (Magic.size() >= MinSize)
140 size_t MinSize; local
142 MinSize = sizeof(MachO::mach_header);
144 MinSize = sizeof(MachO::mach_header_64);
145 if (Magic.size() >= MinSize)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DCombinerInfo.h31 bool MinSize)
34 EnableOpt(OptEnabled), EnableOptSize(OptSize), EnableMinSize(MinSize) {
29 CombinerInfo(bool AllowIllegalOps, bool ShouldLegalizeIllegal, LegalizerInfo *LInfo, bool OptEnabled, bool OptSize, bool MinSize) argument
H A DLegalizerInfo.h709 /// Widen the scalar to the next power of two that is at least MinSize.
712 unsigned MinSize = 0) {
716 LegalizeMutations::widenScalarOrEltToNextPow2(TypeIdx, MinSize));
720 /// at least MinSize. No effect if the scalar size is a power of two.
722 unsigned MinSize = 0) {
726 LegalizeMutations::widenScalarOrEltToNextPow2(TypeIdx, MinSize));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsize_class_map.h40 static const uptr MinSize = 1UL << MinSizeLog; member in class:scudo::SizeClassMap
42 static const uptr MidClass = MidSize / MinSize;
68 return (Size + MinSize - 1) >> MinSizeLog;
H A Dquarantine.h184 atomic_store_relaxed(&MinSize, Size / 10 * 9); // 90% of max size.
209 recycle(atomic_load_relaxed(&MinSize), Cb);
244 atomic_uptr MinSize; member in class:scudo::GlobalQuarantine
248 void NOINLINE recycle(uptr MinSize, Callback Cb) { argument
272 while (Cache.getSize() > MinSize)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PreLegalizerCombiner.cpp46 AArch64PreLegalizerCombinerInfo(bool EnableOpt, bool OptSize, bool MinSize, argument
49 /*LegalizerInfo*/ nullptr, EnableOpt, OptSize, MinSize),
H A DAArch64ConditionalCompares.cpp767 bool MinSize; member in class:__anon2025::AArch64ConditionalCompares
865 if (MinSize) {
943 MinSize = MF.getFunction().hasMinSize();
H A DAArch64A57FPLoadBalancing.cpp417 unsigned MinSize = L.front()->size() - SizeFuzz; local
419 if ((*I)->size() <= MinSize) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Support/
H A DBumpVector.h199 /// least one more element or MinSize if specified.
200 void grow(BumpVectorContext &C, size_type MinSize = 1);
225 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) { argument
229 if (NewCapacity < MinSize)
230 NewCapacity = MinSize;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOUniversal.cpp132 uint32_t MinSize = sizeof(MachO::fat_header); local
134 MinSize += sizeof(MachO::fat_arch) * NumberOfObjects;
136 MinSize += sizeof(MachO::fat_arch_64) * NumberOfObjects;
141 if (Buf.size() < MinSize) {
174 if (A.getOffset() < MinSize) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp159 uint32_t MinSize = Index.toArrayIndex() + 1; local
161 if (MinSize <= capacity())
164 uint32_t NewCapacity = MinSize * 3 / 2;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCallingConvLower.cpp44 CCValAssign::LocInfo LocInfo, int MinSize,
49 if (MinSize > (int)Size)
50 Size = MinSize;
43 HandleByVal(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, int MinSize, int MinAlignment, ISD::ArgFlagsTy ArgFlags) argument
H A DTargetRegisterInfo.cpp307 unsigned MinSize = getRegSizeInBits(*RCA);
315 if (!RC || getRegSizeInBits(*RC) < MinSize)
332 // Bail early if we reached MinSize. We won't find a better candidate.
333 if (getRegSizeInBits(*BestRC) == MinSize)
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTVector.h355 /// least one more element or MinSize if specified.
356 void grow(const ASTContext &C, size_type MinSize = 1);
380 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { argument
384 if (NewCapacity < MinSize)
385 NewCapacity = MinSize;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DForceFunctionAttrs.cpp37 .Case("minsize", Attribute::MinSize)
H A DHotColdSplitting.cpp154 if (!F.hasFnAttribute(Attribute::MinSize)) {
155 F.addFnAttr(Attribute::MinSize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSubtarget.cpp99 bool MinSize)
101 CPUString(CPU), OptMinSize(MinSize), IsLittle(IsLittle),
96 ARMSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS, const ARMBaseTargetMachine &TM, bool IsLittle, bool MinSize) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h207 /// element, or MinSize more elements if specified.
208 void grow(size_t MinSize = 0);
233 void SmallVectorTemplateBase<T, TriviallyCopyable>::grow(size_t MinSize) { argument
234 if (MinSize > UINT32_MAX)
239 NewCapacity = std::min(std::max(NewCapacity, MinSize), size_t(UINT32_MAX));
298 /// least one more element or MinSize if specified.
299 void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSubtarget.cpp433 unsigned MinSize = 0; local
470 MinSize = MaxSize = mdconst::extract<ConstantInt>(
482 MinSize = 0;
487 MDNode *MaxWorkGroupSizeRange = MDB.createRange(APInt(32, MinSize),
H A DAMDGPUInline.cpp119 && !Caller->hasFnAttribute(Attribute::MinSize))
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp730 size_t MinSize = -1; local
734 MinSize = Min(File.Size, MinSize);
752 CorporaFiles.size(), MinSize, MaxSize, TotalSize, GetPeakRSSMb());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp48 unsigned MinSize = LSize < RSize ? LSize : RSize; local
51 for (; Count != MinSize; ++Count)
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.cpp269 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth(); local
270 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
272 while (BranchFixups.size() > MinSize &&
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h461 int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);

Completed in 263 milliseconds

12