2 * Copyright (C) 2015 Yusuke Suzuki <utatane.tea@gmail.com>.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
26 #ifndef RuntimeFlags_h
27 #define RuntimeFlags_h
29 #include <initializer_list>
33 // macro(name, isEnabledFlag)
34 #define JSC_RUNTIME_FLAG(macro) \
35 macro(SymbolDisabled, false)\
36 macro(PromiseDisabled, false)
41 enum RuntimeFlagShiftValue
: unsigned {
42 #define JSC_DECLARE_RUNTIME_FLAG_SHIFT_VALUE(name, isEnabledFlag) shiftValueFor##name,
43 JSC_RUNTIME_FLAG(JSC_DECLARE_RUNTIME_FLAG_SHIFT_VALUE
)
44 #undef JSC_DECLARE_RUNTIME_FLAG_SHIFT_VALUE
48 enum RuntimeFlag
: unsigned {
49 #define JSC_DECLARE_RUNTIME_FLAG(name, isEnabledFlag) name = 1u << (shiftValueFor##name),
50 JSC_RUNTIME_FLAG(JSC_DECLARE_RUNTIME_FLAG
)
51 #undef JSC_DECLARE_RUNTIME_FLAG
54 #define JSC_DECLARE_RUNTIME_FLAG_ACCESSOR(name, isEnabledFlag) \
55 void set##name(bool value)\
62 bool is##name() const\
64 return m_flags & name;\
66 JSC_RUNTIME_FLAG(JSC_DECLARE_RUNTIME_FLAG_ACCESSOR
)
67 #undef JSC_DECLARE_RUNTIME_FLAG_ACCESSOR
74 RuntimeFlags(std::initializer_list
<RuntimeFlag
> initializerList
)
77 for (RuntimeFlag flag
: initializerList
)
81 explicit RuntimeFlags(unsigned flags
)
86 static RuntimeFlags
createAllEnabled()
89 #define JSC_USE_RUNTIME_FLAG(name, isEnabledFlag) ((isEnabledFlag) ? name : 0u) |
90 JSC_RUNTIME_FLAG(JSC_USE_RUNTIME_FLAG
)
91 #undef JSC_USE_RUNTIME_FLAG
102 #endif // RuntimeFlags_h