Searched refs:getTypeStoreSize (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DAliasAnalysis.cpp229 getTypeStoreSize(LI->getType()),
235 getTypeStoreSize(SI->getValueOperand()->getType()),
248 getTypeStoreSize(CXI->getCompareOperand()->getType()),
255 getTypeStoreSize(RMWI->getValOperand()->getType()),
486 /// getTypeStoreSize - Return the DataLayout store size for the given type,
489 uint64_t AliasAnalysis::getTypeStoreSize(Type *Ty) { function in class:AliasAnalysis
490 return TD ? TD->getTypeStoreSize(Ty) : UnknownSize;
H A DLoads.cpp90 uint64_t LoadSize = TD->getTypeStoreSize(AddrTy->getElementType());
150 AccessSize = AA->getTypeStoreSize(AccessTy);
H A DAliasAnalysisEvaluator.cpp192 if (I1ElTy->isSized()) I1Size = AA.getTypeStoreSize(I1ElTy);
197 if (I2ElTy->isSized()) I2Size = AA.getTypeStoreSize(I2ElTy);
281 if (ElTy->isSized()) Size = AA.getTypeStoreSize(ElTy);
H A DAliasSetTracker.cpp304 AA.getTypeStoreSize(LI->getType()),
317 AA.getTypeStoreSize(Val->getType()),
431 uint64_t Size = AA.getTypeStoreSize(LI->getType());
440 uint64_t Size = AA.getTypeStoreSize(SI->getOperand(0)->getType());
H A DLint.cpp250 visitMemoryReference(I, Actual, AA->getTypeStoreSize(Ty),
463 AA->getTypeStoreSize(I.getType()), I.getAlignment(),
469 AA->getTypeStoreSize(I.getOperand(0)->getType()),
H A DBasicAliasAnalysis.cpp808 TD ? TD->getTypeStoreSize(II->getType()) : UnknownSize;
817 TD ? TD->getTypeStoreSize(II->getArgOperand(1)->getType()) : UnknownSize;
H A DDependenceAnalysis.cpp637 return AA->alias(AObj, AA->getTypeStoreSize(AObj->getType()),
638 BObj, AA->getTypeStoreSize(BObj->getType()));
/freebsd-9.3-release/contrib/llvm/include/llvm/IR/
H A DDataLayout.h308 /// getTypeStoreSize - Return the maximum number of bytes that may be
311 uint64_t getTypeStoreSize(Type *Ty) const { function in class:llvm::DataLayout
319 return 8*getTypeStoreSize(Ty);
328 return RoundUpAlignment(getTypeStoreSize(Ty), getABITypeAlignment(Ty));
/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp123 if (TD->getTypeStoreSize(load->getType()) < MaxAggrCopySize)
169 unsigned numLoads = TD->getTypeStoreSize(load->getType());
H A DNVPTXAsmPrinter.cpp1242 ElementSize = TD->getTypeStoreSize(ETy);
1399 ElementSize = TD->getTypeStoreSize(ETy);
/freebsd-9.3-release/contrib/llvm/lib/Target/
H A DTarget.cpp104 return unwrap(TD)->getTypeStoreSize(unwrap(Ty));
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp203 ArgBytes += TD->getTypeStoreSize(ArgTy);
215 ArgDataPtr += TD->getTypeStoreSize(ArgTy);
224 ret.resize(TD->getTypeStoreSize(RetTy));
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp130 uint64_t NeededSize = TD->getTypeStoreSize(InstVal->getType());
H A DDataFlowSanitizer.cpp971 uint64_t Size = DFSF.DFS.DL->getTypeStoreSize(LI.getType());
1044 DFSF.DFS.DL->getTypeStoreSize(SI.getValueOperand()->getType());
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DSROA.cpp409 uint64_t Size = DL.getTypeStoreSize(LI.getType());
420 uint64_t Size = DL.getTypeStoreSize(ValOp->getType());
552 Size = std::max(Size, DL.getTypeStoreSize(LI->getType()));
559 Size = std::max(Size, DL.getTypeStoreSize(Op->getType()));
1742 uint64_t Size = DL.getTypeStoreSize(AllocaTy);
1771 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) &&
1775 ShAmt = 8*(DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
1800 assert(DL.getTypeStoreSize(T
[all...]
H A DMemCpyOptimizer.cpp215 int64_t StoreSize = TD.getTypeStoreSize(SI->getOperand(0)->getType());
525 TD->getTypeStoreSize(SI->getOperand(0)->getType()),
H A DLICM.cpp409 Size = AA->getTypeStoreSize(LI->getType());
H A DGVN.cpp1049 unsigned LoadSize = TD.getTypeStoreSize(LoadTy);
1156 unsigned SrcValSize = TD.getTypeStoreSize(SrcVal->getType());
1157 unsigned LoadSize = TD.getTypeStoreSize(LoadTy);
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h96 /// getTypeStoreSize - Return the DataLayout store size for the given type,
99 uint64_t getTypeStoreSize(Type *Ty);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineFunction.cpp835 uint64_t StoreSize = TD->getTypeStoreSize(A->getType());
836 if (StoreSize != TD->getTypeStoreSize(B->getType()) ||
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp995 const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty);
1072 const unsigned LoadBytes = getDataLayout()->getTypeStoreSize(Ty);
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp398 IFI.TD->getTypeStoreSize(AggTy));
/freebsd-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp109 uint64_t AllocElTyStoreSize = TD->getTypeStoreSize(AllocElTy);
110 uint64_t CastElTyStoreSize = TD->getTypeStoreSize(CastElTy);
H A DInstCombineCalls.cpp106 if (TD && SrcETy->isSized() && TD->getTypeStoreSize(SrcETy) == Size) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGAtomic.cpp149 return (CGM.getDataLayout().getTypeStoreSize(type) * 8 == expectedSize);

Completed in 257 milliseconds

12