HomeSort by: relevance | last modified time | path
    Searched refs:ConstantSize (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiSelectionDAGInfo.cpp 27 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
28 if (!ConstantSize)
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFSelectionDAGInfo.cpp 25 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
26 if (!ConstantSize)
29 unsigned CopyLen = ConstantSize->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.cpp 23 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
24 if (AlwaysInline || Alignment < Align(4) || !ConstantSize)
27 uint64_t SizeVal = ConstantSize->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 144 ConstantSDNode *ConstantSize,
159 if (!ConstantSize && Alignment >= Align(4))
161 if (ConstantSize &&
162 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold() &&
163 ConstantSize->getZExtValue() <
175 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
178 shouldGenerateInlineTPLoop(Subtarget, DAG, ConstantSize, Alignment, true))
188 if (!ConstantSize)
191 uint64_t SizeVal = ConstantSize->getZExtValue();
305 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 51 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
69 if (Alignment < Align(4) || !ConstantSize ||
70 ConstantSize->getZExtValue() > Subtarget.getMaxInlineSizeThreshold()) {
104 uint64_t SizeVal = ConstantSize->getZExtValue();
314 if (ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size))
316 DAG, Subtarget, dl, Chain, Dst, Src, ConstantSize->getZExtValue(),
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
StackMapParser.h 315 ConstantsListOffset + getNumConstants() * ConstantSize;
450 static const unsigned ConstantSize = sizeof(uint64_t);
457 return ConstantsListOffset + ConstantIndex * ConstantSize;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDecl.cpp 1165 uint64_t ConstantSize = CGM.getDataLayout().getTypeAllocSize(Ty);
1166 if (!ConstantSize)
1178 auto *SizeVal = llvm::ConstantInt::get(CGM.IntPtrTy, ConstantSize);
1182 if (shouldUseBZeroPlusStoresToInitialize(constant, ConstantSize)) {
1200 shouldUseMemSetToInitialize(constant, ConstantSize, CGM.getDataLayout());
1216 if (shouldSplitConstantStore(CGM, ConstantSize)) {
CGExpr.cpp 743 llvm::Constant *ConstantSize = dyn_cast<llvm::Constant>(Size);
744 if (!ConstantSize || !ConstantSize->isNullValue()) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 6726 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6727 if (ConstantSize) {
6729 if (ConstantSize->isNullValue())
6733 *this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(), Alignment,
6752 assert(ConstantSize && "AlwaysInline requires a constant size!");
6754 ConstantSize->getZExtValue(), Alignment,
6840 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6841 if (ConstantSize) {
6843 if (ConstantSize->isNullValue())
6847 *this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(), Alignment
    [all...]

Completed in 26 milliseconds