]> granicus.if.org Git - clang/commit
Use attribute argument information to determine when to parse attribute arguments...
authorDouglas Gregor <dgregor@apple.com>
Thu, 2 May 2013 23:25:32 +0000 (23:25 +0000)
committerDouglas Gregor <dgregor@apple.com>
Thu, 2 May 2013 23:25:32 +0000 (23:25 +0000)
commit92eb7d847cb1273a63d5e3b7dc98a7c97a81b703
treed8a3fb34bb36933ecba4c0a8cc9b6b02c8dcf895
parentfa5f03052bc39d9c8f2fa8b4002597a8219760a4
Use attribute argument information to determine when to parse attribute arguments as expressions.

This change partly addresses a heinous problem we have with the
parsing of attribute arguments that are a lone identifier. Previously,
we would end up parsing the 'align' attribute of this as an expression
"(Align)":

 template<unsigned Size, unsigned Align>
 class my_aligned_storage
 {
   __attribute__((align((Align)))) char storage[Size];
 };

while this would parse as a "parameter name" 'Align':

 template<unsigned Size, unsigned Align>
 class my_aligned_storage
 {
   __attribute__((align(Align))) char storage[Size];
 };

The code that handles the alignment attribute would completely ignore
the parameter name, so the while the first of these would do what's
expected, the second would silently be equivalent to

 template<unsigned Size, unsigned Align>
 class my_aligned_storage
 {
   __attribute__((align)) char storage[Size];
 };

i.e., use the maximal alignment rather than the specified alignment.

Address this by sniffing the "Args" provided in the TableGen
description of attributes. If the first argument is "obviously"
something that should be treated as an expression (rather than an
identifier to be matched later), parse it as an expression.

Fixes <rdar://problem/13700933>.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@180973 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Parse/CMakeLists.txt
include/clang/Parse/Makefile
lib/Parse/CMakeLists.txt
lib/Parse/ParseDecl.cpp
lib/Sema/SemaDecl.cpp
test/SemaObjC/format-arg-attribute.m
test/SemaTemplate/attributes.cpp
utils/TableGen/ClangAttrEmitter.cpp
utils/TableGen/TableGen.cpp
utils/TableGen/TableGenBackends.h