Searched defs:getTypeStoreSize (Results 1 - 2 of 2) sorted by relevance

/external/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));
/external/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;

Completed in 103 milliseconds