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

  /external/llvm/lib/Analysis/
Loads.cpp 178 Type *AccessTy = cast<PointerType>(Ptr->getType())->getElementType();
179 AccessSize = AA->getTypeStoreSize(AccessTy);
BasicAliasAnalysis.cpp 89 Type *AccessTy;
94 AccessTy = GV->getType()->getElementType();
98 AccessTy = AI->getType()->getElementType();
110 AccessTy = cast<PointerType>(A->getType())->getElementType();
119 if (!AccessTy->isSized())
122 uint64_t Size = TD.getTypeAllocSize(AccessTy);
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
AddrModeMatcher.h 12 // specified by TLI for an access to "V" with an access type of AccessTy. This
59 /// AccessTy/MemoryInst - This is the type for the access (e.g. double) and
61 Type *AccessTy;
76 : AddrModeInsts(AMI), TLI(T), AccessTy(AT), MemoryInst(MI), AddrMode(AM) {
82 /// give an access type of AccessTy. This returns a list of involved
84 static ExtAddrMode Match(Value *V, Type *AccessTy,
91 AddressingModeMatcher(AddrModeInsts, TLI, AccessTy,
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 116 bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *AccessTy);
584 Type *AccessTy;
585 if (TLI->GetAddrModeArguments(II, PtrOps, AccessTy))
587 if (OptimizeMemoryInst(II, PtrOps.pop_back_val(), AccessTy))
751 Type *AccessTy) {
788 AddressingModeMatcher::Match(V, AccessTy, MemoryInst,
863 TLI->getTargetData()->getIntPtrType(AccessTy->getContext());
    [all...]
LoopStrengthReduce.cpp 622 Type *AccessTy = Inst->getType();
624 AccessTy = SI->getOperand(0)->getType();
634 AccessTy = II->getArgOperand(0)->getType();
641 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
642 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
645 return AccessTy;
    [all...]

Completed in 134 milliseconds