reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/IR/DataLayout.h
  634            getTypeAllocSizeInBits(ATy->getElementType());
lib/CodeGen/AsmPrinter/AsmPrinter.cpp
 2258     unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType());
 2342     uint64_t Size = DL.getTypeAllocSizeInBits(V->getType());
lib/IR/Instructions.cpp
   55   uint64_t Size = DL.getTypeAllocSizeInBits(getAllocatedType());
lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
  212         unsigned ArgSize = TD->getTypeAllocSizeInBits(ArgType);
  234           ArgSize = TD->getTypeAllocSizeInBits(ArgType);
  474             uint64_t Size = TD->getTypeAllocSizeInBits(ArgType);
  535               TD->getTypeAllocSizeInBits(TheBtCast->getType()) / 8;
lib/Target/Hexagon/HexagonISelLowering.cpp
 1824         MaybeAlign(M.getDataLayout().getTypeAllocSizeInBits(VecTy) / 8);
lib/Target/NVPTX/NVPTXAsmPrinter.cpp
 2083     unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType());
lib/Target/NVPTX/NVPTXISelLowering.cpp
 1504           Ty->isIntegerTy() && DL.getTypeAllocSizeInBits(Ty) < 32;
 1641     unsigned resultsz = DL.getTypeAllocSizeInBits(RetTy);
 1780         RetTy->isIntegerTy() && DL.getTypeAllocSizeInBits(RetTy) < 32;
 2686       RetTy->isIntegerTy() && DL.getTypeAllocSizeInBits(RetTy) < 32;
lib/Transforms/IPO/ArgumentPromotion.cpp
  784   if (DL.getTypeSizeInBits(type) != DL.getTypeAllocSizeInBits(type))
  804     StartPos += DL.getTypeAllocSizeInBits(ElTy);
lib/Transforms/IPO/GlobalOpt.cpp
  505       uint64_t Size = DL.getTypeAllocSizeInBits(NGV->getValueType());
  517     uint64_t FragmentSizeInBits = DL.getTypeAllocSizeInBits(ElTy);
 1664           DL.getTypeAllocSizeInBits(NewGV->getType()->getElementType()) / 8;
lib/Transforms/Utils/Local.cpp
 1258   uint64_t ValueSize = DL.getTypeAllocSizeInBits(ValTy);
lib/Transforms/Vectorize/LoopVectorize.cpp
  328   return DL.getTypeAllocSizeInBits(Ty) != DL.getTypeSizeInBits(Ty);
lib/Transforms/Vectorize/SLPVectorizer.cpp
 2408           DL->getTypeAllocSizeInBits(ScalarTy)) {
tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
  230   Info.StorageSize = (unsigned)DataLayout.getTypeAllocSizeInBits(StorageType);
  394         Tail = StartBitOffset + DataLayout.getTypeAllocSizeInBits(Type);
  787   assert(TypeSizeInBits == getDataLayout().getTypeAllocSizeInBits(Ty) &&
  797            getDataLayout().getTypeAllocSizeInBits(BaseTy) &&
  849              getDataLayout().getTypeAllocSizeInBits(ElementTy) &&
tools/opt/Debugify.cpp
   43   return Ty->isSized() ? M.getDataLayout().getTypeAllocSizeInBits(Ty) : 0;
tools/polly/lib/Analysis/ScopInfo.cpp
  281   auto OldElementSize = DL.getTypeAllocSizeInBits(ElementType);
  282   auto NewElementSize = DL.getTypeAllocSizeInBits(NewElementType);
unittests/IR/VectorTypesTest.cpp
  207   EXPECT_NE(DL.getTypeAllocSizeInBits(V2Int32Ty),
  208             DL.getTypeAllocSizeInBits(V2Int64Ty));
  209   EXPECT_EQ(DL.getTypeAllocSizeInBits(V4Int32Ty), 128U);
  251   EXPECT_NE(DL.getTypeAllocSizeInBits(ScV2Int32Ty),
  252             DL.getTypeAllocSizeInBits(ScV2Int64Ty));
  253   EXPECT_EQ(DL.getTypeAllocSizeInBits(ScV4Int32Ty).getKnownMinSize(), 128U);