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; }
225 AccessTy(NoModRef), AliasTy(MustAlias), Volatile(false) {
422 AS.AccessTy |= E;
  /external/llvm/lib/Analysis/
Loads.cpp 149 Type *AccessTy = cast<PointerType>(Ptr->getType())->getElementType();
150 AccessSize = AA->getTypeStoreSize(AccessTy);
AliasSetTracker.cpp 35 AccessTy |= AS.AccessTy;
130 AccessTy |= Refs;
136 AccessTy = ModRef;
386 (AliasSet::AccessType)AS.AccessTy, X);
552 switch (AccessTy) {
557 default: llvm_unreachable("Bad value for AccessTy!");
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 698 Type *AccessTy = Inst->getType();
700 AccessTy = SI->getOperand(0)->getType();
710 AccessTy = II->getArgOperand(0)->getType();
717 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
718 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
721 return AccessTy;
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp 140 bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *AccessTy);
865 Type *AccessTy;
866 if (TLI->GetAddrModeArguments(II, PtrOps, AccessTy))
868 if (OptimizeMemoryInst(II, PtrOps.pop_back_val(), AccessTy))
    [all...]

Completed in 1046 milliseconds