Lines Matching refs:IdentInfo

203 bool MPIFunctionClassifier::isMPIType(const IdentifierInfo *IdentInfo) const {  in isMPIType()
204 return llvm::is_contained(MPIType, IdentInfo); in isMPIType()
208 const IdentifierInfo *IdentInfo) const { in isNonBlockingType()
209 return llvm::is_contained(MPINonBlockingTypes, IdentInfo); in isNonBlockingType()
214 const IdentifierInfo *IdentInfo) const { in isPointToPointType()
215 return llvm::is_contained(MPIPointToPointTypes, IdentInfo); in isPointToPointType()
220 const IdentifierInfo *IdentInfo) const { in isCollectiveType()
221 return llvm::is_contained(MPICollectiveTypes, IdentInfo); in isCollectiveType()
225 const IdentifierInfo *IdentInfo) const { in isCollToColl()
226 return llvm::is_contained(MPICollToCollTypes, IdentInfo); in isCollToColl()
230 const IdentifierInfo *IdentInfo) const { in isScatterType()
231 return IdentInfo == IdentInfo_MPI_Scatter || in isScatterType()
232 IdentInfo == IdentInfo_MPI_Iscatter; in isScatterType()
236 const IdentifierInfo *IdentInfo) const { in isGatherType()
237 return IdentInfo == IdentInfo_MPI_Gather || in isGatherType()
238 IdentInfo == IdentInfo_MPI_Igather || in isGatherType()
239 IdentInfo == IdentInfo_MPI_Allgather || in isGatherType()
240 IdentInfo == IdentInfo_MPI_Iallgather; in isGatherType()
244 const IdentifierInfo *IdentInfo) const { in isAllgatherType()
245 return IdentInfo == IdentInfo_MPI_Allgather || in isAllgatherType()
246 IdentInfo == IdentInfo_MPI_Iallgather; in isAllgatherType()
250 const IdentifierInfo *IdentInfo) const { in isAlltoallType()
251 return IdentInfo == IdentInfo_MPI_Alltoall || in isAlltoallType()
252 IdentInfo == IdentInfo_MPI_Ialltoall; in isAlltoallType()
255 bool MPIFunctionClassifier::isBcastType(const IdentifierInfo *IdentInfo) const { in isBcastType()
256 return IdentInfo == IdentInfo_MPI_Bcast || IdentInfo == IdentInfo_MPI_Ibcast; in isBcastType()
260 const IdentifierInfo *IdentInfo) const { in isReduceType()
261 return IdentInfo == IdentInfo_MPI_Reduce || in isReduceType()
262 IdentInfo == IdentInfo_MPI_Ireduce || in isReduceType()
263 IdentInfo == IdentInfo_MPI_Allreduce || in isReduceType()
264 IdentInfo == IdentInfo_MPI_Iallreduce; in isReduceType()
268 bool MPIFunctionClassifier::isMPI_Wait(const IdentifierInfo *IdentInfo) const { in isMPI_Wait()
269 return IdentInfo == IdentInfo_MPI_Wait; in isMPI_Wait()
273 const IdentifierInfo *IdentInfo) const { in isMPI_Waitall()
274 return IdentInfo == IdentInfo_MPI_Waitall; in isMPI_Waitall()
277 bool MPIFunctionClassifier::isWaitType(const IdentifierInfo *IdentInfo) const { in isWaitType()
278 return IdentInfo == IdentInfo_MPI_Wait || IdentInfo == IdentInfo_MPI_Waitall; in isWaitType()