Lines Matching refs:IdentInfo

204 bool MPIFunctionClassifier::isMPIType(const IdentifierInfo *IdentInfo) const {  in isMPIType()
205 return llvm::is_contained(MPIType, IdentInfo); in isMPIType()
209 const IdentifierInfo *IdentInfo) const { in isNonBlockingType()
210 return llvm::is_contained(MPINonBlockingTypes, IdentInfo); in isNonBlockingType()
215 const IdentifierInfo *IdentInfo) const { in isPointToPointType()
216 return llvm::is_contained(MPIPointToPointTypes, IdentInfo); in isPointToPointType()
221 const IdentifierInfo *IdentInfo) const { in isCollectiveType()
222 return llvm::is_contained(MPICollectiveTypes, IdentInfo); in isCollectiveType()
226 const IdentifierInfo *IdentInfo) const { in isCollToColl()
227 return llvm::is_contained(MPICollToCollTypes, IdentInfo); in isCollToColl()
231 const IdentifierInfo *IdentInfo) const { in isScatterType()
232 return IdentInfo == IdentInfo_MPI_Scatter || in isScatterType()
233 IdentInfo == IdentInfo_MPI_Iscatter; in isScatterType()
237 const IdentifierInfo *IdentInfo) const { in isGatherType()
238 return IdentInfo == IdentInfo_MPI_Gather || in isGatherType()
239 IdentInfo == IdentInfo_MPI_Igather || in isGatherType()
240 IdentInfo == IdentInfo_MPI_Allgather || in isGatherType()
241 IdentInfo == IdentInfo_MPI_Iallgather; in isGatherType()
245 const IdentifierInfo *IdentInfo) const { in isAllgatherType()
246 return IdentInfo == IdentInfo_MPI_Allgather || in isAllgatherType()
247 IdentInfo == IdentInfo_MPI_Iallgather; in isAllgatherType()
251 const IdentifierInfo *IdentInfo) const { in isAlltoallType()
252 return IdentInfo == IdentInfo_MPI_Alltoall || in isAlltoallType()
253 IdentInfo == IdentInfo_MPI_Ialltoall; in isAlltoallType()
256 bool MPIFunctionClassifier::isBcastType(const IdentifierInfo *IdentInfo) const { in isBcastType()
257 return IdentInfo == IdentInfo_MPI_Bcast || IdentInfo == IdentInfo_MPI_Ibcast; in isBcastType()
261 const IdentifierInfo *IdentInfo) const { in isReduceType()
262 return IdentInfo == IdentInfo_MPI_Reduce || in isReduceType()
263 IdentInfo == IdentInfo_MPI_Ireduce || in isReduceType()
264 IdentInfo == IdentInfo_MPI_Allreduce || in isReduceType()
265 IdentInfo == IdentInfo_MPI_Iallreduce; in isReduceType()
269 bool MPIFunctionClassifier::isMPI_Wait(const IdentifierInfo *IdentInfo) const { in isMPI_Wait()
270 return IdentInfo == IdentInfo_MPI_Wait; in isMPI_Wait()
274 const IdentifierInfo *IdentInfo) const { in isMPI_Waitall()
275 return IdentInfo == IdentInfo_MPI_Waitall; in isMPI_Waitall()
278 bool MPIFunctionClassifier::isWaitType(const IdentifierInfo *IdentInfo) const { in isWaitType()
279 return IdentInfo == IdentInfo_MPI_Wait || IdentInfo == IdentInfo_MPI_Waitall; in isWaitType()