Home | History | Annotate | Download | only in VMCore

Lines Matching refs:GCNames

260 static DenseMap<const Function*,PooledStringPtr> *GCNames;
266 return GCNames && GCNames->count(this);
272 return *(*GCNames)[this];
279 if (!GCNames)
280 GCNames = new DenseMap<const Function*,PooledStringPtr>();
281 (*GCNames)[this] = GCNamePool->intern(Str);
286 if (GCNames) {
287 GCNames->erase(this);
288 if (GCNames->empty()) {
289 delete GCNames;
290 GCNames = 0;