HomeSort by relevance Sort by last modified time
    Searched defs:getTypeStoreSize (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 251 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) {
513 return DL ? DL->getTypeStoreSize(Ty) : UnknownSize;
  /external/llvm/include/llvm/IR/
DataLayout.h 350 /// getTypeStoreSize - Return the maximum number of bytes that may be
353 uint64_t getTypeStoreSize(Type *Ty) const {
361 return 8*getTypeStoreSize(Ty);
370 return RoundUpAlignment(getTypeStoreSize(Ty), getABITypeAlignment(Ty));

Completed in 117 milliseconds