Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DFunction.cpp287 static DenseMap<const Function*,PooledStringPtr> *GCNames; variable
293 return GCNames && GCNames->count(this); in hasGC()
299 return *(*GCNames)[this]; in getGC()
306 if (!GCNames) in setGC()
307 GCNames = new DenseMap<const Function*,PooledStringPtr>(); in setGC()
308 (*GCNames)[this] = GCNamePool->intern(Str); in setGC()
313 if (GCNames) { in clearGC()
314 GCNames->erase(this); in clearGC()
315 if (GCNames->empty()) { in clearGC()
316 delete GCNames; in clearGC()
[all …]