Lines Matching refs:GCNames
329 static DenseMap<const Function*,PooledStringPtr> *GCNames; variable
335 return GCNames && GCNames->count(this); in hasGC()
341 return *(*GCNames)[this]; in getGC()
348 if (!GCNames) in setGC()
349 GCNames = new DenseMap<const Function*,PooledStringPtr>(); in setGC()
350 (*GCNames)[this] = GCNamePool->intern(Str); in setGC()
355 if (GCNames) { in clearGC()
356 GCNames->erase(this); in clearGC()
357 if (GCNames->empty()) { in clearGC()
358 delete GCNames; in clearGC()
359 GCNames = nullptr; in clearGC()