Home
last modified time | relevance | path

Searched refs:TableSize (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/libcxx/benchmarks/
H A Dordered_set.bench.cpp49 TestSets makeTestingSets(size_t TableSize, size_t NumTables, HitType Hit, in makeTestingSets() argument
54 for (uint64_t I = 0; I < TableSize; ++I) { in makeTestingSets()
65 size_t TableSize; member
67 Base(size_t T, size_t N) : TableSize(T), NumTables(N) {} in Base()
70 size_t Total = TableSize * NumTables; in skip()
75 return "_TableSize" + std::to_string(TableSize) + "_NumTables" + in baseName()
85 std::vector<uint64_t> Keys(TableSize); in run()
89 while (State.KeepRunningBatch(TableSize * NumTables)) { in run()
109 auto Data = makeTestingSets(TableSize, NumTables, Hit(), Access()); in run()
111 while (State.KeepRunningBatch(TableSize * NumTables)) { in run()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp211 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
216 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
368 unsigned TableSize = 0; in emitBinSearchTable() local
393 TableSize++; in emitBinSearchTable()
397 if (!TableSize) { in emitBinSearchTable()
402 return TableSize; in emitBinSearchTable()
410 void MapTableEmitter::emitBinSearch(raw_ostream &OS, unsigned TableSize) { in emitBinSearch() argument
413 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
433 unsigned TableSize) { in emitMapFuncBody() argument
441 emitBinSearch(OS, TableSize); in emitMapFuncBody()
[all …]
H A DAsmWriterEmitter.cpp415 unsigned TableSize = std::min(llvm::bit_floor(BytesNeeded), 4u); in EmitGetMnemonic() local
416 BytesNeeded -= TableSize; in EmitGetMnemonic()
417 TableSize *= 8; // Convert to bits; in EmitGetMnemonic()
418 uint64_t Mask = (1ULL << TableSize) - 1; in EmitGetMnemonic()
419 O << " static const uint" << TableSize << "_t OpInfo" << Table in EmitGetMnemonic()
433 Shift += TableSize; in EmitGetMnemonic()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp5962 Module &M, uint64_t TableSize, ConstantInt *Offset,
5972 static bool WouldFitInRegister(const DataLayout &DL, uint64_t TableSize,
6016 Module &M, uint64_t TableSize, ConstantInt *Offset, in SwitchLookupTable() argument
6020 assert(TableSize >= Values.size() && "Can't fit values in table!"); in SwitchLookupTable()
6028 SmallVector<Constant *, 64> TableContents(TableSize); in SwitchLookupTable()
6042 if (Values.size() < TableSize) { in SwitchLookupTable()
6046 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
6068 assert(TableSize >= 2 && "Should be a SingleValue table."); in SwitchLookupTable()
6070 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
6100 if (WouldFitInRegister(DL, TableSize, ValueType)) { in SwitchLookupTable()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp84 static const unsigned TableSize; member in __anon505a1ceb0111::UnmangledFuncInfo
102 assert(Index < TableSize && in toFuncId()
350 const unsigned UnmangledFuncInfo::TableSize = member in __anon505a1ceb0111::UnmangledFuncInfo
1007 for (unsigned I = 0; I != TableSize; ++I) in buildNameMap()
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp60 DylinkSec->TableSize = Info.TableSize; in dumpCustomSection()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h299 unsigned TableSize);
/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DWasm.h53 uint32_t TableSize; // Table size in elements member
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h227 uint32_t TableSize; member
/openbsd-src/sys/dev/pci/drm/amd/pm/swsmu/inc/pmfw_if/
H A Dsmu11_driver_if_navi10.h484 uint8_t TableSize; member
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp171 encodeULEB128(Section.TableSize, SubOS); in writeSectionContent()
H A DWasmYAML.cpp55 IO.mapRequired("TableSize", Section.TableSize); in sectionMapping()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWasmObjectFile.cpp378 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylinkSection()
409 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylink0Section()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2848 unsigned TableSize) { in SelectCodeCommon() argument
2987 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()