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

1 2 3

  /frameworks/compile/slang/
slang_rs_foreach_lowering.cpp 153 const clang::QualType& AllocTy = mCtxt->getAllocationType();
154 clang::QualType AllocPtrTy = mASTCtxt.getPointerType(AllocTy);
288 const clang::QualType& AllocTy = mCtxt->getAllocationType();
291 AllocTy,
328 const clang::QualType AllocPtrTy = mASTCtxt.getPointerType(AllocTy);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 45 AllocType AllocTy;
101 static Optional<AllocFnsTy> getAllocationData(const Value *V, AllocType AllocTy,
118 if ((AllocTy & AllocSizeAllocTy) == AllocSizeAllocTy &&
124 Result.AllocTy = AllocSizeAllocTy;
147 if ((FnData->AllocTy & AllocTy) != FnData->AllocTy)
485 if (FnData->AllocTy == StrDupLike) {
745 if (FnData->AllocTy == StrDupLike) {
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ScalarEvolutionExpressions.h 444 bool isSizeOf(Type *&AllocTy) const;
445 bool isAlignOf(Type *&AllocTy) const;
ScalarEvolution.h 620 const SCEV *getSizeOfExpr(Type *AllocTy);
624 const SCEV *getAlignOfExpr(Type *AllocTy);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 792 OptimizeGlobalAddressOfMalloc(GlobalVariable *GV, CallInst *CI, Type *AllocTy,
799 GlobalType = AllocTy;
802 GlobalType = ArrayType::get(AllocTy, NElements->getZExtValue());
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 423 bool isSizeOf(Type *&AllocTy) const;
424 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 423 bool isSizeOf(Type *&AllocTy) const;
424 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
ScalarEvolutionExpressions.h 423 bool isSizeOf(Type *&AllocTy) const;
424 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
ScalarEvolutionExpressions.h 423 bool isSizeOf(Type *&AllocTy) const;
424 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
ScalarEvolutionExpressions.h 432 bool isSizeOf(Type *&AllocTy) const;
433 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
ScalarEvolutionExpressions.h 432 bool isSizeOf(Type *&AllocTy) const;
433 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
ScalarEvolutionExpressions.h 432 bool isSizeOf(Type *&AllocTy) const;
433 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
ScalarEvolutionExpressions.h 432 bool isSizeOf(Type *&AllocTy) const;
433 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 423 bool isSizeOf(Type *&AllocTy) const;
424 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
ScalarEvolutionExpressions.h 423 bool isSizeOf(Type *&AllocTy) const;
424 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
ScalarEvolutionExpressions.h 423 bool isSizeOf(Type *&AllocTy) const;
424 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
ScalarEvolutionExpressions.h 432 bool isSizeOf(Type *&AllocTy) const;
433 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
ScalarEvolutionExpressions.h 432 bool isSizeOf(Type *&AllocTy) const;
433 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
ScalarEvolutionExpressions.h 432 bool isSizeOf(Type *&AllocTy) const;
433 bool isAlignOf(Type *&AllocTy) const;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
ScalarEvolutionExpressions.h 432 bool isSizeOf(Type *&AllocTy) const;
433 bool isAlignOf(Type *&AllocTy) const;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 730 Type *AllocTy =
732 if (!AllocTy || !AllocTy->isSized())
735 uint64_t TyAllocSize = DL.getTypeAllocSize(AllocTy);
    [all...]
  /external/swiftshader/third_party/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/IR/
Instructions.cpp 443 Type *AllocTy, Value *AllocSize,
493 PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
529 Type *IntPtrTy, Type *AllocTy,
533 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
537 Type *IntPtrTy, Type *AllocTy,
542 return createMalloc(InsertBefore, nullptr, IntPtrTy, AllocTy, AllocSize,
556 Type *IntPtrTy, Type *AllocTy,
559 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
563 Type *IntPtrTy, Type *AllocTy,
567 return createMalloc(nullptr, InsertAtEnd, IntPtrTy, AllocTy, AllocSize
    [all...]
  /external/swiftshader/third_party/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...]

Completed in 1454 milliseconds

1 2 3