-
Notifications
You must be signed in to change notification settings - Fork 0
/
code_jmp.c
242 lines (196 loc) · 5.54 KB
/
code_jmp.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/********************************************
code_jmp.c
copyright 1991,2014-2016 Michael D. Brennan
This is a source file for mawk, an implementation of
the AWK programming language.
Mawk is distributed without warranty under the terms of
the GNU General Public License, version 3, 2007.
If you import elements of this code into another product,
you agree to not name that product mawk.
********************************************/
/* this module deals with back patching jumps, breaks and continues,
and with save and restoring code when we move code.
There are three stacks. If we encounter a compile error, the
stacks are frozen, i.e., we do not attempt error recovery
on the stacks
*/
#include "mawk.h" // <-- #include "sizes.h"
#include "table.h"
#include "code.h"
#include "init.h"
#include "types_string.h"
#define error_state ( compile_error_count > 0 )
/*---------- back patching jumps ---------------*/
typedef struct jmp {
struct jmp * link;
int source_offset;
} JMP;
static JMP * jmp_top;
void
code_jmp( int jtype, INST * target )
{
if ( error_state )
return;
/* WARNING: Don't emit any code before using target or
relocation might make it invalid */
if ( target )
code2op( jtype, target - ( code_ptr + 1 ) );
else {
register JMP * p = ZMALLOC( JMP );
/* stack for back patch */
code2op( jtype, 0 );
p->source_offset = code_offset - 1;
p->link = jmp_top;
jmp_top = p;
}
}
void
patch_jmp( INST * target ) /* patch a jump on the jmp_stack */
{
register JMP * p;
register INST * source; /* jmp starts here */
if ( !error_state ) {
#ifdef DEBUG
if ( !jmp_top )
bozo( "jmp stack underflow" );
#endif
p = jmp_top;
jmp_top = p->link;
source = p->source_offset + code_base;
source->op = target - source;
ZFREE( p );
}
}
/*-- break and continue -------*/
typedef struct bc {
struct bc * link; /* stack as linked list */
int type; /* 'B' or 'C' or mark start with 0 */
int source_offset; /* position of _JMP */
} BC;
static BC * bc_top;
void
BC_new() /* mark the start of a loop */
{
BC_insert( 0, (INST *)0 );
}
void
BC_insert( int type, INST * address )
{
register BC * p;
if ( error_state )
return;
if ( type && !bc_top ) {
compile_error( "%s statement outside of loop",
type == 'B' ? "break" : "continue" );
return;
}
else {
p = ZMALLOC( BC );
p->type = type;
p->source_offset = address - code_base;
p->link = bc_top;
bc_top = p;
}
}
/* patch all break and continues for one loop */
void
BC_clear( INST * B_address, INST * C_address )
{
register BC *p, *q;
INST * source;
if ( error_state )
return;
p = bc_top;
/* pop down to the mark node */
while ( p->type ) {
source = code_base + p->source_offset;
source->op = ( p->type == 'B' ? B_address : C_address )
- source;
q = p;
p = p->link;
ZFREE( q );
}
/* remove the mark node */
bc_top = p->link;
ZFREE( p );
}
/*----- moving code --------------------------*/
/* a stack to hold some pieces of code while
reorganizing loops .
*/
typedef struct mc { /* mc -- move code */
struct mc * link;
INST * code; /* the save code */
unsigned len; /* its length */
int scope; /* its scope */
int move_level; /* size of this stack when coded */
FBLOCK * fbp; /* if scope FUNCT */
int offset; /* distance from its code base */
} MC;
static MC * mc_top;
int code_move_level = 0; /* see comment in code.h */
#define NO_SCOPE -1
/* means relocation of resolve list not needed */
void
code_push(
INST * code,
unsigned len,
int scope,
FBLOCK * fbp )
{
register MC * p;
if ( !error_state ) {
p = ZMALLOC( MC );
p->len = len;
p->link = mc_top;
mc_top = p;
if ( len ) {
p->code = (INST *)zmalloc( sizeof( INST ) * len );
memcpy( p->code, code, sizeof( INST ) * len );
}
if ( !resolve_list )
p->scope = NO_SCOPE;
else {
p->scope = scope;
p->move_level = code_move_level;
p->fbp = fbp;
p->offset = ( code == 0 ) ? 0 : code - code_base;
}
}
code_move_level++;
}
/* copy the code at the top of the mc stack to target.
return the number of INSTs moved */
unsigned
code_pop( INST * target )
{
register MC * p;
unsigned len;
int target_offset;
if ( error_state )
return 0;
#ifdef DEBUG
if ( !mc_top )
bozo( "mc underflow" );
#endif
p = mc_top;
mc_top = p->link;
len = p->len;
while ( target + len >= code_warn ) {
target_offset = target - code_base;
code_grow();
target = code_base + target_offset;
}
if ( len ) {
memcpy( target, p->code, len * sizeof( INST ) );
zfree( p->code, len * sizeof( INST ) );
}
if ( p->scope != NO_SCOPE ) {
target_offset = target - code_base;
relocate_resolve_list( p->scope, p->move_level, p->fbp,
p->offset, len, target_offset - p->offset );
}
ZFREE( p );
code_move_level--;
return len;
}