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

  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 46 AllocType AllocTy;
93 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
122 if ((FnData->AllocTy & AllocTy) != FnData->AllocTy)
478 if (FnData->AllocTy == StrDupLike) {
698 if (FnData->AllocTy == StrDupLike) {
ScalarEvolution.cpp 218 Type *AllocTy;
219 if (U->isSizeOf(AllocTy)) {
220 OS << "sizeof(" << *AllocTy << ")";
223 if (U->isAlignOf(AllocTy)) {
224 OS << "alignof(" << *AllocTy << ")";
385 bool SCEVUnknown::isSizeOf(Type *&AllocTy) const {
394 AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
402 bool SCEVUnknown::isAlignOf(Type *&AllocTy) const {
418 AllocTy = STy->getElementType(1);
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 514 bool isSizeOf(Type *&AllocTy) const;
515 bool isAlignOf(Type *&AllocTy) const;
ScalarEvolution.h 653 /// getSizeOfExpr - Return an expression for sizeof AllocTy that is type
656 const SCEV *getSizeOfExpr(Type *IntTy, Type *AllocTy);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 826 Type *AllocTy,
834 GlobalType = AllocTy;
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp 373 Type *AllocTy, Value *AllocSize,
422 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
457 Type *IntPtrTy, Type *AllocTy,
461 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
474 Type *IntPtrTy, Type *AllocTy,
477 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]

Completed in 548 milliseconds