Searched refs:ConstantSize (Results 1 – 9 of 9) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMSelectionDAGInfo.cpp | 143 ConstantSDNode *ConstantSize, in shouldGenerateInlineTPLoop() argument 158 if (!ConstantSize && Alignment >= Align(4)) in shouldGenerateInlineTPLoop() 160 if (ConstantSize && in shouldGenerateInlineTPLoop() 161 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold() && in shouldGenerateInlineTPLoop() 162 ConstantSize->getZExtValue() < in shouldGenerateInlineTPLoop() 174 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local 177 shouldGenerateInlineTPLoop(Subtarget, DAG, ConstantSize, Alignment, true)) in EmitTargetCodeForMemcpy() 187 if (!ConstantSize) in EmitTargetCodeForMemcpy() 190 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy() 302 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemset() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFSelectionDAGInfo.cpp | 25 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local 26 if (!ConstantSize) in EmitTargetCodeForMemcpy() 29 unsigned CopyLen = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonSelectionDAGInfo.cpp | 23 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local 24 if (AlwaysInline || Alignment < Align(4) || !ConstantSize) in EmitTargetCodeForMemcpy() 27 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiSelectionDAGInfo.cpp | 27 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local 28 if (!ConstantSize) in EmitTargetCodeForMemcpy()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86SelectionDAGInfo.cpp | 51 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemset() local 69 if (Alignment < Align(4) || !ConstantSize || in EmitTargetCodeForMemset() 70 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold()) in EmitTargetCodeForMemset() 73 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemset() 284 if (ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size)) in EmitTargetCodeForMemcpy() local 286 ConstantSize->getZExtValue(), in EmitTargetCodeForMemcpy()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | StackMapParser.h | 314 ConstantsListOffset + getNumConstants() * ConstantSize; in StackMapParser() 449 static const unsigned ConstantSize = sizeof(uint64_t); variable 456 return ConstantsListOffset + ConstantIndex * ConstantSize; in getConstantOffset()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDecl.cpp | 1194 uint64_t ConstantSize = CGM.getDataLayout().getTypeAllocSize(Ty); in emitStoresForConstant() local 1195 if (!ConstantSize) in emitStoresForConstant() 1207 auto *SizeVal = llvm::ConstantInt::get(CGM.IntPtrTy, ConstantSize); in emitStoresForConstant() 1211 if (shouldUseBZeroPlusStoresToInitialize(constant, ConstantSize)) { in emitStoresForConstant() 1229 shouldUseMemSetToInitialize(constant, ConstantSize, CGM.getDataLayout()); in emitStoresForConstant() 1249 if (shouldSplitConstantStore(CGM, ConstantSize)) { in emitStoresForConstant()
|
| H A D | CGExpr.cpp | 739 llvm::Constant *ConstantSize = dyn_cast<llvm::Constant>(Size); in EmitTypeCheck() local 740 if (!ConstantSize || !ConstantSize->isNullValue()) { in EmitTypeCheck()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 7899 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in getMemcpy() local 7900 if (ConstantSize) { in getMemcpy() 7902 if (ConstantSize->isZero()) in getMemcpy() 7925 assert(ConstantSize && "AlwaysInline requires a constant size!"); in getMemcpy() 8013 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in getMemmove() local 8014 if (ConstantSize) { in getMemmove() 8016 if (ConstantSize->isZero()) in getMemmove() 8114 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in getMemset() local 8115 if (ConstantSize) { in getMemset() 8117 if (ConstantSize->isZero()) in getMemset() [all …]
|