[Concepts] Check constraints for explicit template instantiations
authorRoy Jacobson <roi.jacobson1@gmail.com>
Thu, 3 Mar 2022 14:17:07 +0000 (06:17 -0800)
committerErich Keane <erich.keane@intel.com>
Thu, 3 Mar 2022 14:33:49 +0000 (06:33 -0800)
commit5aeaabf35eaddf9e5bfb05c0ec901a8aecfaa36a
treedf3c999304989984883278d0eec753764158f96b
parent3e87719177296a80ebf3fbf801a6f75799d2fe5e
[Concepts] Check constraints for explicit template instantiations

The standard requires[0] member function constraints to be checked when
explicitly instantiating classes. This patch adds this constraints
check.

This issue is tracked as #46029 [1].

Note that there's an related open CWG issue (2421[2]) about what to do when
multiple candidates have satisfied constraints. This is particularly an
issue because mangling doesn't contain function constraints, and so the
following code still ICEs with definition with same mangled name
'_ZN1BIiE1fEv' as another definition:

template<class T>
struct B {
  int f() requires std::same_as<T, int> {
    return 0;
  }
  int f() requires (std::same_as<T, int> &&
                    !std::same_as<T, char>) {
    return 1;
  }
};

template struct B<int>;

Also note that the constraints checking while instantiating *functions*
is still not implemented. I started looking at it but It's a bit more
complicated. I believe in such a case we have to consider the partial
constraints order and potentially choose the best candidate out of the
set of multiple valid ones.

[0]: https://eel.is/c++draft/temp.explicit#10
[1]: https://github.com/llvm/llvm-project/issues/46029
[2]: https://cplusplus.github.io/CWG/issues/2421.html

Differential Revision: https://reviews.llvm.org/D120255
clang/lib/Sema/SemaTemplateInstantiate.cpp
clang/test/AST/constraints-explicit-instantiation.cpp [new file with mode: 0644]