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

  /external/llvm/lib/Analysis/
Loads.cpp 178 Type *AccessTy = cast<PointerType>(Ptr->getType())->getElementType();
179 AccessSize = AA->getTypeStoreSize(AccessTy);
  /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 121 bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *AccessTy);
640 Type *AccessTy;
641 if (TLI->GetAddrModeArguments(II, PtrOps, AccessTy))
643 if (OptimizeMemoryInst(II, PtrOps.pop_back_val(), AccessTy))
818 Type *AccessTy) {
855 AddressingModeMatcher::Match(V, AccessTy, MemoryInst,
    [all...]
LoopStrengthReduce.cpp 626 Type *AccessTy = Inst->getType();
628 AccessTy = SI->getOperand(0)->getType();
638 AccessTy = II->getArgOperand(0)->getType();
645 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
646 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
649 return AccessTy;
    [all...]

Completed in 83 milliseconds