Lines Matching refs:ASTCtx
22 void MPIFunctionClassifier::identifierInit(ASTContext &ASTCtx) { in identifierInit() argument
24 initPointToPointIdentifiers(ASTCtx); in identifierInit()
25 initCollectiveIdentifiers(ASTCtx); in identifierInit()
26 initAdditionalIdentifiers(ASTCtx); in identifierInit()
29 void MPIFunctionClassifier::initPointToPointIdentifiers(ASTContext &ASTCtx) { in initPointToPointIdentifiers() argument
31 IdentInfo_MPI_Send = &ASTCtx.Idents.get("MPI_Send"); in initPointToPointIdentifiers()
36 IdentInfo_MPI_Isend = &ASTCtx.Idents.get("MPI_Isend"); in initPointToPointIdentifiers()
42 IdentInfo_MPI_Ssend = &ASTCtx.Idents.get("MPI_Ssend"); in initPointToPointIdentifiers()
47 IdentInfo_MPI_Issend = &ASTCtx.Idents.get("MPI_Issend"); in initPointToPointIdentifiers()
53 IdentInfo_MPI_Bsend = &ASTCtx.Idents.get("MPI_Bsend"); in initPointToPointIdentifiers()
58 IdentInfo_MPI_Ibsend = &ASTCtx.Idents.get("MPI_Ibsend"); in initPointToPointIdentifiers()
64 IdentInfo_MPI_Rsend = &ASTCtx.Idents.get("MPI_Rsend"); in initPointToPointIdentifiers()
69 IdentInfo_MPI_Irsend = &ASTCtx.Idents.get("MPI_Irsend"); in initPointToPointIdentifiers()
74 IdentInfo_MPI_Recv = &ASTCtx.Idents.get("MPI_Recv"); in initPointToPointIdentifiers()
79 IdentInfo_MPI_Irecv = &ASTCtx.Idents.get("MPI_Irecv"); in initPointToPointIdentifiers()
86 void MPIFunctionClassifier::initCollectiveIdentifiers(ASTContext &ASTCtx) { in initCollectiveIdentifiers() argument
88 IdentInfo_MPI_Scatter = &ASTCtx.Idents.get("MPI_Scatter"); in initCollectiveIdentifiers()
94 IdentInfo_MPI_Iscatter = &ASTCtx.Idents.get("MPI_Iscatter"); in initCollectiveIdentifiers()
101 IdentInfo_MPI_Gather = &ASTCtx.Idents.get("MPI_Gather"); in initCollectiveIdentifiers()
107 IdentInfo_MPI_Igather = &ASTCtx.Idents.get("MPI_Igather"); in initCollectiveIdentifiers()
114 IdentInfo_MPI_Allgather = &ASTCtx.Idents.get("MPI_Allgather"); in initCollectiveIdentifiers()
120 IdentInfo_MPI_Iallgather = &ASTCtx.Idents.get("MPI_Iallgather"); in initCollectiveIdentifiers()
127 IdentInfo_MPI_Bcast = &ASTCtx.Idents.get("MPI_Bcast"); in initCollectiveIdentifiers()
133 IdentInfo_MPI_Ibcast = &ASTCtx.Idents.get("MPI_Ibcast"); in initCollectiveIdentifiers()
140 IdentInfo_MPI_Reduce = &ASTCtx.Idents.get("MPI_Reduce"); in initCollectiveIdentifiers()
146 IdentInfo_MPI_Ireduce = &ASTCtx.Idents.get("MPI_Ireduce"); in initCollectiveIdentifiers()
153 IdentInfo_MPI_Allreduce = &ASTCtx.Idents.get("MPI_Allreduce"); in initCollectiveIdentifiers()
159 IdentInfo_MPI_Iallreduce = &ASTCtx.Idents.get("MPI_Iallreduce"); in initCollectiveIdentifiers()
166 IdentInfo_MPI_Alltoall = &ASTCtx.Idents.get("MPI_Alltoall"); in initCollectiveIdentifiers()
172 IdentInfo_MPI_Ialltoall = &ASTCtx.Idents.get("MPI_Ialltoall"); in initCollectiveIdentifiers()
180 void MPIFunctionClassifier::initAdditionalIdentifiers(ASTContext &ASTCtx) { in initAdditionalIdentifiers() argument
181 IdentInfo_MPI_Comm_rank = &ASTCtx.Idents.get("MPI_Comm_rank"); in initAdditionalIdentifiers()
185 IdentInfo_MPI_Comm_size = &ASTCtx.Idents.get("MPI_Comm_size"); in initAdditionalIdentifiers()
189 IdentInfo_MPI_Wait = &ASTCtx.Idents.get("MPI_Wait"); in initAdditionalIdentifiers()
193 IdentInfo_MPI_Waitall = &ASTCtx.Idents.get("MPI_Waitall"); in initAdditionalIdentifiers()
197 IdentInfo_MPI_Barrier = &ASTCtx.Idents.get("MPI_Barrier"); in initAdditionalIdentifiers()