@@ -2065,14 +2065,14 @@ StackWalkAction StackFrameIterator::Filter(void)
20652065                        //  and its parent, eventually making a callback for the parent as well.
20662066                        if  (m_flags & (FUNCTIONSONLY | SKIPFUNCLETS))
20672067                        {
2068-                             if  (!m_sfParent.IsNull () || m_crawl.pFunc ->IsILStub ())
2068+                             if  (!m_sfParent.IsNull () || m_crawl.pFunc ->IsDiagnosticsHidden ())
20692069                            {
20702070                                STRESS_LOG4 (LF_GCROOTS, LL_INFO100,
20712071                                    " STACKWALK: %s: not making callback for this frame, SPOfParent = %p, \
2072-                                     isILStub  = %d, m_crawl.pFunc = %pM\n "  ,
2073-                                     (!m_sfParent.IsNull () ? " SKIPPING_TO_FUNCLET_PARENT" " IS_IL_STUB " 
2072+                                     isDiagnosticsHidden  = %d, m_crawl.pFunc = %pM\n "  ,
2073+                                     (!m_sfParent.IsNull () ? " SKIPPING_TO_FUNCLET_PARENT" " IS_DIAGNOSTICS_HIDDEN " 
20742074                                    m_sfParent.SP ,
2075-                                     (m_crawl.pFunc ->IsILStub () ? 1  : 0 ),
2075+                                     (m_crawl.pFunc ->IsDiagnosticsHidden () ? 1  : 0 ),
20762076                                    m_crawl.pFunc );
20772077
20782078                                //  don't stop here
@@ -2085,10 +2085,10 @@ StackWalkAction StackFrameIterator::Filter(void)
20852085                            {
20862086                                STRESS_LOG4 (LF_GCROOTS, LL_INFO100,
20872087                                     " STACKWALK: %s: not making callback for this frame, SPOfParent = %p, \
2088-                                      isILStub  = %d, m_crawl.pFunc = %pM\n "  ,
2089-                                      (!m_sfParent.IsNull () ? " SKIPPING_TO_FUNCLET_PARENT" " IS_IL_STUB " 
2088+                                      isDiagnosticsHidden  = %d, m_crawl.pFunc = %pM\n "  ,
2089+                                      (!m_sfParent.IsNull () ? " SKIPPING_TO_FUNCLET_PARENT" " IS_DIAGNOSTICS_HIDDEN " 
20902090                                     m_sfParent.SP ,
2091-                                      (m_crawl.pFunc ->IsILStub () ? 1  : 0 ),
2091+                                      (m_crawl.pFunc ->IsDiagnosticsHidden () ? 1  : 0 ),
20922092                                     m_crawl.pFunc );
20932093
20942094                                //  don't stop here
@@ -2114,10 +2114,10 @@ StackWalkAction StackFrameIterator::Filter(void)
21142114                //  Skip IL stubs
21152115                if  (m_flags & FUNCTIONSONLY)
21162116                {
2117-                     if  (m_crawl.pFunc ->IsILStub ())
2117+                     if  (m_crawl.pFunc ->IsDiagnosticsHidden ())
21182118                    {
21192119                        LOG ((LF_GCROOTS, LL_INFO100000,
2120-                              " STACKWALK: IS_IL_STUB : not making callback for this frame, m_crawl.pFunc = %s\n " 
2120+                              " STACKWALK: IS_DIAGNOSTICS_HIDDEN : not making callback for this frame, m_crawl.pFunc = %s\n " 
21212121                             m_crawl.pFunc ->m_pszDebugMethodName ));
21222122
21232123                        //  don't stop here
0 commit comments