Home
last modified time | relevance | path

Searched refs:KnownSize (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/Analysis/
H A DTFUtilsTest.cpp47 const static int64_t KnownSize = 214; in TEST() local
49 "serving_default_input_1", {1, KnownSize})}; in TEST()
58 for (auto I = 0; I < KnownSize; ++I) { in TEST()
70 for (auto I = 0; I < KnownSize; ++I) { in TEST()
88 const static int64_t KnownSize = 213; in TEST() local
90 "serving_default_input_1", {1, KnownSize})}; in TEST()
99 for (auto I = 0; I < KnownSize; ++I) { in TEST()
108 const static int64_t KnownSize = 214; in TEST() local
111 {1, KnownSize}), in TEST()
122 for (auto I = 0; I < KnownSize; ++I) in TEST()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerKernelAttributes.cpp183 ConstantInt *KnownSize in processUse() local
186 KnownSize, UMin->getType(), false)); in processUse()
206 ConstantInt *KnownSize = mdconst::extract<ConstantInt>(MD->getOperand(I)); in processUse() local
208 ConstantExpr::getIntegerCast(KnownSize, in processUse()
H A DAMDGPUMachineFunction.cpp109 ConstantInt *KnownSize = mdconst::extract<ConstantInt>(MD->getOperand(0)); in getLDSKernelIdMetadata() local
110 if (KnownSize) { in getLDSKernelIdMetadata()
111 uint64_t V = KnownSize->getZExtValue(); in getLDSKernelIdMetadata()
H A DAMDGPULegalizerInfo.cpp4204 Optional<uint32_t> KnownSize = in getLDSKernelId() local
4206 if (KnownSize.has_value()) in getLDSKernelId()
4207 B.buildConstant(DstReg, KnownSize.value()); in getLDSKernelId()
H A DSIISelLowering.cpp1673 Optional<uint32_t> KnownSize = in getLDSKernelId() local
1675 if (KnownSize.has_value()) in getLDSKernelId()
1676 return DAG.getConstant(KnownSize.value(), SL, MVT::i32); in getLDSKernelId()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DVLASizeChecker.cpp107 uint64_t KnownSize = 0; in checkVLA() local
109 KnownSize = KV->getZExtValue(); in checkVLA()
135 if (KnownSize <= SizeMax / IndexL) { in checkVLA()
136 KnownSize *= IndexL; in checkVLA()
143 KnownSize = 0; in checkVLA()
/llvm-project-15.0.7/polly/lib/Analysis/
H A DScopInfo.cpp309 auto *KnownSize = DimensionSizes[i + ExtraDimsOld]; in updateSizes() local
310 if (NewSize && KnownSize && NewSize != KnownSize) in updateSizes()
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp1448 unsigned KnownSize = VT.getSizeInBits().getKnownMinValue(); in getLMUL() local
1450 KnownSize *= 8; in getLMUL()
1452 switch (KnownSize) { in getLMUL()