Home
last modified time | relevance | path

Searched refs:GCNames (Results 1 – 1 of 1) sorted by relevance

/NextBSD/contrib/llvm/lib/IR/
HDFunction.cpp375 static DenseMap<const Function*,PooledStringPtr> *GCNames; variable
381 return GCNames && GCNames->count(this); in hasGC()
387 return *(*GCNames)[this]; in getGC()
394 if (!GCNames) in setGC()
395 GCNames = new DenseMap<const Function*,PooledStringPtr>(); in setGC()
396 (*GCNames)[this] = GCNamePool->intern(Str); in setGC()
401 if (GCNames) { in clearGC()
402 GCNames->erase(this); in clearGC()
403 if (GCNames->empty()) { in clearGC()
404 delete GCNames; in clearGC()
[all …]