Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DFunction.cpp329 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()
[all …]