Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/benchmarks/
H A Dordered_set.bench.cpp54 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()
85 std::vector<uint64_t> Keys(TableSize); in run()
89 while (State.KeepRunningBatch(TableSize * NumTables)) { in run()
111 while (State.KeepRunningBatch(TableSize * NumTables)) { in run()
238 TableSize, NumTables); in main()
240 TableSize, NumTables); in main()
242 TableSize, NumTables); in main()
[all …]
/llvm-project-15.0.7/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()
413 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
433 unsigned TableSize) { in emitMapFuncBody() argument
441 emitBinSearch(OS, TableSize); in emitMapFuncBody()
491 unsigned TableSize = emitBinSearchTable(OS); in emitTablesWithFunc() local
[all …]
H A DAsmWriterEmitter.cpp415 unsigned TableSize = std::min(1 << Log2_32(BytesNeeded), 4); 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()
/llvm-project-15.0.7/llvm/test/ObjectYAML/wasm/
H A Ddylink_section.yaml11 TableSize: 1
23 # CHECK: TableSize: 1
/llvm-project-15.0.7/lld/test/wasm/
H A Dshared-needed.s29 # SO1-NEXT: TableSize: 0
39 # SO2-NEXT: TableSize: 0
H A Dshared-weak-undefined.s26 # CHECK-NEXT: TableSize: 0
H A Dpie.ll42 ; CHECK-NEXT: TableSize: 1
H A Dshared.s134 # CHECK-NEXT: TableSize: 2
H A Dshared64.s135 # CHECK-NEXT: TableSize: 2
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp5873 if (Values.size() < TableSize) { in SwitchLookupTable()
5877 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5901 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5934 for (uint64_t I = TableSize; I > 0; --I) { in SwitchLookupTable()
6000 uint64_t TableSize = in BuildLookup() local
6028 if (TableSize >= UINT_MAX / IT->getBitWidth()) in WouldFitInRegister()
6084 if (SI->getNumCases() > TableSize) in ShouldBuildLookupTable()
6306 uint64_t TableSize; in SwitchToLookupTable() local
6310 TableSize = in SwitchToLookupTable()
6319 if (!DL.fitsInLegalInteger(TableSize)) in SwitchToLookupTable()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp83 static const unsigned TableSize; member in __anon04d7f3640111::UnmangledFuncInfo
101 assert(Index < TableSize && in toFuncId()
349 const unsigned UnmangledFuncInfo::TableSize = member in __anon04d7f3640111::UnmangledFuncInfo
1005 for (unsigned I = 0; I != TableSize; ++I) in buildNameMap()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp60 DylinkSec->TableSize = Info.TableSize; in dumpCustomSection()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h300 unsigned TableSize);
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DWasm.h53 uint32_t TableSize; // Table size in elements member
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h227 uint32_t TableSize; member
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp55 IO.mapRequired("TableSize", Section.TableSize); in sectionMapping()
H A DWasmEmitter.cpp171 encodeULEB128(Section.TableSize, SubOS); in writeSectionContent()
/llvm-project-15.0.7/llvm/lib/Object/
H A DWasmObjectFile.cpp378 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylinkSection()
409 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylink0Section()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2794 unsigned TableSize) { in SelectCodeCommon() argument
2930 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()