Home
last modified time | relevance | path

Searched refs:CSize (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp55 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) in EmitTargetCodeForMemcpy() local
57 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
85 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemset() local
86 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset()
196 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) { in EmitTargetCodeForMemcmp() local
197 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp()
/freebsd-13.1/contrib/libucl/haskell/
H A Dhucl.hs38 …bject_emit_len" ucl_object_emit_len :: UCLObjectHandle -> UCLEmitterType -> Ptr CSize -> IO CString
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp1268 if (ConstantInt *CSize = dyn_cast<ConstantInt>(Size)) { in hasUndefContents() local
1272 if (LTSize->getZExtValue() >= CSize->getZExtValue()) in hasUndefContents()
1289 if (ConstantInt *CSize = dyn_cast<ConstantInt>(Size)) { in hasUndefContentsMSSA() local
1291 LTSize->getZExtValue() >= CSize->getZExtValue()) in hasUndefContentsMSSA()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp220 unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8; in ExtractConstantBytes() local
222 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes()
223 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes()
281 if (ShAmt.uge(CSize - ByteStart)) in ExtractConstantBytes()
285 if (ShAmt.ule(CSize - (ByteStart + ByteSize))) in ExtractConstantBytes()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp165 CharUnits CSize = getSize(C); in add() local
166 llvm::Optional<size_t> LastElemToReplace = splitAt(Offset + CSize); in add()
175 Size = std::max(Size, Offset + CSize); in add()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp7633 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size); in visitMemCmpBCmpCall() local
7634 if (CSize && CSize->getZExtValue() == 0) { in visitMemCmpBCmpCall()
7653 if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I)) in visitMemCmpBCmpCall()
7682 unsigned NumBitsToCompare = CSize->getZExtValue() * 8; in visitMemCmpBCmpCall()