Home
last modified time | relevance | path

Searched defs:MemAccInst (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/polly/include/polly/Support/
DScopHelper.h136 MemAccInst() : I(nullptr) {} in MemAccInst() function
137 MemAccInst(const MemAccInst &Inst) : I(Inst.I) {} in MemAccInst() function
138 /* implicit */ MemAccInst(llvm::LoadInst &LI) : I(&LI) {} in MemAccInst() function
139 /* implicit */ MemAccInst(llvm::LoadInst *LI) : I(LI) {} in MemAccInst() function
140 /* implicit */ MemAccInst(llvm::StoreInst &SI) : I(&SI) {} in MemAccInst() function
141 /* implicit */ MemAccInst(llvm::StoreInst *SI) : I(SI) {} in MemAccInst() function
142 /* implicit */ MemAccInst(llvm::MemIntrinsic *MI) : I(MI) {} in MemAccInst() function
143 /* implicit */ MemAccInst(llvm::CallInst *CI) : I(CI) {} in MemAccInst() function
144 explicit MemAccInst(llvm::Instruction &I) : I(&I) { assert(isa(I)); } in MemAccInst() function
145 explicit MemAccInst(llvm::Instruction *I) : I(I) { assert(isa(I)); } in MemAccInst() function
/external/llvm-project/polly/lib/Analysis/
DScopBuilder.cpp2307 void ScopBuilder::addArrayAccess(ScopStmt *Stmt, MemAccInst MemAccInst, in addArrayAccess() argument