-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfield.c
159 lines (139 loc) · 3.59 KB
/
field.c
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include <stdio.h>
//#include "gcc-plugin.h"
#include "gcc-plugin.h"
#include "tree.h"
#include "plugin-version.h"
#include "tm.h"
#include "cp/cp-tree.h"
#include "ggc.h"
extern _IO_FILE * code_outputfile;
void field_DECL_MODE(tree t)
{
if (DECL_MODE(t)) {
fprintf( code_outputfile,"DECL_MODE(%d),\n",DECL_MODE(t));
}
}
void field_DECL_OFFSET_ALIGN(tree t)
{
if (DECL_OFFSET_ALIGN(t)) {
fprintf( code_outputfile,"DECL_OFFSET_ALIGN(%ld),\n",DECL_OFFSET_ALIGN(t));
}
}
void field_DECL_QUALIFIER(tree t)
{
if (DECL_QUALIFIER(t)) {
//TODO:fprintf( code_outputfile,"DECL_QUALIFIER\n");// tree
//,DECL_QUALIFIER(t)
}
}
void field_TREE_ADDRESSABLE(tree t)
{
if (TREE_ADDRESSABLE(t)) {
fprintf( code_outputfile,"TREE_ADDRESSABLE %d\n",TREE_ADDRESSABLE(t));
}
}
void field_CONSTRUCTOR_BITFIELD_P(tree t)
{
if (CONSTRUCTOR_BITFIELD_P(t)) {
fprintf( code_outputfile,"CONSTRUCTOR_BITFIELD_P(),\n");
}
}
void field_DECL_BIT_FIELD(tree t)
{
if (DECL_BIT_FIELD(t)) {
fprintf( code_outputfile,"BIT_FIELD(),\n");
}
}
void field_DECL_BIT_FIELD_TYPE(tree t)
{
if (DECL_BIT_FIELD_TYPE(t)) {
fprintf( code_outputfile,"BIT_FIELD_TYPE\n");
}
}
void field_DECL_FCONTEXT(tree t)
{
// gets the parent
}
void field_DECL_VIRTUAL_P(tree t)
{
if (DECL_VIRTUAL_P(t)) {
fprintf( code_outputfile,"DECL_VIRTUAL_P(%d),\n",DECL_VIRTUAL_P(t));
}
} // vtable
void field_DECL_FIELD_BIT_OFFSET(tree t)
{
if (DECL_FIELD_BIT_OFFSET(t)) {
fprintf( code_outputfile,"DECL_BIT_FIELD_OFFSET\n");
//DECL_FIELD_BIT_OFFSET(t) TREE
}
}
void field_DECL_FIELD_OFFSET(tree t)
{
if (DECL_FIELD_OFFSET(t)) {
//fprintf( code_outputfile,"DECL_BIT_FIELD %d\n",DECL_FIELD_OFFSET(t));
fprintf( code_outputfile,"DECL_BIT_FIELD\n"); // tree
}
}
void field_DECL_INITIAL(tree t)
{
if (DECL_INITIAL(t)) {
fprintf( code_outputfile,"DECL_INITIAL\n");
//DECL_INITIAL(t) TREE
}
} // enum value
void field_DECL_NONADDRESSABLE_P(tree t)
{
if (DECL_NONADDRESSABLE_P(t)) {
fprintf( code_outputfile,"DECL_NONADDRESSABLE_P %d\n",DECL_NONADDRESSABLE_P(t));
}
}
void field_DECL_PACKED(tree t)
{
if (DECL_PACKED(t)) {
fprintf( code_outputfile,"DECL_PACKED %d\n",DECL_PACKED(t));
}
}
void field_DECL_UNSIGNED(tree t)
{
if (DECL_UNSIGNED(t)) {
fprintf( code_outputfile,"DECL_UNSIGNED %d\n",DECL_UNSIGNED(t));
}
}
void field_TREE_READONLY(tree t)
{
if (TREE_READONLY(t)) {
fprintf( code_outputfile,"TREE_READONLY %d\n",TREE_READONLY(t));
}
}
void fields (tree t)
{
tree field;
for (field = TYPE_FIELDS (t) ; field ; field = TREE_CHAIN (field)) {
// fprintf(stderr, "%s: member %s\n", "test1", tree_code_name[TREE_CODE(field)]);
fprintf( code_outputfile,"\tfield(\n");
name(field);
tree type = TREE_TYPE (field);
if (type) {
field_type(type);
}
//DECL_FIELD_CONTEXT
// In a FIELD_DECL node, it means that the programmer is permitted to construct the address of this field. This is used for aliasing purposes: see record_component_aliases.
field_CONSTRUCTOR_BITFIELD_P(t);
field_DECL_BIT_FIELD(t);
field_DECL_BIT_FIELD_TYPE(t);
field_DECL_FCONTEXT(t);
field_DECL_FIELD_BIT_OFFSET(t);
field_DECL_FIELD_OFFSET(t);
field_DECL_INITIAL(t); // enum value
field_DECL_MODE(t);
field_DECL_NONADDRESSABLE_P(t);
field_DECL_OFFSET_ALIGN(t);
field_DECL_PACKED(t);
field_DECL_QUALIFIER(t);
field_DECL_UNSIGNED(t);
field_DECL_VIRTUAL_P(t); // vtable
field_TREE_ADDRESSABLE(t);
field_TREE_READONLY(t);
fprintf( code_outputfile,"\t0),/*field*/\n");
}
}// fields