Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DFunction.cpp373 static DenseMap<const Function*,PooledStringPtr> *GCNames; variable
379 return GCNames && GCNames->count(this); in hasGC()
385 return *(*GCNames)[this]; in getGC()
392 if (!GCNames) in setGC()
393 GCNames = new DenseMap<const Function*,PooledStringPtr>(); in setGC()
394 (*GCNames)[this] = GCNamePool->intern(Str); in setGC()
399 if (GCNames) { in clearGC()
400 GCNames->erase(this); in clearGC()
401 if (GCNames->empty()) { in clearGC()
402 delete GCNames; in clearGC()
[all …]