-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathcpp_declarator.h
101 lines (79 loc) · 2.14 KB
/
cpp_declarator.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
/*******************************************************************\
Module: C++ Language Type Checking
Author: Daniel Kroening, [email protected]
\*******************************************************************/
/// \file
/// C++ Language Type Checking
#ifndef CPROVER_CPP_CPP_DECLARATOR_H
#define CPROVER_CPP_CPP_DECLARATOR_H
#include <util/expr.h>
#include "cpp_name.h"
class cpp_declaratort:public exprt
{
public:
cpp_declaratort():exprt(ID_cpp_declarator)
{
value().make_nil();
name().make_nil();
add_source_location().make_nil();
}
explicit cpp_declaratort(const typet &type):exprt(ID_cpp_declarator, type)
{
value().make_nil();
name().make_nil();
add_source_location().make_nil();
}
cpp_namet &name() { return static_cast<cpp_namet &>(add(ID_name)); }
const cpp_namet &name() const
{
return static_cast<const cpp_namet &>(find(ID_name));
}
exprt &value() { return static_cast<exprt &>(add(ID_value)); }
const exprt &value() const
{
return static_cast<const exprt &>(find(ID_value));
}
bool get_is_parameter() const
{
return get_bool(ID_is_parameter);
}
void set_is_parameter(bool is_parameter)
{
set(ID_is_parameter, is_parameter);
}
bool get_has_ellipsis() const
{
return get_bool(ID_ellipsis);
}
void set_has_ellipsis()
{
set(ID_ellipsis, true);
}
// initializers for function arguments
exprt &init_args()
{
return static_cast<exprt &>(add(ID_init_args));
}
const exprt &init_args() const
{
return static_cast<const exprt &>(find(ID_init_args));
}
irept &method_qualifier() { return add(ID_method_qualifier); }
const irept &method_qualifier() const { return find(ID_method_qualifier); }
irept &member_initializers() { return add(ID_member_initializers); }
const irept &member_initializers() const
{
return find(ID_member_initializers);
}
irept &throw_decl()
{
return add(ID_throw_decl);
}
const irept &throw_decl() const
{
return find(ID_throw_decl);
}
void output(std::ostream &out) const;
typet merge_type(const typet &declaration_type) const;
};
#endif // CPROVER_CPP_CPP_DECLARATOR_H