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

  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 128 unsigned AccessTy : 2;
155 bool isRef() const { return AccessTy & Refs; }
156 bool isMod() const { return AccessTy & Mods; }
224 AccessTy(NoModRef), AliasTy(MustAlias), Volatile(false) {
421 AS.AccessTy |= E;
  /external/llvm/lib/Analysis/
Loads.cpp 149 Type *AccessTy = cast<PointerType>(Ptr->getType())->getElementType();
150 AccessSize = AA->getTypeStoreSize(AccessTy);
AliasSetTracker.cpp 36 AccessTy |= AS.AccessTy;
131 AccessTy |= Refs;
137 AccessTy = ModRef;
389 (AliasSet::AccessType)AS.AccessTy, X);
555 switch (AccessTy) {
560 default: llvm_unreachable("Bad value for AccessTy!");
  /external/llvm/lib/Transforms/Scalar/
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...]
CodeGenPrepare.cpp 125 bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *AccessTy);
655 Type *AccessTy;
656 if (TLI->GetAddrModeArguments(II, PtrOps, AccessTy))
658 if (OptimizeMemoryInst(II, PtrOps.pop_back_val(), AccessTy))
891 /// AccessTy/MemoryInst - This is the type for the access (e.g. double) and
893 Type *AccessTy;
908 : AddrModeInsts(AMI), TLI(T), AccessTy(AT), MemoryInst(MI), AddrMode(AM) {
914 /// give an access type of AccessTy. This returns a list of involved
916 static ExtAddrMode Match(Value *V, Type *AccessTy,
    [all...]

Completed in 156 milliseconds