I was reading through this document http://llvm.org/docs/WritingAnLLVMPass.html, where in I came across CallGraphSCCPass. I searched for SCC abbreviation, but wasn’t able to find one. What does SCC stand for? Where can I read more about it?
I was reading through this document http://llvm.org/docs/WritingAnLLVMPass.html , where in I came across CallGraphSCCPass
Share
According to The LLVM Lexicon, It stands for “strongly connected component“.
The source-code comments explain it this way:
(But the only reason I was able to find the lexicon is that I figured out that they must mean “strongly connected component”, and then I Googled for that phrase on
site:llvm.orgto confirm. It doesn’t seem to be prominently linked.)