Home
last modified time | relevance | path

Searched full:tablesize (Results 1 – 25 of 30) sorted by relevance

12

/llvm-project/libcxx/benchmarks/
H A Dordered_set.bench.cpp
/llvm-project/llvm/test/ObjectYAML/wasm/
H A Ddylink_section.yaml11 TableSize: 1
23 # CHECK: TableSize: 1
/llvm-project/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp209 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
214 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
365 unsigned TableSize = 0; in emitBinSearchTable()
392 TableSize++; in emitBinSearchTable()
396 if (!TableSize) { in emitBinSearchTable()
403 return TableSize; in emitBinSearchTable()
411 void MapTableEmitter::emitBinSearch(raw_ostream &OS, unsigned TableSize) {
414 OS << " unsigned end = " << TableSize << ";\n"; in emitBinSearch()
433 void MapTableEmitter::emitMapFuncBody(raw_ostream &OS, unsigned TableSize) {
441 emitBinSearch(OS, TableSize); in emitMapFuncBody()
367 unsigned TableSize = 0; emitBinSearchTable() local
413 emitBinSearch(raw_ostream & OS,unsigned TableSize) emitBinSearch() argument
435 emitMapFuncBody(raw_ostream & OS,unsigned TableSize) emitMapFuncBody() argument
492 unsigned TableSize = emitBinSearchTable(OS); emitTablesWithFunc() local
[all...]
H A DAsmWriterEmitter.cpp446 unsigned TableSize = std::min(llvm::bit_floor(BytesNeeded), 4u); in EmitGetMnemonic()
447 BytesNeeded -= TableSize; in EmitGetMnemonic()
448 TableSize *= 8; // Convert to bits; in EmitGetMnemonic()
449 uint64_t Mask = (1ULL << TableSize) - 1; in EmitGetMnemonic()
450 O << " static const uint" << TableSize << "_t OpInfo" << Table in EmitGetMnemonic()
464 Shift += TableSize; in EmitGetMnemonic()
445 unsigned TableSize = std::min(llvm::bit_floor(BytesNeeded), 4u); EmitGetMnemonic() local
/llvm-project/offload/DeviceRTL/src/
H A DMisc.cpp79 uint64_t TableSize = config::getIndirectCallTableSize(); in indirectCallLookup()
82 if (!Table || !TableSize) in indirectCallLookup()
86 uint32_t Right = TableSize; in indirectCallLookup()
84 uint64_t TableSize = config::getIndirectCallTableSize(); indirectCallLookup() local
/llvm-project/lld/test/wasm/
H A Dshared-needed.s40 # SO1-NEXT: TableSize: 0
50 # SO2-NEXT: TableSize: 0
H A Dshared-weak-undefined.s52 # CHECK-NEXT: TableSize: 0
H A Dshared64.s135 # CHECK-NEXT: TableSize: 2
H A Dshared.s134 # CHECK-NEXT: TableSize: 2
H A Dpie.s81 # CHECK-NEXT: TableSize: 3
/llvm-project/lld/COFF/
H A DDebugTypes.cpp939 uint32_t tableSize = 0;
1022 tableSize = newTableSize; in insert()
1034 tableSize; in insert()
1060 idx = idx == tableSize ? 0 : idx; in insert()
1098 size_t tableSize = 0; in mergeTypesWithGHash()
1100 tableSize += source->ghashes.size(); in mergeTypesWithGHash()
1104 tableSize = in mergeTypesWithGHash()
1105 std::min(size_t(INT32_MAX) - TypeIndex::FirstNonSimpleIndex, tableSize); in mergeTypesWithGHash()
1106 ghashState.table.init(static_cast<uint32_t>(tableSize)); in mergeTypesWithGHash()
1142 for (const GHashCell &cell : ArrayRef(ghashState.table.table, tableSize)) { in mergeTypesWithGHash()
932 uint32_t tableSize = 0; global() member
1091 size_t tableSize = 0; mergeTypesWithGHash() local
[all...]
H A DDLL.cpp693 size_t tableSize) in create()
694 : baseOrdinal(baseOrdinal), size(tableSize), symtab(symtab) {} in create()
652 ExportOrdinalChunk(const COFFLinkerContext & ctx,size_t baseOrdinal,size_t tableSize) ExportOrdinalChunk() argument
/llvm-project/llvm/test/tools/llvm-nm/wasm/
H A Ddylink.yaml15 TableSize: 0
/llvm-project/llvm/test/tools/llvm-objdump/wasm/
H A Ddylink-symbol-table.yaml16 TableSize: 0
/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp6453 Module &M, uint64_t TableSize, ConstantInt *Offset, in isTypeLegalForLookupTable()
6461 /// Return true if a table with TableSize elements of in isTypeLegalForLookupTable()
6463 static bool wouldFitInRegister(const DataLayout &DL, uint64_t TableSize, in isTypeLegalForLookupTable()
6508 Module &M, uint64_t TableSize, ConstantInt *Offset, in ShouldBuildLookupTable()
6512 assert(TableSize >= Values.size() && "Can't fit values in table!"); in ShouldBuildLookupTable()
6520 SmallVector<Constant *, 64> TableContents(TableSize); in ShouldBuildLookupTable()
6534 if (Values.size() < TableSize) { in ShouldBuildLookupTable()
6538 for (uint64_t I = 0; I < TableSize; ++I) { in ShouldUseSwitchConditionAsTableIndex()
6566 assert(TableSize >= 2 && "Should be a SingleValue table.");
6568 for (uint64_t I = 0; I < TableSize;
6249 SwitchLookupTable(Module & M,uint64_t TableSize,ConstantInt * Offset,const SmallVectorImpl<std::pair<ConstantInt *,Constant * >> & Values,Constant * DefaultValue,const DataLayout & DL,const StringRef & FuncName) SwitchLookupTable() argument
6418 uint64_t TableSize = BuildLookup() local
6437 WouldFitInRegister(const DataLayout & DL,uint64_t TableSize,Type * ElementType) WouldFitInRegister() argument
6499 ShouldBuildLookupTable(SwitchInst * SI,uint64_t TableSize,const TargetTransformInfo & TTI,const DataLayout & DL,const SmallDenseMap<PHINode *,Type * > & ResultTypes) ShouldBuildLookupTable() argument
6725 uint64_t TableSize; SwitchToLookupTable() local
[all...]
/llvm-project/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp61 DylinkSec->TableSize = Info.TableSize; in dumpCustomSection()
/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp84 static const unsigned TableSize; member in __anon344eb2870111::UnmangledFuncInfo
102 assert(Index < TableSize && in toFuncId()
350 const unsigned UnmangledFuncInfo::TableSize = member in __anon344eb2870111::UnmangledFuncInfo
1132 for (unsigned I = 0; I != TableSize; ++I)
/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp57 IO.mapRequired("TableSize", Section.TableSize); in sectionMapping()
H A DWasmEmitter.cpp171 encodeULEB128(Section.TableSize, SubOS); in writeSectionContent()
/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h292 uint32_t TableSize; // Table size in elements
285 uint32_t TableSize; // Table size in elements global() member
/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h454 unsigned TableSize);
/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h228 uint32_t TableSize; member
/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h144 size_t TableSize; member
/llvm-project/offload/plugins-nextgen/common/src/
H A DPluginInterface.cpp408 uint64_t TableSize = in setupIndirectCallTable()
410 void *DevicePtr = Device.allocate(TableSize, nullptr, TARGET_ALLOC_DEVICE); in setupIndirectCallTable()
412 TableSize, nullptr)) in AsyncInfoWrapperTy()
403 uint64_t TableSize = setupIndirectCallTable() local
/llvm-project/lld/wasm/
H A DWriter.cpp934 uint32_t tableSize = ctx.arg.tableBase + out.elemSec->numEntries(); in finalizeIndirectFunctionTable()
935 WasmLimits limits = {0, tableSize, 0}; in finalizeIndirectFunctionTable()
936 uint32_t tableSize = config->tableBase + out.elemSec->numEntries(); finalizeIndirectFunctionTable() local

12