summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2016-09-02 18:53:31 +0000
committerEric Fiselier <eric@efcs.ca>2016-09-02 18:53:31 +0000
commit341e825eae615f8019c667f15ff62ebc4ade005a (patch)
treeb4a1ac1401942e12d90f02e604831f731bbdcca0 /lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp
parenta27eeccadef57396de3480acdfcaeb75407501dd (diff)
downloadbcm5719-llvm-341e825eae615f8019c667f15ff62ebc4ade005a.tar.gz
bcm5719-llvm-341e825eae615f8019c667f15ff62ebc4ade005a.zip
Implement __attribute__((require_constant_initialization)) for safe static initialization.
Summary: This attribute specifies expectations about the initialization of static and thread local variables. Specifically that the variable has a [constant initializer](http://en.cppreference.com/w/cpp/language/constant_initialization) according to the rules of [basic.start.static]. Failure to meet this expectation will result in an error. Static objects with constant initializers avoid hard-to-find bugs caused by the indeterminate order of dynamic initialization. They can also be safely used by other static constructors across translation units. This attribute acts as a compile time assertion that the requirements for constant initialization have been met. Since these requirements change between dialects and have subtle pitfalls it's important to fail fast instead of silently falling back on dynamic initialization. ```c++ // -std=c++14 #define SAFE_STATIC __attribute__((require_constant_initialization)) static struct T { constexpr T(int) {} ~T(); }; SAFE_STATIC T x = {42}; // OK. SAFE_STATIC T y = 42; // error: variable does not have a constant initializer // copy initialization is not a constant expression on a non-literal type. ``` This attribute can only be applied to objects with static or thread-local storage duration. Reviewers: majnemer, rsmith, aaron.ballman Subscribers: jroelofs, cfe-commits Differential Revision: https://reviews.llvm.org/D23385 llvm-svn: 280525
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud