Lines Matching refs:annotationCache
37 static ManagedStatic<per_module_annot_t> annotationCache; variable
42 annotationCache->erase(Mod); in clearAnnotationCache()
95 if ((*annotationCache).find(m) != (*annotationCache).end()) in cacheAnnotationFromMD()
96 (*annotationCache)[m][gv] = std::move(tmp); in cacheAnnotationFromMD()
100 (*annotationCache)[m] = std::move(tmp1); in cacheAnnotationFromMD()
108 if ((*annotationCache).find(m) == (*annotationCache).end()) in findOneNVVMAnnotation()
110 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findOneNVVMAnnotation()
112 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findOneNVVMAnnotation()
114 retval = (*annotationCache)[m][gv][prop][0]; in findOneNVVMAnnotation()
122 if ((*annotationCache).find(m) == (*annotationCache).end()) in findAllNVVMAnnotation()
124 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findAllNVVMAnnotation()
126 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findAllNVVMAnnotation()
128 retval = (*annotationCache)[m][gv][prop]; in findAllNVVMAnnotation()