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

1 2 3

  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 109 return (TD->getTypeAllocSize(Ty1) < TD->getTypeAllocSize(Ty2));
141 MergedSize += TD->getTypeAllocSize(Ty);
195 if (TD->getTypeAllocSize(Ty) < MaxOffset) {
ScalarReplAggregates.cpp 690 unsigned FromTypeSize = TD.getTypeAllocSize(FromType);
691 unsigned ToTypeSize = TD.getTypeAllocSize(ToType);
    [all...]
MemCpyOptimizer.cpp 64 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType());
593 uint64_t srcSize = TD->getTypeAllocSize(srcAlloca->getAllocatedType()) *
608 uint64_t destSize = TD->getTypeAllocSize(A->getAllocatedType()) *
620 uint64_t destSize = TD->getTypeAllocSize(StructTy);
    [all...]
DeadStoreElimination.cpp 291 return C->getZExtValue() * TD->getTypeAllocSize(A->getAllocatedType());
297 return TD->getTypeAllocSize(PT->getElementType());
302 return TD->getTypeAllocSize(GV->getType()->getElementType());
  /external/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.cpp 76 return IsInSmallSection(TM.getTargetData()->getTypeAllocSize(Ty));
  /external/llvm/lib/Target/MBlaze/
MBlazeTargetObjectFile.cpp 73 return IsInSmallSection(TM.getTargetData()->getTypeAllocSize(Ty));
  /external/llvm/include/llvm/Target/
TargetData.h 242 /// getTypeAllocSize - Return the offset in bytes between successive objects
246 uint64_t getTypeAllocSize(Type* Ty) const {
256 return 8*getTypeAllocSize(Ty);
  /external/llvm/lib/Target/Mips/
MipsTargetObjectFile.cpp 83 return IsInSmallSection(TM.getTargetData()->getTypeAllocSize(Ty));
  /external/llvm/lib/Target/
Target.cpp 74 return unwrap(TD)->getTypeAllocSize(unwrap(Ty));
TargetData.cpp 63 StructSize += TD.getTypeAllocSize(Ty); // Consume space for this data item
371 unsigned Align = getTypeAllocSize(cast<VectorType>(Ty)->getElementType());
627 Result += (uint64_t)arrayIdx * getTypeAllocSize(Ty);
Mangler.cpp 170 ArgWords += ((TD.getTypeAllocSize(Ty) + 3)/4)*4;
TargetLoweringObjectFile.cpp 187 switch (TM.getTargetData()->getTypeAllocSize(C->getType())) {
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 291 uint64_t Size = TD->getTypeAllocSize(GV->getType()->getElementType());
    [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 101 unsigned ElementSize = TD->getTypeAllocSize(T);
Loads.cpp 120 if (ByteOffset + LoadSize <= TD->getTypeAllocSize(BaseType) &&
ConstantFolding.cpp 262 Offset += TD.getTypeAllocSize(SQT->getElementType())*CI->getSExtValue();
278 assert(ByteOffset <= TD.getTypeAllocSize(C->getType()) &&
322 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType());
353 uint64_t EltSize = TD.getTypeAllocSize(EltTy);
434 if (uint64_t(Offset) >= TD.getTypeAllocSize(GV->getInitializer()->getType()))
698 APInt ElemSize(BitWidth, TD->getTypeAllocSize(ATy->getElementType()));
    [all...]
  /external/llvm/lib/CodeGen/
StackProtector.cpp 129 if (SSPBufferSize <= TD->getTypeAllocSize(AT))
Analysis.cpp 94 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
  /frameworks/compile/slang/
slang_rs_export_func.cpp 166 size_t T1Size = RSExportType::GetTypeAllocSize(F->getType());
167 size_t T2Size = getRSContext()->getTargetData()->getTypeAllocSize(T2);
  /external/llvm/bindings/ocaml/target/
llvm_target.mli 66 See the method llvm::TargetData::getTypeAllocSize. *)
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 285 Size = TD->getTypeAllocSize(C->getType());
294 Size = TD->getTypeAllocSize(AI->getAllocatedType());
307 Size = NElements->getZExtValue() * TD->getTypeAllocSize(MallocType);
771 if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy))
    [all...]
InstructionCombining.cpp 747 if (int64_t TySize = TD->getTypeAllocSize(Ty)) {
780 uint64_t EltSize = TD->getTypeAllocSize(AT->getElementType());
828 TD->getTypeAllocSize(SeqTy->getElementType()) == 0)
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 96 size_t GVSize = (size_t)TD.getTypeAllocSize(ElTy);
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 541 CGF.CGM.getTargetData().getTypeAllocSize(FirstElt);
543 FirstEltSize < CGF.CGM.getTargetData().getTypeAllocSize(SrcSTy))
606 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(Ty);
613 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
693 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
709 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreAsmPrinter.cpp 155 unsigned Size = TD->getTypeAllocSize(C->getType());

Completed in 869 milliseconds

1 2 3