HomeSort by relevance Sort by last modified time
    Searched refs:getTypeAllocSize (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.cpp 76 return IsInSmallSection(TM.getDataLayout()->getTypeAllocSize(Ty));
  /external/llvm/lib/Target/MBlaze/
MBlazeTargetObjectFile.cpp 73 return IsInSmallSection(TM.getDataLayout()->getTypeAllocSize(Ty));
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 135 return (TD->getTypeAllocSize(Ty1) < TD->getTypeAllocSize(Ty2));
167 MergedSize += TD->getTypeAllocSize(Ty);
276 if (TD->getTypeAllocSize(Ty) < MaxOffset) {
ScalarReplAggregates.cpp 773 unsigned FromTypeSize = TD.getTypeAllocSize(FromType);
774 unsigned ToTypeSize = TD.getTypeAllocSize(ToType);
    [all...]
MemCpyOptimizer.cpp 64 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType());
602 uint64_t srcSize = TD->getTypeAllocSize(srcAlloca->getAllocatedType()) *
617 uint64_t destSize = TD->getTypeAllocSize(A->getAllocatedType()) *
629 uint64_t destSize = TD->getTypeAllocSize(StructTy);
    [all...]
SROA.cpp 455 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())),
795 AllocSize(TD.getTypeAllocSize(AI.getAllocatedType())),
    [all...]
  /external/llvm/lib/Target/Mips/
MipsTargetObjectFile.cpp 99 return IsInSmallSection(TM.getDataLayout()->getTypeAllocSize(Ty));
  /external/llvm/lib/Target/
Target.cpp 82 return unwrap(TD)->getTypeAllocSize(unwrap(Ty));
Mangler.cpp 170 ArgWords += ((TD.getTypeAllocSize(Ty) + 3)/4)*4;
TargetLoweringObjectFile.cpp 187 switch (TM.getDataLayout()->getTypeAllocSize(C->getType())) {
  /external/llvm/include/llvm/IR/
DataLayout.h 307 /// getTypeAllocSize - Return the offset in bytes between successive objects
311 uint64_t getTypeAllocSize(Type *Ty) const {
321 return 8*getTypeAllocSize(Ty);
Operator.h 469 DL.getTypeAllocSize(GTI.getIndexedType()));
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 283 uint64_t Size = TD->getTypeAllocSize(GV->getType()->getElementType());
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 197 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType()) & PtrSizeMask;
  /external/llvm/lib/Analysis/
Loads.cpp 91 if (ByteOffset + LoadSize <= TD->getTypeAllocSize(BaseType) &&
MemoryBuiltins.cpp 208 unsigned ElementSize = TD->getTypeAllocSize(T);
453 APInt Size(IntTyBits, TD->getTypeAllocSize(I.getAllocatedType()));
472 APInt Size(IntTyBits, TD->getTypeAllocSize(PT->getElementType()));
561 APInt Size(IntTyBits, TD->getTypeAllocSize(GV.getType()->getElementType()));
696 TD->getTypeAllocSize(I.getAllocatedType()));
  /frameworks/compile/slang/
slang_rs_export_func.cpp 166 size_t T1Size = RSExportType::GetTypeAllocSize(F->getType());
167 size_t T2Size = getRSContext()->getDataLayout()->getTypeAllocSize(T2);
  /external/llvm/lib/IR/
DataLayout.cpp 63 StructSize += TD.getTypeAllocSize(Ty); // Consume space for this data item
395 unsigned Align = getTypeAllocSize(cast<VectorType>(Ty)->getElementType());
695 Result += (uint64_t)arrayIdx * getTypeAllocSize(Ty);
  /external/llvm/bindings/ocaml/target/
llvm_target.mli 66 See the method llvm::DataLayout::getTypeAllocSize. *)
  /external/llvm/lib/CodeGen/
StackProtector.cpp 141 if (TM.Options.SSPBufferSize <= TLI->getDataLayout()->getTypeAllocSize(AT))
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 210 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 629 CGF.CGM.getDataLayout().getTypeAllocSize(FirstElt);
631 FirstEltSize < CGF.CGM.getDataLayout().getTypeAllocSize(SrcSTy))
694 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
701 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
782 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
798 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy);
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 96 size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 772 if (int64_t TySize = TD->getTypeAllocSize(Ty)) {
805 uint64_t EltSize = TD->getTypeAllocSize(AT->getElementType());
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreAsmPrinter.cpp 155 unsigned Size = TD->getTypeAllocSize(C->getType());

Completed in 2808 milliseconds

1 2 3