Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp222 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
227 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
379 unsigned TableSize = 0; in emitBinSearchTable() local
404 TableSize++; in emitBinSearchTable()
408 if (!TableSize) { in emitBinSearchTable()
413 return TableSize; in emitBinSearchTable()
424 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
444 unsigned TableSize) { in emitMapFuncBody() argument
452 emitBinSearch(OS, TableSize); in emitMapFuncBody()
499 unsigned TableSize = emitBinSearchTable(OS); in emitTablesWithFunc() local
[all …]
H A DAsmWriterEmitter.cpp396 unsigned TableSize = std::min(1 << Log2_32(BytesNeeded), 4); in EmitPrintInstruction() local
397 BytesNeeded -= TableSize; in EmitPrintInstruction()
398 TableSize *= 8; // Convert to bits; in EmitPrintInstruction()
399 uint64_t Mask = (1ULL << TableSize) - 1; in EmitPrintInstruction()
400 O << " static const uint" << TableSize << "_t OpInfo" << Table in EmitPrintInstruction()
414 Shift += TableSize; in EmitPrintInstruction()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp4957 if (Values.size() < TableSize) { in SwitchLookupTable()
4961 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
4985 for (uint64_t I = 0; I < TableSize; ++I) { in SwitchLookupTable()
5018 for (uint64_t I = TableSize; I > 0; --I) { in SwitchLookupTable()
5084 uint64_t TableSize = in BuildLookup() local
5110 if (TableSize >= UINT_MAX / IT->getBitWidth()) in WouldFitInRegister()
5121 if (SI->getNumCases() > TableSize || TableSize >= UINT64_MAX / 10) in ShouldBuildLookupTable()
5155 return SI->getNumCases() * 10 >= TableSize * 4; in ShouldBuildLookupTable()
5316 bool TableHasHoles = (NumResults < TableSize); in SwitchToLookupTable()
5330 if (!DL.fitsInLegalInteger(TableSize)) in SwitchToLookupTable()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp78 static const unsigned TableSize; member in __anond3dc63390111::UnmangledFuncInfo
84 for (unsigned I = 0; I != TableSize; ++I) in NameMap()
105 assert(Index < TableSize && "Invalid unmangled library function"); in toFuncId()
352 const unsigned UnmangledFuncInfo::TableSize = member in __anond3dc63390111::UnmangledFuncInfo
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DWasm.h41 uint32_t TableSize; // Table size in elements member
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h293 unsigned TableSize);
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h196 uint32_t TableSize; member
/freebsd-12.1/sys/contrib/edk2/Include/IndustryStandard/
H A DAcpi40.h1124 UINT32 TableSize; member
H A DAcpi51.h1810 UINT32 TableSize; member
H A DAcpi50.h1794 UINT32 TableSize; member
H A DAcpi60.h1997 UINT32 TableSize; member
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp56 IO.mapRequired("TableSize", Section.TableSize); in sectionMapping()
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dactbl1.h1036 UINT32 TableSize; member
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2937 unsigned TableSize) { in SelectCodeCommon() argument
3058 assert(MatcherIndex < TableSize && "Invalid index"); in SelectCodeCommon()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DWasmObjectFile.cpp329 DylinkInfo.TableSize = readVaruint32(Ctx); in parseDylinkSection()