-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathqb_function_inliner.c
560 lines (522 loc) · 23.5 KB
/
qb_function_inliner.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2012 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Chung Leong <cleong@cal.berkeley.edu> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#include "qb.h"
static void qb_add_substitution(qb_function_inliner_context *cxt, qb_address *callee_address, qb_address *caller_address) {
qb_address_substitution *substitution = &cxt->substitutions[cxt->substitution_count++];
substitution->original = callee_address;
substitution->current = caller_address;
if(caller_address) {
if(!IS_READ_ONLY(callee_address)) {
qb_mark_as_writable(cxt->caller_context, caller_address);
}
}
}
static qb_address * qb_find_substitution_address(qb_function_inliner_context *cxt, qb_address *callee_address) {
uint32_t i;
for(i = 0; i < cxt->substitution_count; i++) {
qb_address_substitution *substitution = &cxt->substitutions[i];
if(substitution->original == callee_address) {
return substitution->current;
}
}
return NULL;
}
static qb_variable * qb_find_variable_with_address(qb_function_inliner_context *cxt, qb_address *callee_address) {
uint32_t i;
for(i = 0; i < cxt->callee_context->variable_count; i++) {
qb_variable *qvar = cxt->callee_context->variables[i];
if(qvar->address == callee_address) {
return qvar;
}
}
return NULL;
}
static void qb_add_constant_substitution(qb_function_inliner_context *cxt, qb_address *callee_address) {
qb_address *caller_address;
qb_primitive_type type = callee_address->type;
if(IS_SCALAR(callee_address)) {
switch(type) {
case QB_TYPE_S08: {
CTYPE(S08) value = VALUE_IN(cxt->callee_context->storage, S08, callee_address);
caller_address = qb_obtain_constant_S08(cxt->caller_context, value);
} break;
case QB_TYPE_U08: {
CTYPE(U08) value = VALUE_IN(cxt->callee_context->storage, U08, callee_address);
caller_address = qb_obtain_constant_U08(cxt->caller_context, value);
} break;
case QB_TYPE_S16: {
CTYPE(S16) value = VALUE_IN(cxt->callee_context->storage, S16, callee_address);
caller_address = qb_obtain_constant_S16(cxt->caller_context, value);
} break;
case QB_TYPE_U16: {
CTYPE(U16) value = VALUE_IN(cxt->callee_context->storage, U16, callee_address);
caller_address = qb_obtain_constant_U16(cxt->caller_context, value);
} break;
case QB_TYPE_S32: {
CTYPE(S32) value = VALUE_IN(cxt->callee_context->storage, S32, callee_address);
caller_address = qb_obtain_constant_S32(cxt->caller_context, value);
} break;
case QB_TYPE_U32: {
CTYPE(U32) value = VALUE_IN(cxt->callee_context->storage, U32, callee_address);
caller_address = qb_obtain_constant_U32(cxt->caller_context, value);
} break;
case QB_TYPE_S64: {
CTYPE(S64) value = VALUE_IN(cxt->callee_context->storage, S64, callee_address);
caller_address = qb_obtain_constant_S64(cxt->caller_context, value);
} break;
case QB_TYPE_U64: {
CTYPE(U64) value = VALUE_IN(cxt->callee_context->storage, U64, callee_address);
caller_address = qb_obtain_constant_U64(cxt->caller_context, value);
} break;
case QB_TYPE_F32: {
CTYPE(F32) value = VALUE_IN(cxt->callee_context->storage, F32, callee_address);
caller_address = qb_obtain_constant_F32(cxt->caller_context, value);
} break;
case QB_TYPE_F64: {
CTYPE(F64) value = VALUE_IN(cxt->callee_context->storage, F64, callee_address);
caller_address = qb_obtain_constant_F64(cxt->caller_context, value);
} break;
default: {
} break;
}
} else {
uint32_t dimension = ARRAY_SIZE_IN(cxt->callee_context->storage, callee_address);
caller_address = qb_create_constant_array(cxt->caller_context, type, &dimension, 1);
memcpy(ARRAY_IN(cxt->caller_context->storage, I08, caller_address), ARRAY_IN(cxt->callee_context->storage, I08, callee_address), BYTE_COUNT(dimension, type));
}
caller_address->flags |= callee_address->flags & (QB_ADDRESS_BOOLEAN | QB_ADDRESS_STRING | QB_ADDRESS_IMAGE);
qb_add_substitution(cxt, callee_address, caller_address);
}
static void qb_perform_assignment(qb_function_inliner_context *cxt, qb_address *dst_address, qb_address *src_address) {
qb_operand operands[2] = { { QB_OPERAND_ADDRESS, { dst_address } }, { QB_OPERAND_ADDRESS, { src_address } } };
qb_operand result = { QB_OPERAND_EMPTY, { NULL } };
qb_produce_op(cxt->caller_context, &factory_assign, operands, 2, &result, NULL, 0, NULL);
}
static int32_t qb_initialization_required(qb_function_inliner_context *cxt, qb_address *callee_address) {
uint32_t i, j;
if(IS_VARIABLE_LENGTH(callee_address)) {
return TRUE;
}
for(i = 0; i < cxt->callee_context->op_count; i++) {
qb_op *callee_op = cxt->callee_context->ops[i];
if(callee_op->flags & (QB_OP_JUMP | QB_OP_BRANCH)) {
// branching occurs prior to address being access
return TRUE;
}
for(j = 0; j < callee_op->operand_count; j++) {
qb_operand *callee_operand = &callee_op->operands[j];
if(callee_operand->type == QB_OPERAND_ADDRESS) {
qb_address *address = callee_operand->address;
int32_t accessed = FALSE, partial = FALSE;
do {
if(address == callee_address) {
accessed = TRUE;
if(callee_operand->address->dimension_count < callee_address->dimension_count) {
// only part of the address is written to
partial = TRUE;
}
break;
}
address = address->source_address;
} while(address);
if(accessed) {
if(qb_is_operand_write_target(callee_op->opcode, j)) {
// if the address is fully written to before it's read, then there's no need to initialize it
if(!partial) {
return TRUE;
}
} else {
return TRUE;
}
}
}
}
}
// address is never read
return TRUE;
}
static void qb_add_writable_substitution(qb_function_inliner_context *cxt, qb_address *callee_address) {
USE_TSRM
int32_t need_new_address = TRUE;
qb_address *caller_address;
qb_address *argument_address = NULL;
qb_variable *callee_var = qb_find_variable_with_address(cxt, callee_address);
qb_primitive_type type = callee_address->type;
if(callee_var) {
if(callee_var->flags & QB_VARIABLE_ARGUMENT) {
uint32_t argument_index = qb_get_variable_index(cxt->callee_context, callee_var->address);
if(argument_index < cxt->argument_count) {
// use the argument directly if the argument is passed by ref or read-only
// and if the size and type matches
qb_operand *argument = &cxt->arguments[argument_index];
if(argument->type != QB_OPERAND_ADDRESS) {
qb_perform_type_coercion(cxt->caller_context, argument, callee_address->type, 0);
}
argument_address = argument->address;
if((callee_var->flags & QB_VARIABLE_BY_REF) || IS_READ_ONLY(callee_address)) {
if(argument_address->type == callee_address->type) {
int32_t compatible = FALSE;
if(IS_FIXED_LENGTH(argument_address)) {
if(IS_FIXED_LENGTH(callee_address)) {
uint32_t length1 = ARRAY_SIZE_IN(cxt->caller_context->storage, argument_address);
uint32_t length2 = ARRAY_SIZE_IN(cxt->callee_context->storage, callee_address);
if(length1 == length2) {
compatible = TRUE;
}
} else if(IS_READ_ONLY(callee_address->array_size_address)) {
// the function doesn't change the length
uint32_t length1 = ARRAY_SIZE_IN(cxt->caller_context->storage, argument_address);
uint32_t length2 = 1, i;
for(i = 1; i < callee_address->dimension_count; i++) {
qb_address *element_size_address = callee_address->array_size_addresses[i];
if(IS_IMMUTABLE(element_size_address)) {
length2 = VALUE_IN(cxt->callee_context->storage, U32, element_size_address);
break;
}
}
if((length1 % length2) == 0) {
compatible = TRUE;
}
}
} else if(IS_VARIABLE_LENGTH(argument_address) && IS_VARIABLE_LENGTH(callee_address)) {
compatible = TRUE;
}
if(compatible) {
caller_address = argument_address;
need_new_address = FALSE;
argument_address = NULL;
}
}
}
} else {
caller_address = qb_obtain_constant_zval(cxt->caller_context, callee_var->default_value, callee_var->address->type);
need_new_address = FALSE;
}
} else if(callee_var->flags & QB_VARIABLE_RETURN_VALUE) {
if(cxt->result->type == QB_OPERAND_NONE) {
// the result isn't used--don't create an address for the return value
need_new_address = FALSE;
caller_address = NULL;
}
} else if(callee_var->flags & QB_VARIABLE_CLASS_INSTANCE) {
zval *name = qb_string_to_zend_literal(callee_var->name, callee_var->name_length TSRMLS_CC);
qb_variable *caller_var = qb_get_instance_variable(cxt->caller_context, name);
need_new_address = FALSE;
caller_address = caller_var->address;
}
}
if(need_new_address) {
if(callee_var && !(callee_var->flags & (QB_VARIABLE_ARGUMENT | QB_VARIABLE_RETURN_VALUE))) {
qb_variable *new_var = qb_allocate_variable(cxt->caller_context->pool);
new_var->name = callee_var->name;
new_var->name_length = callee_var->name_length;
new_var->zend_class = callee_var->zend_class;
new_var->flags = callee_var->flags;
new_var->hash_value = callee_var->hash_value;
if(callee_address->dimension_count == 0) {
caller_address = qb_create_writable_scalar(cxt->caller_context, type);
} else {
uint32_t dimension = IS_FIXED_LENGTH(callee_address) ? ARRAY_SIZE_IN(cxt->callee_context->storage, callee_address) : 0;
caller_address = qb_create_writable_array(cxt->caller_context, type, &dimension, 1);
}
caller_address->flags = callee_address->flags;
new_var->address = caller_address;
if(callee_var->flags & QB_VARIABLE_LOCAL) {
// local variables might need to be initialized to zero
if(qb_initialization_required(cxt, callee_var->address)) {
qb_operand unset_operand = { QB_OPERAND_ADDRESS, { caller_address } };
qb_produce_op(cxt->caller_context, &factory_unset, &unset_operand, 1, NULL, NULL, 0, NULL);
}
}
} else {
if(IS_NON_REUSABLE(callee_address)) {
// it's an array initializer
uint32_t dimensions[MAX_DIMENSION];
uint32_t dimension_count = callee_address->dimension_count, i;
uint32_t element_count, byte_count;
int8_t *src_memory, *dst_memory;
for(i = 0; i < dimension_count; i++) {
dimensions[i] = VALUE_IN(cxt->callee_context->storage, U32, callee_address->dimension_addresses[i]);
}
caller_address = qb_create_writable_array(cxt->caller_context, type, dimensions, dimension_count);
qb_mark_as_temporary(cxt->caller_context, caller_address);
// allocate space for it and copy the contents at the callee address
qb_allocate_storage_space(cxt->caller_context, caller_address, TRUE);
element_count = ARRAY_SIZE_IN(cxt->caller_context->storage, caller_address);
byte_count = BYTE_COUNT(element_count, type);
src_memory = ARRAY_IN(cxt->callee_context->storage, I08, callee_address);
dst_memory = ARRAY_IN(cxt->caller_context->storage, I08, caller_address);
memcpy(dst_memory, src_memory, byte_count);
} else {
qb_variable_dimensions dim;
if(IS_SCALAR(callee_address)) {
dim.array_size_address = NULL;
dim.dimension_count = 0;
} else {
// base address of arrays always point to linear arrays
dim.dimension_count = 1;
if(IS_FIXED_LENGTH(callee_address)) {
// find equivalent constant address in the caller storage
dim.array_size_address = qb_find_substitution_address(cxt, callee_address->array_size_address);
} else {
// it's variable length
dim.array_size_address = NULL;
}
}
caller_address = qb_obtain_temporary_variable(cxt->caller_context, callee_address->type, &dim);
if(callee_var && (callee_var->flags & QB_VARIABLE_RETURN_VALUE)) {
cxt->result->address = caller_address;
cxt->result->type = QB_OPERAND_ADDRESS;
}
}
}
}
if(caller_address) {
if(IS_VARIABLE_LENGTH(caller_address)) {
// add a substitution for the address of the array length as well
qb_add_substitution(cxt, callee_address->array_size_address, caller_address->array_size_address);
}
if(argument_address) {
// copy the argument into the temporary variable
// NOTE: not handling array expansion here
// functions that changes the size of the arugment shouldn't be inlinable
qb_perform_assignment(cxt, caller_address, argument_address);
// qb_perform_assignment() release the temporary variable
// need to relocked it
qb_lock_address(cxt->caller_context, caller_address);
} else {
// unset read-only flag on the caller variable
uint32_t i;
if(!IS_READ_ONLY(callee_address)) {
caller_address->flags &= ~QB_ADDRESS_READ_ONLY;
}
for(i = 0; i < caller_address->dimension_count; i++) {
qb_address *callee_dimension_address = callee_address->dimension_addresses[i];
qb_address *caller_dimension_address = caller_address->dimension_addresses[i];
qb_address *callee_array_size_address = callee_address->array_size_addresses[i];
qb_address *caller_array_size_address = caller_address->array_size_addresses[i];
if(!IS_READ_ONLY(callee_dimension_address)) {
caller_dimension_address->flags &= ~QB_ADDRESS_READ_ONLY;
}
if(!IS_READ_ONLY(callee_array_size_address)) {
caller_array_size_address->flags &= ~QB_ADDRESS_READ_ONLY;
}
}
}
}
qb_add_substitution(cxt, callee_address, caller_address);
}
static void qb_add_alias_substitution(qb_function_inliner_context *cxt, qb_address *callee_alias) {
qb_address *caller_alias = qb_allocate_address(cxt->caller_context->pool);
qb_address **p_caller_alias = qb_enlarge_array((void **) &cxt->caller_context->address_aliases, 1);
qb_address *source_address = qb_find_substitution_address(cxt, callee_alias->source_address);
*p_caller_alias = caller_alias;
caller_alias->type = source_address->type;
caller_alias->segment_selector = INVALID_INDEX;
caller_alias->segment_offset = INVALID_INDEX;
caller_alias->source_address = source_address;
caller_alias->flags = callee_alias->flags;
caller_alias->dimension_count = callee_alias->dimension_count;
caller_alias->mode = callee_alias->mode;
if(IS_SCALAR(callee_alias)) {
caller_alias->array_size_address = cxt->caller_context->one_address;
} else {
if(callee_alias->dimension_count > 1) {
// copy the dimensions over
uint32_t i;
caller_alias->dimension_addresses = qb_allocate_address_pointers(cxt->caller_context->pool, caller_alias->dimension_count);
caller_alias->array_size_addresses = qb_allocate_address_pointers(cxt->caller_context->pool, caller_alias->dimension_count);
for(i = 0; i < caller_alias->dimension_count; i++) {
caller_alias->dimension_addresses[i] = qb_find_substitution_address(cxt, callee_alias->dimension_addresses[i]);
caller_alias->array_size_addresses[i] = qb_find_substitution_address(cxt, callee_alias->array_size_addresses[i]);
}
} else {
caller_alias->array_size_addresses = caller_alias->dimension_addresses = &caller_alias->array_size_address;
}
caller_alias->array_size_address = qb_find_substitution_address(cxt, callee_alias->array_size_address);
}
if(callee_alias->array_index_address == cxt->callee_context->zero_address) {
if(callee_alias->segment_offset == callee_alias->source_address->segment_offset) {
caller_alias->array_index_address = cxt->caller_context->zero_address;
} else {
// it's a constant index, which has been resolved
uint32_t offset = callee_alias->segment_offset - callee_alias->source_address->segment_offset;
uint32_t index = ELEMENT_COUNT(offset, callee_alias->type);
caller_alias->array_index_address = qb_obtain_constant_U32(cxt->caller_context, index);
}
} else {
caller_alias->array_index_address = qb_find_substitution_address(cxt, callee_alias->array_index_address);
}
qb_add_substitution(cxt, callee_alias, caller_alias);
}
int32_t qb_transfer_inlined_function_ops(qb_function_inliner_context *cxt) {
uint32_t i, j = 0;
uint32_t caller_op_offset;
int32_t multiple_returns = FALSE;
#ifdef ZEND_DEBUG
if(cxt->callee_context->op_count == 0) {
qb_debug_abort("%s() is trying to inline %s(), but it has not been compiled yet", cxt->caller_context->function_prototype.name, cxt->callee_context->function_prototype.name);
}
#endif
// create the constants used by the function
for(i = 0; i < cxt->callee_context->constant_scalar_count; i++) {
qb_address *callee_address = cxt->callee_context->constant_scalars[i];
qb_add_constant_substitution(cxt, callee_address);
}
for(i = 0; i < cxt->callee_context->constant_array_count; i++) {
qb_address *callee_address = cxt->callee_context->constant_arrays[i];
qb_add_constant_substitution(cxt, callee_address);
}
// add the writable array first
for(i = 0; i < cxt->callee_context->writable_array_count; i++) {
qb_address *callee_address = cxt->callee_context->writable_arrays[i];
qb_add_writable_substitution(cxt, callee_address);
}
for(i = 0; i < cxt->callee_context->writable_scalar_count; i++) {
// add the scalar if it hasn't already been added as the length of an array
qb_address *callee_address = cxt->callee_context->writable_scalars[i];
if(callee_address->type != QB_TYPE_U32 || !qb_find_substitution_address(cxt, callee_address)) {
qb_add_writable_substitution(cxt, callee_address);
}
}
// create copies of aliases as well
for(i = 0; i < cxt->callee_context->address_alias_count; i++) {
qb_address *callee_alias = cxt->callee_context->address_aliases[i];
qb_add_alias_substitution(cxt, callee_alias);
}
// add pre-op on-demand ops
for(i = 0; i < cxt->argument_count; i++) {
qb_operand *argument = &cxt->arguments[i];
qb_update_on_demand_result(cxt->caller_context, argument->address, QB_EXPR_EXECUTE_BEFORE);
}
if(cxt->result->type == QB_OPERAND_ADDRESS) {
qb_update_on_demand_result(cxt->caller_context, cxt->result->address, QB_EXPR_EXECUTE_BEFORE);
}
caller_op_offset = cxt->caller_context->op_count;
// copy the ops from the callee into the caller
for(i = 0; i < cxt->callee_context->op_count; i++) {
qb_op *callee_op = cxt->callee_context->ops[i];
qb_op *caller_op = qb_allocate_op(cxt->caller_context->pool);
if(callee_op->opcode == QB_RET) {
if(i == cxt->callee_context->op_count - 1) {
// the last op--insert a nop,
caller_op->opcode = QB_NOP;
if(multiple_returns || callee_op->flags & QB_OP_JUMP_TARGET) {
caller_op->flags |= QB_OP_JUMP_TARGET;
}
} else {
// jump to the end, assuming the callee's last op is a RET
caller_op->opcode = QB_JMP;
caller_op->jump_target_count = 1;
caller_op->jump_target_indices = qb_allocate_indices(cxt->caller_context->pool, caller_op->jump_target_count);
caller_op->jump_target_indices[0] = caller_op_offset + cxt->callee_context->op_count - 1;
caller_op->flags = QB_OP_JUMP | QB_OP_JUMP_TARGETS_RESOLVED;
// marking it as a jump target is the RET was one
if(callee_op->flags & QB_OP_JUMP_TARGET) {
caller_op->flags |= QB_OP_JUMP_TARGET;
}
// need to mark the final NOP as a jump target
multiple_returns = TRUE;
}
} else {
int32_t omit = FALSE;
caller_op->flags = callee_op->flags & ~QB_OP_REACHABLE;
caller_op->line_id = callee_op->line_id;
caller_op->opcode = callee_op->opcode;
if(callee_op->operand_count > 0) {
caller_op->operand_count = callee_op->operand_count;
caller_op->operands = qb_allocate_operands(cxt->caller_context->pool, caller_op->operand_count);
for(j = 0; j < caller_op->operand_count; j++) {
qb_operand *callee_operand = &callee_op->operands[j];
qb_operand *caller_operand = &caller_op->operands[j];
if(callee_operand->type == QB_OPERAND_ADDRESS || callee_operand->type == QB_OPERAND_SEGMENT_SELECTOR || callee_operand->type == QB_OPERAND_ELEMENT_SIZE) {
caller_operand->address = qb_find_substitution_address(cxt, callee_operand->address);
caller_operand->type = callee_operand->type;
if(!caller_operand->address) {
// address is NULL--probably because the return value isn't used
omit = TRUE;
}
} else {
*caller_operand = *callee_operand;
}
}
}
if(callee_op->jump_target_count > 0) {
caller_op->jump_target_count = callee_op->jump_target_count;
caller_op->jump_target_indices = qb_allocate_indices(cxt->caller_context->pool, caller_op->jump_target_count);
for(j = 0; j < caller_op->jump_target_count; j++) {
uint32_t jump_target_index = callee_op->jump_target_indices[j];
caller_op->jump_target_indices[j] = caller_op_offset + jump_target_index;
}
}
if(omit) {
caller_op->opcode = QB_NOP;
caller_op->operand_count = 0;
caller_op->operands = NULL;
}
}
qb_add_op(cxt->caller_context, caller_op);
}
// copy values into arguments where direct substitution wasn't possible
for(i = 0; i < cxt->callee_context->argument_count; i++) {
if(i < cxt->argument_count) {
qb_address *argument_address = cxt->arguments[i].address;
qb_variable *callee_var = cxt->callee_context->variables[i];
if(callee_var->flags & QB_VARIABLE_BY_REF) {
qb_address *caller_address = qb_find_substitution_address(cxt, callee_var->address);
if(caller_address != argument_address) {
qb_perform_assignment(cxt, argument_address, caller_address);
}
}
}
}
// release temporary variables
for(i = cxt->callee_context->constant_scalar_count + cxt->callee_context->constant_array_count; i < cxt->substitution_count; i++) {
qb_address_substitution *substitution = &cxt->substitutions[i];
if(substitution->current && IS_TEMPORARY(substitution->current)) {
qb_unlock_address(cxt->caller_context, substitution->current);
}
}
// add post-op on-demand ops
for(i = 0; i < cxt->argument_count; i++) {
qb_operand *argument = &cxt->arguments[i];
qb_update_on_demand_result(cxt->caller_context, argument->address, QB_EXPR_EXECUTE_AFTER);
}
if(cxt->result->type == QB_OPERAND_ADDRESS) {
qb_update_on_demand_result(cxt->caller_context, cxt->result->address, QB_EXPR_EXECUTE_AFTER);
}
return TRUE;
}
void qb_initialize_function_inliner_context(qb_function_inliner_context *cxt, qb_compiler_context *caller_cxt, qb_compiler_context *callee_cxt, qb_operand *arguments, uint32_t argument_count, qb_operand *result, qb_result_prototype *result_prototype TSRMLS_DC) {
uint32_t substitution_count;
cxt->caller_context = caller_cxt;
cxt->callee_context = callee_cxt;
cxt->arguments = arguments;
cxt->argument_count = argument_count;
cxt->result = result;
cxt->result_prototype = result_prototype;
substitution_count = callee_cxt->constant_scalar_count + callee_cxt->constant_array_count + callee_cxt->writable_scalar_count + callee_cxt->writable_array_count + callee_cxt->address_alias_count;
cxt->substitutions = emalloc(sizeof(qb_address_substitution) * substitution_count);
memset(cxt->substitutions, 0, sizeof(qb_address_substitution) * substitution_count);
cxt->substitution_count = 0;
SAVE_TSRMLS
}
void qb_free_function_inliner_context(qb_function_inliner_context *cxt) {
efree(cxt->substitutions);
}