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

/external/llvm/include/llvm/IR/
H A DDataLayout.h350 /// getTypeStoreSize - Return the maximum number of bytes that may be
353 uint64_t getTypeStoreSize(Type *Ty) const { function in class:llvm::DataLayout
361 return 8*getTypeStoreSize(Ty);
370 return RoundUpAlignment(getTypeStoreSize(Ty), getABITypeAlignment(Ty));
/external/llvm/lib/Analysis/
H A DAliasAnalysis.cpp251 getTypeStoreSize(LI->getType()),
257 getTypeStoreSize(SI->getValueOperand()->getType()),
270 getTypeStoreSize(CXI->getCompareOperand()->getType()),
277 getTypeStoreSize(RMWI->getValOperand()->getType()),
509 /// getTypeStoreSize - Return the DataLayout store size for the given type,
512 uint64_t AliasAnalysis::getTypeStoreSize(Type *Ty) { function in class:AliasAnalysis
513 return DL ? DL->getTypeStoreSize(Ty) : UnknownSize;

Completed in 74 milliseconds