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 553 const SCEV *getSizeOfExpr(Type *AllocTy);
557 const SCEV *getAlignOfExpr(Type *AllocTy);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 200 Type *AllocTy;
201 if (U->isSizeOf(AllocTy)) {
202 OS << "sizeof(" << *AllocTy << ")";
205 if (U->isAlignOf(AllocTy)) {
206 OS << "alignof(" << *AllocTy << ")";
357 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const {
366 AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
374 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const {
390 AllocTy = STy->getElementType(1);
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp 273 Type *AllocTy, Value *AllocSize,
322 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
357 Type *IntPtrTy, Type *AllocTy,
361 return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
374 Type *IntPtrTy, Type *AllocTy,
377 return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
    [all...]
  /external/llvm/include/llvm/
Instructions.h     [all...]

Completed in 51 milliseconds