-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathcpp_storage_spec.h
106 lines (88 loc) · 2.56 KB
/
cpp_storage_spec.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*******************************************************************\
Module:
Author: Daniel Kroening, [email protected]
\*******************************************************************/
#ifndef CPROVER_CPP_CPP_STORAGE_SPEC_H
#define CPROVER_CPP_CPP_STORAGE_SPEC_H
#include <util/source_location.h>
class typet;
class cpp_storage_spect:public irept
{
public:
cpp_storage_spect():irept(ID_cpp_storage_spec)
{
}
explicit cpp_storage_spect(const typet &type)
{
read(type);
}
source_locationt &location()
{
return static_cast<source_locationt &>(add(ID_C_source_location));
}
const source_locationt &location() const
{
return static_cast<const source_locationt &>(find(ID_C_source_location));
}
bool is_static() const { return get_bool(ID_static); }
bool is_extern() const { return get_bool(ID_extern); }
bool is_auto() const { return get_bool(ID_auto); }
bool is_register() const { return get_bool(ID_register); }
bool is_mutable() const { return get_bool(ID_mutable); }
bool is_thread_local() const { return get_bool(ID_thread_local); }
bool is_asm() const { return get_bool(ID_asm); }
bool is_weak() const
{
return get_bool(ID_weak);
}
bool is_constexpr() const
{
return get_bool(ID_constexpr);
}
void set_static() { set(ID_static, true); }
void set_extern() { set(ID_extern, true); }
void set_auto() { set(ID_auto, true); }
void set_register() { set(ID_register, true); }
void set_mutable() { set(ID_mutable, true); }
void set_thread_local() { set(ID_thread_local, true); }
void set_asm() { set(ID_asm, true); }
void set_weak()
{
set(ID_weak, true);
}
void set_constexpr()
{
set(ID_constexpr, true);
}
bool is_empty() const
{
return !is_static() && !is_extern() && !is_auto() && !is_register() &&
!is_mutable() && !is_thread_local() && !is_asm() && !is_weak() &&
!is_constexpr();
}
cpp_storage_spect &operator|=(const cpp_storage_spect &other)
{
if(other.is_static())
set_static();
if(other.is_extern())
set_extern();
if(other.is_auto())
set_auto();
if(other.is_register())
set_register();
if(other.is_mutable())
set_mutable();
if(other.is_thread_local())
set_thread_local();
if(other.is_asm())
set_asm();
if(other.is_weak())
set_weak();
if(other.is_constexpr())
set_constexpr();
return *this;
}
private:
void read(const typet &type);
};
#endif // CPROVER_CPP_CPP_STORAGE_SPEC_H