Home
last modified time | relevance | path

Searched refs:Limits (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasmTraits.h72 static unsigned getHashValue(const wasm::WasmLimits &Limits) {
73 unsigned Hash = hash_value(Limits.Flags);
74 Hash = hash_combine(Hash, Limits.Minimum);
75 if (Limits.Flags & llvm::wasm::WASM_LIMITS_FLAG_HAS_MAX) {
76 Hash = hash_combine(Hash, Limits.Maximum);
100 DenseMapInfo<wasm::WasmLimits, void>::getHashValue(TableType.Limits));
H A DWasm.h317 WasmLimits Limits; member
528 return LHS.ElemType == RHS.ElemType && LHS.Limits == RHS.Limits;
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.cpp83 bool HasMaximum = Type.Limits.Flags & wasm::WASM_LIMITS_FLAG_HAS_MAX; in emitTableType()
84 if (Type.Limits.Minimum != 0 || HasMaximum) { in emitTableType()
85 OS << ", " << Type.Limits.Minimum; in emitTableType()
87 OS << ", " << Type.Limits.Maximum; in emitTableType()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h47 struct Limits { struct
55 Limits TableLimits; argument
97 Limits Memory;
334 std::vector<Limits> Memories;
432 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Limits) in LLVM_YAML_IS_SEQUENCE_VECTOR()
504 template <> struct MappingTraits<WasmYAML::Limits> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
505 static void mapping(IO &IO, WasmYAML::Limits &Limits); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp25 Limits.push_back(Limit); in beginRecord()
30 assert(!Limits.empty() && "Not in a record!"); in endRecord()
31 Limits.pop_back(); in endRecord()
64 assert(!Limits.empty() && "Not in a record!"); in maxFieldLength()
71 std::optional<uint32_t> Min = Limits.front().bytesRemaining(Offset); in maxFieldLength()
72 for (auto X : ArrayRef(Limits).drop_front()) { in maxFieldLength()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInsertWaitcnts.cpp252 HardwareLimits Limits, RegisterEncoding Encoding, in WaitcntBrackets() argument
255 : ST(SubTarget), MaxCounter(MaxCounter), Limits(Limits), in WaitcntBrackets()
262 return Limits.LoadcntMax; in getWaitCountMax()
264 return Limits.DscntMax; in getWaitCountMax()
266 return Limits.ExpcntMax; in getWaitCountMax()
268 return Limits.StorecntMax; in getWaitCountMax()
270 return Limits.SamplecntMax; in getWaitCountMax()
272 return Limits.BvhcntMax; in getWaitCountMax()
274 return Limits.KmcntMax; in getWaitCountMax()
414 HardwareLimits Limits = {}; member in __anond28503310211::WaitcntBrackets
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/Utils/
H A DWebAssemblyUtilities.cpp
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h150 wasm::WasmLimits Limits = {flags, 0, 0}; variable
151 setTableType({VT, Limits});
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp481 bool parseLimits(wasm::WasmLimits *Limits) { in parseLimits() argument
487 Limits->Minimum = Val; in parseLimits()
491 Limits->Flags |= wasm::WASM_LIMITS_FLAG_HAS_MAX; in parseLimits()
497 Limits->Maximum = Val; in parseLimits()
832 wasm::WasmLimits Limits = DefaultLimits(); in parseDirective() local
833 if (isNext(AsmToken::Comma) && parseLimits(&Limits)) in parseDirective()
841 Limits.Flags |= wasm::WASM_LIMITS_FLAG_IS_64; in parseDirective()
843 wasm::WasmTableType Type = {*ElemType, Limits}; in parseDirective()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp370 void MappingTraits<WasmYAML::Limits>::mapping(IO &IO, in mapping()
371 WasmYAML::Limits &Limits) { in mapping() argument
372 IO.mapOptional("Flags", Limits.Flags, 0); in mapping()
373 IO.mapRequired("Minimum", Limits.Minimum); in mapping()
374 if (!IO.outputting() || Limits.Flags & wasm::WASM_LIMITS_FLAG_HAS_MAX) in mapping()
375 IO.mapOptional("Maximum", Limits.Maximum); in mapping()
H A DWasmEmitter.cpp118 static int writeLimits(const WasmYAML::Limits &Lim, raw_ostream &OS) { in writeLimits()
461 for (const WasmYAML::Limits &Mem : Section.Memories) in writeSectionContent()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyUtilities.cpp137 wasm::WasmLimits Limits = {0, 1, 1}; in getOrCreateFuncrefCallTableSymbol() local
138 wasm::WasmTableType TableType = {wasm::ValType::FUNCREF, Limits}; in getOrCreateFuncrefCallTableSymbol()
/freebsd/contrib/llvm-project/libcxx/src/include/
H A Dto_chars_floating_point.h599 using Limits = numeric_limits<Floating>;
604 constexpr int MaxP = Limits::max_exponent10 + 1; // MaxP performs no rounding during trial formatting
609 constexpr Floating last = Limits::infinity(); // one bit above Limits::max()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DScaledNumber.h782 typedef std::numeric_limits<IntT> Limits; in toInt() typedef
785 if (*this >= Limits::max()) in toInt()
786 return Limits::max(); in toInt()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.h260 SmallVector<RecordLimit, 2> Limits; variable
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp875 encodeULEB128(Import.Table.Limits.Flags, W->OS); in writeImportSection()
973 encodeULEB128(Table.Type.Limits.Flags, W->OS); in writeTableSection()
974 encodeULEB128(Table.Type.Limits.Minimum, W->OS); in writeTableSection()
975 if (Table.Type.Limits.Flags & wasm::WASM_LIMITS_FLAG_HAS_MAX) in writeTableSection()
976 encodeULEB128(Table.Type.Limits.Maximum, W->OS); in writeTableSection()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp304 TableType.Limits = readLimits(Ctx); in readTableType()
1370 auto Limits = readLimits(Ctx); in parseMemorySection() local
1371 if (Limits.Flags & wasm::WASM_LIMITS_FLAG_IS_64) in parseMemorySection()
1373 Memories.push_back(Limits); in parseMemorySection()
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap3-n950-n9.dtsi297 /* Limits are 0.5g * value */
/freebsd/stand/common/
H A Dhelp.common337 Limits the amount of physical memory space available to
/freebsd/sys/conf/
H A Doptions949 # Resource Limits
H A DNOTES2791 # Resource Limits
/freebsd/contrib/sendmail/cf/
H A DREADME4170 [undefined] Limits the maximum number