Searched refs:ConstantSize (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiSelectionDAGInfo.cpp27 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
28 if (!ConstantSize)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFSelectionDAGInfo.cpp25 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
26 if (!ConstantSize)
29 unsigned CopyLen = ConstantSize->getZExtValue();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp23 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
24 if (AlwaysInline || Alignment < Align(4) || !ConstantSize)
27 uint64_t SizeVal = ConstantSize->getZExtValue();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp51 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
69 if (Alignment < Align(4) || !ConstantSize ||
70 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold()) {
104 uint64_t SizeVal = ConstantSize->getZExtValue();
310 if (ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size))
312 DAG, Subtarget, dl, Chain, Dst, Src, ConstantSize->getZExtValue(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp139 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
140 if (!ConstantSize)
143 uint64_t SizeVal = ConstantSize->getZExtValue();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DStackMapParser.h312 ConstantsListOffset + getNumConstants() * ConstantSize;
430 static const unsigned ConstantSize = sizeof(uint64_t); member in class:llvm::StackMapParser::LocationKind
437 return ConstantsListOffset + ConstantIndex * ConstantSize;
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp1151 uint64_t ConstantSize = CGM.getDataLayout().getTypeAllocSize(Ty); local
1152 if (!ConstantSize)
1162 auto *SizeVal = llvm::ConstantInt::get(CGM.IntPtrTy, ConstantSize);
1166 if (shouldUseBZeroPlusStoresToInitialize(constant, ConstantSize)) {
1181 shouldUseMemSetToInitialize(constant, ConstantSize, CGM.getDataLayout());
1195 if (shouldSplitConstantStore(CGM, ConstantSize)) {
H A DCGExpr.cpp737 llvm::Constant *ConstantSize = dyn_cast<llvm::Constant>(Size); local
738 if (!ConstantSize || !ConstantSize->isNullValue()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6406 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6407 if (ConstantSize) {
6409 if (ConstantSize->isNullValue())
6413 *this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(), Alignment,
6432 assert(ConstantSize && "AlwaysInline requires a constant size!");
6434 ConstantSize->getZExtValue(), Alignment,
6520 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6521 if (ConstantSize) {
6523 if (ConstantSize->isNullValue())
6527 *this, dl, Chain, Dst, Src, ConstantSize
[all...]

Completed in 206 milliseconds