Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/BPF/
H A DBPFSelectionDAGInfo.cpp26 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local
27 if (!ConstantSize) in EmitTargetCodeForMemcpy()
30 unsigned CopyLen = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp69 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemset() local
87 if ((Align & 3) != 0 || !ConstantSize || in EmitTargetCodeForMemset()
88 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold()) { in EmitTargetCodeForMemset()
122 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemset()
210 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local
213 if (!ConstantSize) in EmitTargetCodeForMemcpy()
215 RepMovsRepeats Repeats(ConstantSize->getZExtValue()); in EmitTargetCodeForMemcpy()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp24 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local
25 if (AlwaysInline || (Align & 0x3) != 0 || !ConstantSize) in EmitTargetCodeForMemcpy()
28 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy()
/freebsd-12.1/contrib/llvm/lib/Target/Lanai/
H A DLanaiSelectionDAGInfo.cpp28 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local
29 if (!ConstantSize) in EmitTargetCodeForMemcpy()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DStackMapParser.h304 ConstantsListOffset + getNumConstants() * ConstantSize; in StackMapV2Parser()
422 static const unsigned ConstantSize = sizeof(uint64_t); variable
429 return ConstantsListOffset + ConstantIndex * ConstantSize; in getConstantOffset()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp140 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in EmitTargetCodeForMemcpy() local
141 if (!ConstantSize) in EmitTargetCodeForMemcpy()
144 uint64_t SizeVal = ConstantSize->getZExtValue(); in EmitTargetCodeForMemcpy()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDecl.cpp1111 uint64_t ConstantSize = CGM.getDataLayout().getTypeAllocSize(Ty); in emitStoresForConstant() local
1112 auto *SizeVal = llvm::ConstantInt::get(IntPtrTy, ConstantSize); in emitStoresForConstant()
1113 if (shouldUseBZeroPlusStoresToInitialize(constant, ConstantSize)) { in emitStoresForConstant()
1126 llvm::Value *Pattern = shouldUseMemSetToInitialize(constant, ConstantSize); in emitStoresForConstant()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6056 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in getMemcpy() local
6057 if (ConstantSize) { in getMemcpy()
6059 if (ConstantSize->isNullValue()) in getMemcpy()
6082 assert(ConstantSize && "AlwaysInline requires a constant size!"); in getMemcpy()
6170 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in getMemmove() local
6171 if (ConstantSize) { in getMemmove()
6173 if (ConstantSize->isNullValue()) in getMemmove()
6178 ConstantSize->getZExtValue(), Align, isVol, in getMemmove()
6271 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); in getMemset() local
6272 if (ConstantSize) { in getMemset()
[all …]