Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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()
H A DArrayBoundCheckerV2.cpp379 if (auto KnownSize = Size.getAs<NonLoc>()) { in performCheck() local
381 compareValueToThreshold(State, ByteOffset, *KnownSize, SVB); in performCheck()
390 compareValueToThreshold(ExceedsUpperBound, ByteOffset, *KnownSize, in performCheck()
400 *KnownSize, Location); in performCheck()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerKernelAttributes.cpp288 ConstantInt *KnownSize in processUse() local
291 KnownSize, UMin->getType(), false, DL)); in processUse()
312 ConstantInt *KnownSize = mdconst::extract<ConstantInt>(MD->getOperand(I)); in processUse() local
314 ConstantFoldIntegerCast(KnownSize, GroupSize->getType(), false, DL)); in processUse()
H A DAMDGPUMachineFunction.cpp171 if (ConstantInt *KnownSize = in getLDSKernelIdMetadata() local
173 uint64_t ZExt = KnownSize->getZExtValue(); in getLDSKernelIdMetadata()
H A DAMDGPULegalizerInfo.cpp5419 std::optional<uint32_t> KnownSize = in getLDSKernelId() local
5421 if (KnownSize.has_value()) in getLDSKernelId()
5422 B.buildConstant(DstReg, *KnownSize); in getLDSKernelId()
H A DSIISelLowering.cpp1941 std::optional<uint32_t> KnownSize = in getLDSKernelId() local
1943 if (KnownSize.has_value()) in getLDSKernelId()
1944 return DAG.getConstant(*KnownSize, SL, MVT::i32); in getLDSKernelId()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp2284 unsigned KnownSize = VT.getSizeInBits().getKnownMinValue(); in getLMUL() local
2286 KnownSize *= 8; in getLMUL()
2288 switch (KnownSize) { in getLMUL()