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

  /external/llvm/lib/Analysis/
Loads.cpp 149 Type *AccessTy = cast<PointerType>(Ptr->getType())->getElementType();
150 AccessSize = AA->getTypeStoreSize(AccessTy);
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 123 bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *AccessTy);
652 Type *AccessTy;
653 if (TLI->GetAddrModeArguments(II, PtrOps, AccessTy))
655 if (OptimizeMemoryInst(II, PtrOps.pop_back_val(), AccessTy))
889 /// AccessTy/MemoryInst - This is the type for the access (e.g. double) and
891 Type *AccessTy;
906 : AddrModeInsts(AMI), TLI(T), AccessTy(AT), MemoryInst(MI), AddrMode(AM) {
912 /// give an access type of AccessTy. This returns a list of involved
914 static ExtAddrMode Match(Value *V, Type *AccessTy,
921 AddressingModeMatcher(AddrModeInsts, TLI, AccessTy
    [all...]
LoopStrengthReduce.cpp 637 Type *AccessTy = Inst->getType();
639 AccessTy = SI->getOperand(0)->getType();
649 AccessTy = II->getArgOperand(0)->getType();
656 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
657 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
660 return AccessTy;
    [all...]

Completed in 221 milliseconds