// slang-ir-call-graph.h #pragma once #include "slang-ir-clone.h" #include "slang-ir-insts.h" namespace Slang { void buildEntryPointReferenceGraph( Dictionary>& referencingEntryPoints, IRModule* module); HashSet* getReferencingEntryPoints( Dictionary>& m_referencingEntryPoints, IRInst* inst); } // namespace Slang