HomeSort by relevance Sort by last modified time
    Searched refs:AllocTy (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 444 bool isSizeOf(Type *&AllocTy) const;
445 bool isAlignOf(Type *&AllocTy) const;
ScalarEvolution.h 629 const SCEV *getSizeOfExpr(Type *AllocTy);
633 const SCEV *getAlignOfExpr(Type *AllocTy);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 210 Type *AllocTy;
211 if (U->isSizeOf(AllocTy)) {
212 OS << "sizeof(" << *AllocTy << ")";
215 if (U->isAlignOf(AllocTy)) {
216 OS << "alignof(" << *AllocTy << ")";
379 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const {
388 AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
396 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const {
412 AllocTy = STy->getElementType(1);
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp 355 Type *AllocTy, Value *AllocSize,
404 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
439 Type *IntPtrTy, Type *AllocTy,
443 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
456 Type *IntPtrTy, Type *AllocTy,
459 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
    [all...]
  /external/llvm/include/llvm/
Instructions.h     [all...]

Completed in 89 milliseconds