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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiSelectionDAGInfo.cpp27 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
28 if (!ConstantSize)
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp23 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
24 if (AlwaysInline || (Align & 0x3) != 0 || !ConstantSize)
27 uint64_t SizeVal = ConstantSize->getZExtValue();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp50 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); local
68 if ((Align & 3) != 0 || !ConstantSize ||
69 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold()) {
103 uint64_t SizeVal = ConstantSize->getZExtValue();
311 if (ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size))
313 ConstantSize->getZExtValue(),
/freebsd-11-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-11-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-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp1149 uint64_t ConstantSize = CGM.getDataLayout().getTypeAllocSize(Ty); local
1150 if (!ConstantSize)
1160 auto *SizeVal = llvm::ConstantInt::get(CGM.IntPtrTy, ConstantSize);
1164 if (shouldUseBZeroPlusStoresToInitialize(constant, ConstantSize)) {
1179 shouldUseMemSetToInitialize(constant, ConstantSize, CGM.getDataLayout());
1193 if (shouldSplitConstantStore(CGM, ConstantSize)) {
H A DCGExpr.cpp720 llvm::Constant *ConstantSize = dyn_cast<llvm::Constant>(Size); local
721 if (!ConstantSize || !ConstantSize->isNullValue()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6267 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6268 if (ConstantSize) {
6270 if (ConstantSize->isNullValue())
6274 ConstantSize->getZExtValue(),Align,
6293 assert(ConstantSize && "AlwaysInline requires a constant size!");
6295 ConstantSize->getZExtValue(), Align, isVol,
6383 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6384 if (ConstantSize) {
6386 if (ConstantSize->isNullValue())
6391 ConstantSize
[all...]

Completed in 192 milliseconds