Home
last modified time | relevance | path

Searched refs:RemoteI (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h5935 : LocalI(I), RemoteI(I), Content(Content), Ranges(Offset, Size),
5939 Access(Instruction *LocalI, Instruction *RemoteI, const RangeList &Ranges,
5941 : LocalI(LocalI), RemoteI(RemoteI), Content(Content), Ranges(Ranges),
5949 Access(Instruction *LocalI, Instruction *RemoteI, int64_t Offset,
5952 : LocalI(LocalI), RemoteI(RemoteI), Content(Content),
5960 return LocalI == R.LocalI && RemoteI == R.RemoteI && Ranges == R.Ranges &&
5966 assert(RemoteI == R.RemoteI && "Expected same instruction!");
6032 Instruction *getRemoteInst() const { return RemoteI; }
6085 Instruction *RemoteI;
/src/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp853 Instruction *RemoteI = nullptr);
932 Instruction *RemoteI) { in addAccess() argument
933 RemoteI = RemoteI ? RemoteI : &I; in addAccess()
936 auto &LocalList = RemoteIMap[RemoteI]; in addAccess()
959 AccessList.emplace_back(&I, RemoteI, Ranges, Content, Kind, Ty); in addAccess()
969 AAPointerInfo::Access Acc(&I, RemoteI, Ranges, Content, Kind, Ty); in addAccess()