What does a compiler check for uninstantiated template code?

For example, the following code piece compiles with gcc-4.9 and clang-602

class Base                                                                      
{                                                                               
public:                                                                         
    static void foo() {}                                                        
    void badfoo(int i) {}                                                       
};                                                                              

template <typename T>                                                           
class Derived : public Base                                                     
{                                                                               
public:                                                                         
    void bar() { Base::foo(); }                                                 
    void badbar() { Base::badfoo(); }  // compiles ok
    //static void badbar() { Base::badfoo(); }  // compile error                                                                                    
    //void worsebar() { Base::nonexist(); }  // compile error                                   
};                                                                              

int main()                                                                      
{                                                                               
    return 0;                                                                   
}  

But the commented out lines won't compile.

My questions are:

  • Why badbar() compiles but worsebar() doesn't ?

  • If I change badbar() to static it won't compile either, regardless if base::badfoo is static or not.

  • Does the standard say anything about what should be checked in this situation ? gcc4.4 actually refuses to compile even badbar() .

  • Update:

    Problem 1 has been explained by a number of answers, but it seems compilers sometimes go the extra mile to check overload as well, it happens to gcc 4.4.3 and 4.8.2, but not 4.7.2 and 4.9.1.

    Problem 2: As Marco A. pointed out, clang won't compile but gcc4.9 will still pass. However, gcc4.2 and gcc4.4 both reject the code, and the error they are complaining is "no matching function" rather than "calling non-static member without an object" in clang. There's seems to be no conclusive answer to this question, so I'm adding a language-lawyer tag as Daniel Frey suggested.

    More Update:

    I think for question 2 the answer is pretty clear now: it's up to the compiler whether adding static declaration will change the diagnosis. It varies from compiler to compiler and different versions of the same compiler. The language lawyer didn't show up, I'm going to accept Daniel Frey's answer as it best explained the first question. But answers from Marco A. and Hadi Brais also worth reading.


    The standard only requires the name-lookup to happen at phase 1, when the template is first parsed. This turns up badfoo in badbar which is why the code compiles. The compiler is not required to do the overload resolution at that time.

    The overload resolution (which always happens as a separate step after the name lookup) is then performed in phase 2 when badbar is instantiated - which is not the case in your example. This principle can be found in

    3.4 Name lookup [basic.lookup]

    1 The name lookup rules apply uniformly to all names (including typedef-names (7.1.3), namespace-names (7.3), and class-names (9.1)) wherever the grammar allows such names in the context discussed by a particular rule. Name lookup associates the use of a name with a declaration (3.1) of that name. Name lookup shall find an unambiguous declaration for the name (see 10.2). Name lookup may associate more than one declaration with a name if it finds the name to be a function name; the declarations are said to form a set of overloaded functions (13.1). Overload resolution (13.3) takes place after name lookup has succeeded. The access rules (Clause 11) are considered only once name lookup and function overload resolution (if applicable) have succeeded. Only after name lookup, function overload resolution (if applicable) and access checking have succeeded are the attributes introduced by the name's declaration used further in expression processing (Clause 5).

    (Emphasis mine)

    I'd therefore say that the compiler(s) are correct to accept the code, although I'm not sure that they are required to do so.

    To see the code being rejected, you need instantiate badbar .


    Consider [temp.res]/8:

    If no valid specialization can be generated for a template, and that template is not instantiated, the template is ill-formed, no diagnostic required.

    This (in particular the "no diagnostic required" bit) makes any compiler's behaviour compliant with respect to worsebar . Implementations' discrepancies on this kind of code are just QoI issues - common compilers do some analysis and will complain. It is hard to say when exactly, and you should be prepared to come back to template code when upgrading or switching your implementation.


    To make some clarity.. this version of the code compiles just fine on clang and gcc

    class Base                                                                      
    {                                                                               
    public:                                                                         
        static void foo() {}                                                        
        void badfoo(int a) {}                                                       
    };                                                                              
    
    template <typename T>                                                           
    class Derived : public Base                                                     
    {                                                                               
    public:                                                                         
        void bar() { Base::foo(); }                                                 
        void badbar() { Base::badfoo(); }   
    }; 
    

    since

    [temp.res]/p8

    If no valid specialization can be generated for a template, and that template is not instantiated, the template is ill-formed, no diagnostic required.

    Both gcc and clang aren't required to diagnose this . This one also falls in the same case as above (clang emits an error, gcc doesn't)

    class Base                                                                      
    {                                                                               
    public:                                                                         
        static void foo() {}                                                        
        void badfoo(int a) {}                                                   
    };                                                                              
    
    template <typename T>                                                           
    class Derived : public Base                                                     
    {                                                                               
    public:                                                                         
        void bar() { Base::foo(); }                                                 
        static void badbar() { Base::badfoo(); } 
    }; 
    

    The case with

    void worsebar() { Base::nonexist(); }
    

    is different since it violates name lookup [temp.res]/p9

    When looking for the declaration of a name used in a template definition, the usual lookup rules (3.4.1, 3.4.2) are used for non-dependent names

    and [temp.res]/p10

    If a name does not depend on a template-parameter (as defined in 14.6.2), a declaration (or set of declarations) for that name shall be in scope at the point where the name appears in the template definition

    Disclaimer: all of the above does not apply to MSVC which happily postpones all this stuff to the second phase of the lookup.


    Edit:

    in the case

    class Base                                                                      
    {                                                                               
    public:                                                                         
        static void foo() {}                                                        
        void badfoo(int i) {}                                                       
    };                                                                              
    
    template <typename T>                                                           
    class Derived : public Base                                                     
    {                                                                               
    public:                                                                         
        static void badbar() { Base::badfoo(); }  // static function
    

    clang triggers an error while gcc doesn't. This falls in the first case since name lookup is successful but clang performs an additional check: since badfoo is a member function it tries to construct a valid implicit member reference expression. It then catches the fact that a member function is implicitly being called from a static function and detects the context mismatch. This diagnostic is entirely up to the compiler at this point (it wouldn't in case of an instantiation).

    链接地址: http://www.djcxy.com/p/58714.html

    上一篇: 模板替换中的私人成员访问和SFINAE

    下一篇: 编译器检查未经证实的模板代码是什么?