Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp569 std::unordered_multimap<Comdat *, GlobalValue *> &ComdatMembers; member in __anona0b2eb9f0211::FuncPGOInstrumentation
614 : F(Func), IsCS(IsCS), ComdatMembers(ComdatMembers), VPC(Func, TLI), in FuncPGOInstrumentation()
633 if (!ComdatMembers.empty()) in FuncPGOInstrumentation()
729 for (auto &&CM : make_range(ComdatMembers.equal_range(C))) { in canRenameComdat()
741 if (!canRenameComdat(F, ComdatMembers)) in renameComdatFunction()
1597 ComdatMembers.insert(std::make_pair(C, &F)); in collectComdatMembers()
1600 ComdatMembers.insert(std::make_pair(C, &GV)); in collectComdatMembers()
1603 ComdatMembers.insert(std::make_pair(C, &GA)); in collectComdatMembers()
1614 std::unordered_multimap<Comdat *, GlobalValue *> ComdatMembers; in InstrumentAllFunctions() local
1615 collectComdatMembers(M, ComdatMembers); in InstrumentAllFunctions()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalDCE.cpp153 for (auto &&CM : make_range(ComdatMembers.equal_range(C))) { in MarkLive()
306 ComdatMembers.insert(std::make_pair(C, &F)); in run()
309 ComdatMembers.insert(std::make_pair(C, &GV)); in run()
312 ComdatMembers.insert(std::make_pair(C, &GA)); in run()
440 ComdatMembers.clear(); in run()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSplitModule.cpp105 ComdatMembersType ComdatMembers; in findPartitions() local
107 auto recordGVSet = [&GVtoClusterMap, &ComdatMembers](GlobalValue &GV) { in findPartitions()
119 auto &Member = ComdatMembers[C]; in findPartitions()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DGlobalDCE.h44 std::unordered_multimap<Comdat *, GlobalValue *> ComdatMembers; variable