-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontrol_structures_inline.h
More file actions
1526 lines (1338 loc) · 53.5 KB
/
control_structures_inline.h
File metadata and controls
1526 lines (1338 loc) · 53.5 KB
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
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
+----------------------------------------------------------------------+
| PHP HTML Embedded Scripting Language Version 3.0 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2000 PHP Development Team (See Credits file) |
+----------------------------------------------------------------------+
| This program is free software; you can redistribute it and/or modify |
| it under the terms of one of the following licenses: |
| |
| A) the GNU General Public License as published by the Free Software |
| Foundation; either version 2 of the License, or (at your option) |
| any later version. |
| |
| B) the PHP License as published by the PHP Development Team and |
| included in the distribution in the file: LICENSE |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of both licenses referred to here. |
| If you did not, or have any questions about PHP licensing, please |
| contact core@php.net. |
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
/* $Id: control_structures_inline.h,v 1.206 2000/07/04 16:36:07 rasmus Exp $ */
#include "php.h"
#include "internal_functions.h"
#include "functions/head.h"
#include <stdio.h>
#include <string.h>
extern pval *array_ptr;
static pval return_value;
HashTable list, plist;
extern inline int cs_global_variable(pval *varname INLINE_TLS);
extern inline int cs_static_variable(pval *varname, pval *value INLINE_TLS);
extern inline void cs_start_while(pval *while_token, pval *expr INLINE_TLS);
extern inline void cs_end_while(pval *while_token, int *yychar INLINE_TLS);
extern inline void cs_start_do_while(pval *do_token INLINE_TLS);
extern inline void cs_force_eval_do_while( INLINE_TLS_VOID);
extern inline void cs_end_do_while(pval *do_token, pval *expr, int *yychar INLINE_TLS);
extern inline void cs_start_if (pval *expr INLINE_TLS);
extern inline void cs_end_if ( INLINE_TLS_VOID);
extern inline int cs_break_continue(pval *expr, int op_type INLINE_TLS);
extern inline void cs_elseif_start_evaluate( INLINE_TLS_VOID);
extern inline void cs_elseif_end_evaluate( INLINE_TLS_VOID);
extern inline void cs_start_elseif (pval *expr INLINE_TLS);
extern inline void cs_start_else( INLINE_TLS_VOID);
extern inline void get_function_parameter(pval *varname, unsigned char type, pval *default_value INLINE_TLS);
extern inline void pass_parameter_by_value(pval *expr INLINE_TLS);
extern inline void start_function_decleration( INLINE_TLS_VOID);
extern inline void end_function_decleration(pval *function_token, pval *function_name INLINE_TLS);
extern inline void for_pre_expr1(pval *for_token INLINE_TLS);
extern inline void for_pre_expr2(pval *for_token INLINE_TLS);
extern inline void for_pre_expr3(pval *for_token, pval *expr2 INLINE_TLS);
extern inline void for_pre_statement(pval *for_token, pval *expr2, pval *expr3 INLINE_TLS);
extern inline void for_post_statement(pval *for_token, pval *first_semicolon, pval *second_semicolon, pval *close_parentheses, int *yychar INLINE_TLS);
extern inline void cs_return(pval *expr INLINE_TLS);
extern inline void php3cs_start_require(pval *include_token INLINE_TLS);
extern inline void php3cs_end_require(pval *include_token, pval *expr INLINE_TLS);
extern inline void cs_show_source(pval *expr INLINE_TLS);
extern inline void cs_pre_boolean_or(pval *left_expr INLINE_TLS);
extern inline void cs_post_boolean_or(pval *result, pval *left_expr, pval *right_expr INLINE_TLS);
extern inline void cs_pre_boolean_and(pval *left_expr INLINE_TLS);
extern inline void cs_post_boolean_and(pval *result, pval *left_expr, pval *right_expr INLINE_TLS);
extern inline void cs_questionmark_op_pre_expr1(pval *truth_value INLINE_TLS);
extern inline void cs_questionmark_op_pre_expr2(pval *truth_value INLINE_TLS);
extern inline void cs_questionmark_op_post_expr2(pval *result, pval *truth_value, pval *expr1, pval *expr2 INLINE_TLS);
extern inline void cs_functioncall_pre_variable_passing(pval *function_name, pval *class_ptr, unsigned char free_function_name INLINE_TLS);
extern inline void cs_functioncall_post_variable_passing(pval *function_name, int *yychar INLINE_TLS);
extern inline void cs_functioncall_end(pval *result, pval *function_name, pval *close_parentheses, int *yychar, unsigned char free_function_name INLINE_TLS);
extern inline void cs_switch_start(pval *switch_token, pval *expr INLINE_TLS);
extern inline void cs_switch_case_pre(pval *case_expr INLINE_TLS);
extern inline void cs_switch_case_post( INLINE_TLS_VOID);
extern inline void cs_switch_end(pval *expr INLINE_TLS);
extern inline void cs_start_class_decleration(pval *classname, pval *parent INLINE_TLS);
extern inline void cs_end_class_decleration( INLINE_TLS_VOID);
extern inline void start_array_parsing(pval *array_name,pval *class_ptr INLINE_TLS);
extern inline void start_dimensions_parsing(pval *result INLINE_TLS);
extern inline void fetch_array_index(pval *result, pval *expr, pval *dimension INLINE_TLS);
extern inline void end_array_parsing(pval *result, pval *dimensions INLINE_TLS);
extern inline void clean_unassigned_variable_top(int delete_var INLINE_TLS);
extern inline void get_class_variable_pointer(pval *result, pval *class_ptr, pval *varname INLINE_TLS);
extern inline void pass_parameter(pval *var, int by_reference INLINE_TLS);
extern inline void cs_system(pval *result, pval *expr INLINE_TLS);
extern inline void add_regular_encapsed_variable(pval *result,pval *encaps,pval *varname INLINE_TLS);
extern inline void add_assoc_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *index INLINE_TLS);
extern inline void add_regular_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *index INLINE_TLS);
extern inline void add_variable_array_encapsed_variable(pval *result, pval *encaps, pval *varname, pval *var_index INLINE_TLS);
extern inline void add_encapsed_object_property(pval *result, pval *encaps, pval *object, pval *property INLINE_TLS);
extern inline void add_indirect_encapsed_variable(pval *result,pval *encaps,pval *varname INLINE_TLS);
inline int cs_global_variable(pval *varname INLINE_TLS)
{
pval *localdata;
if (GLOBAL(Execute)) {
if (!GLOBAL(function_state).function_name) {
php3_error(E_WARNING, "GLOBAL variable declaration meaningless in main() scope");
return FAILURE;
}
if ((varname->type != IS_STRING)) {
pval_destructor(varname _INLINE_TLS);
php3_error(E_WARNING, "Incorrect variable type or name in global in function %s()", GLOBAL(function_state).function_name);
return FAILURE;
}
if (_php3_hash_find(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, (void **) &localdata) == SUCCESS) {
php3_error(E_WARNING, "Variable used in global statement already exists in the function");
STR_FREE(varname->value.str.val);
return FAILURE;
}
if (_php3_hash_find(&GLOBAL(symbol_table), varname->value.str.val, varname->value.str.len+1, (void **) &localdata) == FAILURE) {
pval tmp;
tmp.type = IS_STRING;
tmp.value.str.val = undefined_variable_string;
tmp.value.str.len = 0;
if (_php3_hash_update(&GLOBAL(symbol_table), varname->value.str.val, varname->value.str.len+1, (void *) &tmp, sizeof(pval), (void **) &localdata)==FAILURE) {
php3_error(E_WARNING, "Unable to initialize global variable $%s",varname->value.str.val);
STR_FREE(varname->value.str.val);
return FAILURE;
}
}
if (_php3_hash_pointer_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, (void *) localdata) == FAILURE) {
php3_error(E_WARNING, "Error updating symbol table");
STR_FREE(varname->value.str.val);
return FAILURE;
}
STR_FREE(varname->value.str.val);
}
return SUCCESS;
}
inline int cs_static_variable(pval *varname, pval *value INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval *func_ent, *variable_entry, tmp;
if (!GLOBAL(function_state).function_name) {
php3_error(E_WARNING, "STATIC variable declaration meaningless in main() scope");
STR_FREE(varname->value.str.val);
if (value) {
pval_destructor(value _INLINE_TLS);
}
return FAILURE;
}
if ((varname->type != IS_STRING)) {
pval_destructor(varname _INLINE_TLS);
pval_destructor(value _INLINE_TLS);
php3_error(E_WARNING, "Incorrect variable type or name in static in function %s()", GLOBAL(function_state).function_name);
return FAILURE;
}
if (_php3_hash_find(GLOBAL(function_state).hosting_function_table, GLOBAL(function_state).function_name, strlen(GLOBAL(function_state).function_name)+1, (void **) &func_ent) == FAILURE) {
STR_FREE(varname->value.str.val);
if (value) {
pval_destructor(value _INLINE_TLS);
}
return FAILURE;
}
if (!func_ent->value.func.addr.statics) {
func_ent->value.func.addr.statics = (HashTable *) emalloc(sizeof(HashTable));
_php3_hash_init(func_ent->value.func.addr.statics, 0, NULL, PVAL_DESTRUCTOR, 0);
}
if (_php3_hash_find(func_ent->value.func.addr.statics, varname->value.str.val, varname->value.str.len+1, (void **) &variable_entry) == FAILURE) {
if (value) {
_php3_hash_update(func_ent->value.func.addr.statics, varname->value.str.val, varname->value.str.len+1, value, sizeof(pval), (void **) &variable_entry);
} else {
var_uninit(&tmp);
_php3_hash_update(func_ent->value.func.addr.statics, varname->value.str.val, varname->value.str.len+1, &tmp, sizeof(pval), (void **) &variable_entry);
}
/*
if (_php3_hash_find(func_ent->value.func.addr.statics, varname->value.str.val, varname->value.str.len+1, (void **) &variable_entry) == FAILURE) {
php3_error(E_ERROR, "Inserted static variable got lost");
STR_FREE(varname->value.str.val);
if (value) {
pval_destructor(value);
}
return FAILURE;
}
*/
}
if (_php3_hash_pointer_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, (void *) variable_entry) == FAILURE) {
php3_error(E_ERROR, "Unable to initialize static variable");
STR_FREE(varname->value.str.val);
if (value) {
pval_destructor(value _INLINE_TLS);
}
return FAILURE;
} else {
_php3_hash_find(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, (void **) &variable_entry);
}
STR_FREE(varname->value.str.val);
}
return SUCCESS;
}
inline void cs_start_while(pval *while_token, pval *expr INLINE_TLS)
{
GLOBAL(function_state).loop_nest_level++;
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), while_token->offset, WHILE);
if (pval_is_true(expr)) {
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
pval_destructor(expr _INLINE_TLS);
}
}
inline void cs_end_while(pval *while_token,int *yychar INLINE_TLS)
{
#if (_DEBUG_ & CONTROL_DEBUG)
fprintf(stderr, "end of while, execute=%d, changecount=%d, changetype=%d\n", Execute, GLOBAL(function_state).loop_change_level, GLOBAL(function_state).loop_change_level);
#endif
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), while_token->offset, CONTINUED_WHILE);
seek_token(&GLOBAL(token_cache_manager), while_token->offset, yychar);
} else {
if ((GLOBAL(function_state).loop_change_type != DO_NOTHING) && (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level)) {
if (GLOBAL(function_state).loop_change_type == DO_CONTINUE) {
tc_set_token(&GLOBAL(token_cache_manager), while_token->offset, CONTINUED_WHILE);
seek_token(&GLOBAL(token_cache_manager), while_token->offset, yychar);
}
GLOBAL(function_state).loop_change_type = DO_NOTHING;
GLOBAL(function_state).loop_change_level = 0;
}
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
GLOBAL(function_state).loop_nest_level--;
}
inline void cs_start_do_while(pval *do_token INLINE_TLS)
{
GLOBAL(function_state).loop_nest_level++;
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), do_token->offset, DO);
}
}
/* force evaluation of the expression if we're in a CONTINUE */
inline void cs_force_eval_do_while( INLINE_TLS_VOID)
{
if (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level
&& GLOBAL(function_state).loop_change_type == DO_CONTINUE) {
GLOBAL(function_state).loop_change_type = DO_NOTHING;
GLOBAL(function_state).loop_change_level = 0;
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_end_do_while(pval *do_token, pval *expr, int *yychar INLINE_TLS)
{
#if (_DEBUG_ & CONTROL_DEBUG)
fprintf(stderr, "end of while, execute=%d, changecount=%d, changetype=%d\n", Execute, GLOBAL(function_state).loop_change_level, GLOBAL(function_state).loop_change_level);
#endif
if (GLOBAL(Execute) && pval_is_true(expr)) {
pval_destructor(expr _INLINE_TLS);
tc_set_token(&GLOBAL(token_cache_manager), do_token->offset, CONTINUED_DOWHILE);
seek_token(&GLOBAL(token_cache_manager), do_token->offset, yychar);
} else {
if (GLOBAL(Execute)) {
pval_destructor(expr _INLINE_TLS);
}
if ((GLOBAL(function_state).loop_change_type != DO_NOTHING) && (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level)) {
GLOBAL(function_state).loop_change_type = DO_NOTHING;
GLOBAL(function_state).loop_change_level = 0;
}
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
GLOBAL(function_state).loop_nest_level--;
}
inline void cs_start_if (pval *expr INLINE_TLS)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int)); /* push current state to stack */
if (GLOBAL(Execute)) { /* we're in a code block that needs to be evaluated */
if (pval_is_true(expr)) { /* the IF expression is pval_is_true, execute IF code */
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else { /* the IF expression is false, don't execute IF code */
GLOBAL(ExecuteFlag) = BEFORE_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
pval_destructor(expr _INLINE_TLS);
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
}
}
inline void cs_end_if ( INLINE_TLS_VOID)
{
/* restore previous status */
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
}
inline int cs_break_continue(pval *expr, int op_type INLINE_TLS)
{
if (GLOBAL(Execute)) {
if (expr) {
convert_to_long(expr);
GLOBAL(function_state).loop_change_level = GLOBAL(function_state).loop_nest_level - expr->value.lval + 1;
} else {
GLOBAL(function_state).loop_change_level = GLOBAL(function_state).loop_nest_level;
}
if (GLOBAL(function_state).loop_change_level <= 0) {
php3_error(E_ERROR, "Cannot %s from %d loop(s) from nesting level %d",
(op_type == DO_BREAK ? "break" : "continue"), (expr ? expr->value.lval : 1), GLOBAL(function_state).loop_nest_level);
if (expr) {
pval_destructor(expr _INLINE_TLS);
}
return FAILURE;
} else if (GLOBAL(function_state).loop_change_level > GLOBAL(function_state).loop_nest_level) {
php3_error(E_ERROR, "Cannot continue from %d loops", (expr ? expr->value.lval : -1));
if (expr) {
pval_destructor(expr _INLINE_TLS);
}
return FAILURE;
}
GLOBAL(function_state).loop_change_type = op_type;
GLOBAL(Execute) = 0;
if (expr) {
pval_destructor(expr _INLINE_TLS);
}
}
return SUCCESS;
}
inline void cs_elseif_start_evaluate( INLINE_TLS_VOID)
{
int local_stack_top;
if (GLOBAL(ExecuteFlag) == EXECUTE) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
local_stack_top = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(ExecuteFlag) == BEFORE_EXECUTE && local_stack_top == EXECUTE) {
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_elseif_end_evaluate( INLINE_TLS_VOID)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
}
inline void cs_start_elseif (pval *expr INLINE_TLS)
{
if (GLOBAL(ExecuteFlag) == EXECUTE) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
if (GLOBAL(ExecuteFlag) == BEFORE_EXECUTE) {
if (pval_is_true(expr)) {
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
pval_destructor(expr _INLINE_TLS);
}
}
inline void cs_start_else( INLINE_TLS_VOID)
{
if (GLOBAL(ExecuteFlag) == EXECUTE) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
if (GLOBAL(ExecuteFlag) == BEFORE_EXECUTE) {
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void get_function_parameter(pval *varname, unsigned char type, pval *default_value INLINE_TLS)
{
if (GLOBAL(Execute)) {
pval tmp,*data;
if (_php3_hash_index_find(GLOBAL(active_symbol_table), GLOBAL(param_index), (void **) &data) == FAILURE) {
if (default_value) {
tmp = *default_value;
} else {
php3_error(E_WARNING, "Missing argument %d in call to %s()",GLOBAL(param_index)+1,GLOBAL(function_state).function_name);
var_uninit(&tmp);
}
_php3_hash_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, &tmp, sizeof(pval), NULL);
} else if (!_php3_hash_index_is_pointer(GLOBAL(active_symbol_table), GLOBAL(param_index))) { /* passed by value */
tmp = *data;
pval_copy_constructor(&tmp);
_php3_hash_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, &tmp, sizeof(pval), NULL);
if (default_value) {
pval_destructor(default_value _INLINE_TLS);
}
} else { /* passed by reference */
_php3_hash_pointer_update(GLOBAL(active_symbol_table), varname->value.str.val, varname->value.str.len+1, data);
_php3_hash_index_del(GLOBAL(active_symbol_table), GLOBAL(param_index));
if (default_value) {
pval_destructor(default_value _INLINE_TLS);
}
}
} else if (!GLOBAL(php3_display_source)) {
switch(type) {
case BYREF_NONE: /* passed by value */
break;
case BYREF_FORCE: /* passed by reference */
case BYREF_ALLOW: /* passed by value reference (well, not exactly:) */
if (!GLOBAL(function_state).func_arg_types) {
GLOBAL(function_state).func_arg_types = ecalloc(sizeof(unsigned char),(GLOBAL(param_index)+2));
} else {
unsigned int i;
GLOBAL(function_state).func_arg_types = erealloc(GLOBAL(function_state).func_arg_types,sizeof(unsigned char)*(GLOBAL(param_index)+2));
for (i=GLOBAL(function_state).func_arg_types[0]+1; i<GLOBAL(param_index)+2-1; i++) {
GLOBAL(function_state).func_arg_types[i]=0;
}
}
GLOBAL(function_state).func_arg_types[0] = GLOBAL(param_index)+1;
GLOBAL(function_state).func_arg_types[GLOBAL(param_index)+1]=type;
break;
}
}
GLOBAL(param_index)++;
}
inline void pass_parameter_by_value(pval *expr INLINE_TLS)
{
if (GLOBAL(Execute)) {
if (GLOBAL(function_state).func_arg_types) {
unsigned char argument_offset=(unsigned char) _php3_hash_next_free_element(GLOBAL(function_state).function_symbol_table)+1;
if (argument_offset<=GLOBAL(function_state).func_arg_types[0]
&& GLOBAL(function_state).func_arg_types[argument_offset]==BYREF_FORCE) {
php3_error(E_WARNING,"Cannot pass expression as argument %d by reference",argument_offset);
GLOBAL(function_state).function_type = 0; /* don't execute the function call */
}
}
if (_php3_hash_next_index_insert(GLOBAL(function_state).function_symbol_table, expr, sizeof(pval),NULL) == FAILURE) {
php3_error(E_WARNING, "Error updating symbol table");
pval_destructor(expr _INLINE_TLS);
GLOBAL(function_state).function_type = 0; /* don't execute the function call */
}
}
}
inline void start_function_decleration(INLINE_TLS_VOID)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
GLOBAL(function_state).func_arg_types = NULL;
}
inline void end_function_decleration(pval *function_token, pval *function_name INLINE_TLS)
{
HashTable *target_symbol_table;
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
php3i_stack_del_top(&GLOBAL(css));
if (GLOBAL(Execute)) {
php3_str_tolower(function_name->value.str.val, function_name->value.str.len);
if (GLOBAL(class_name)) {
target_symbol_table = GLOBAL(class_symbol_table);
_php3_hash_del(GLOBAL(class_symbol_table), function_name->value.str.val, function_name->value.str.len+1); /* for inheritance */
} else {
target_symbol_table = &GLOBAL(function_table);
}
if (_php3_hash_exists(target_symbol_table, function_name->value.str.val, function_name->value.str.len+1)) {
php3_error(E_ERROR, "Can't redeclare already declared function");
return;
}
function_token->type = IS_USER_FUNCTION;
function_token->value.func.addr.statics = NULL;
function_token->value.func.arg_types = GLOBAL(function_state).func_arg_types;
_php3_hash_update(target_symbol_table, function_name->value.str.val, function_name->value.str.len+1, function_token, sizeof(pval), NULL);
} else {
if (GLOBAL(function_state).func_arg_types) {
efree(GLOBAL(function_state).func_arg_types);
}
}
GLOBAL(function_state).func_arg_types = NULL;
}
/* don't execute expr1 except for the first iteration */
inline void for_pre_expr1(pval *for_token INLINE_TLS)
{
GLOBAL(function_state).loop_nest_level++;
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), for_token->offset, FOR);
if (php3i_stack_int_top(&GLOBAL(for_stack)) == (long) for_token->offset) { /* 2nd or later iteration */
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
}
/* expr2 is the increment if we're switched. don't execute it in the first
* iteration, and execute it otherwise.
* if we're not switched, it's the truth value, and we want to evaluate it anyway.
*/
inline void for_pre_expr2(pval *for_token INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (for_token->cs_data.switched && php3i_stack_int_top(&GLOBAL(for_stack)) != (long) for_token->offset) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE; /* first iteration of already switched for */
}
}
/* if we're not switched, expr3 is the increment. we shouldn't execute it
* in the first iteration. since not being switched --> first iteration,
* we don't have to check the for_stack.
*/
inline void for_pre_expr3(pval *for_token, pval *expr2 INLINE_TLS)
{
if (for_token->cs_data.switched && php3i_stack_int_top(&GLOBAL(for_stack)) != (long) for_token->offset) {
var_reset(expr2);
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute) && !for_token->cs_data.switched) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void for_pre_statement(pval *for_token, pval *expr2, pval *expr3 INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute) && !for_token->cs_data.switched) {
var_reset(expr3);
}
if (GLOBAL(Execute) && for_token->cs_data.switched) {
if (pval_is_true(expr3)) {
GLOBAL(ExecuteFlag) = EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
}
GLOBAL(Execute) = SHOULD_EXECUTE;
pval_destructor(expr2 _INLINE_TLS);
pval_destructor(expr3 _INLINE_TLS);
} else if (GLOBAL(Execute) && !for_token->cs_data.switched) {
if (pval_is_true(expr2)) {
GLOBAL(ExecuteFlag) = EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
}
GLOBAL(Execute) = SHOULD_EXECUTE;
pval_destructor(expr2 _INLINE_TLS);
pval_destructor(expr3 _INLINE_TLS);
}
}
inline void for_post_statement(pval *for_token, pval *first_semicolon, pval *second_semicolon, pval *close_parentheses, int *yychar INLINE_TLS)
{
if (php3i_stack_int_top(&GLOBAL(for_stack)) != (long) for_token->offset) { /* first iteration */
php3i_stack_push(&GLOBAL(for_stack), &for_token->offset, sizeof(int));
}
if (!for_token->cs_data.switched) {
tc_switch(&GLOBAL(token_cache_manager), first_semicolon->offset + 1, close_parentheses->offset - 1, second_semicolon->offset);
tc_set_switched(&GLOBAL(token_cache_manager), for_token->offset);
}
if (GLOBAL(Execute)) {
tc_set_token(&GLOBAL(token_cache_manager), for_token->offset, CONTINUED_FOR);
seek_token(&GLOBAL(token_cache_manager), for_token->offset, yychar);
} else {
if ((GLOBAL(function_state).loop_change_type != DO_NOTHING) && (GLOBAL(function_state).loop_change_level == GLOBAL(function_state).loop_nest_level)) {
if (GLOBAL(function_state).loop_change_type == DO_CONTINUE) {
tc_set_token(&GLOBAL(token_cache_manager), for_token->offset, CONTINUED_FOR);
seek_token(&GLOBAL(token_cache_manager), for_token->offset, yychar);
} else {
if (php3i_stack_int_top(&GLOBAL(for_stack)) == (long) for_token->offset) {
#if (_DEBUG_ & CONTROL_DEBUG)
fprintf(stderr, "Deleting for addr=%d from for stack", for_token->offset);
#endif
php3i_stack_del_top(&GLOBAL(for_stack));
}
}
GLOBAL(function_state).loop_change_type = DO_NOTHING;
GLOBAL(function_state).loop_change_level = 0;
} else {
if (php3i_stack_int_top(&GLOBAL(for_stack)) == (long) for_token->offset) {
#if (_DEBUG_ & CONTROL_DEBUG)
fprintf(stderr, "Deleting for addr=%d from for stack", for_token->offset);
#endif
php3i_stack_del_top(&GLOBAL(for_stack));
}
}
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
GLOBAL(function_state).loop_nest_level--;
}
inline void cs_return(pval *expr INLINE_TLS)
{
if (GLOBAL(Execute)) {
if (GLOBAL(function_state).function_name) {
if (expr) {
GLOBAL(return_value) = *expr;
} else {
var_reset(&GLOBAL(return_value));
}
GLOBAL(function_state).returned = 1;
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
int retval;
if (end_current_file_execution(&retval) && retval==0) {
/* the scanner return 0, terminate execution completely (behave like exit()) */
php3_header();
GLOBAL(shutdown_requested) = ABNORMAL_SHUTDOWN;
}
if (expr) {
php3i_print_variable(expr);
pval_destructor(expr);
}
}
}
}
inline void php3cs_start_require(pval *include_token INLINE_TLS)
{
/* evaluate the expression even at Execute=0, if it's the first time we see this include(), otherwise,
* don't evaluate it.
*/
if (GLOBAL(php3_display_source)) {
return;
}
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
GLOBAL(php3g_function_state_for_require) = GLOBAL(function_state);
if (!include_token->cs_data.included) {
GLOBAL(function_state).loop_nest_level = GLOBAL(function_state).loop_change_level = GLOBAL(function_state).loop_change_type = 0;
GLOBAL(function_state).returned = 0;
GLOBAL(ExecuteFlag) = EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void php3cs_end_require(pval *include_token, pval *expr INLINE_TLS)
{
if (GLOBAL(php3_display_source)) {
return;
}
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(function_state) = GLOBAL(php3g_function_state_for_require);
GLOBAL(Execute) = SHOULD_EXECUTE;
if (!include_token->cs_data.included) {
if (!GLOBAL(php3_display_source)) {
include_file(expr,0);
}
tc_set_included(&GLOBAL(token_cache_manager), include_token->offset);
pval_destructor(expr _INLINE_TLS);
}
}
inline void start_display_source(int start_in_php INLINE_TLS)
{
php3_header();
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = 0;
GLOBAL(php3_display_source)=1;
php3_printf("<FONT color=%s>", (start_in_php?php3_ini.highlight_default:php3_ini.highlight_html));
}
inline void cs_show_source(pval *expr INLINE_TLS)
{
if (include_file(expr,1)==SUCCESS) {
start_display_source(0 _INLINE_TLS);
}
pval_destructor(expr _INLINE_TLS);
}
inline void cs_pre_boolean_or(pval *left_expr INLINE_TLS)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute) && pval_is_true(left_expr)) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;;
}
}
inline void cs_post_boolean_or(pval *result, pval *left_expr, pval *right_expr INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute)) {
boolean_or_function(result, left_expr, right_expr);
}
}
inline void cs_pre_boolean_and(pval *left_expr INLINE_TLS)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute) && !pval_is_true(left_expr)) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_post_boolean_and(pval *result, pval *left_expr, pval *right_expr INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute)) {
boolean_and_function(result, left_expr, right_expr);
}
}
inline void cs_questionmark_op_pre_expr1(pval *truth_value INLINE_TLS)
{
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
if (GLOBAL(Execute) && !pval_is_true(truth_value)) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_questionmark_op_pre_expr2(pval *truth_value INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute) && pval_is_true(truth_value)) {
GLOBAL(ExecuteFlag) = DONT_EXECUTE;
GLOBAL(Execute) = SHOULD_EXECUTE;
}
}
inline void cs_questionmark_op_post_expr2(pval *result, pval *truth_value, pval *expr1, pval *expr2 INLINE_TLS)
{
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
if (GLOBAL(Execute)) {
if (pval_is_true(truth_value)) {
*result = *expr1;
} else {
*result = *expr2;
}
pval_destructor(truth_value _INLINE_TLS);
}
}
inline void cs_functioncall_pre_variable_passing(pval *function_name, pval *class_ptr, unsigned char free_function_name INLINE_TLS)
{
int minus_one = -1;
HashTable *target_symbol_table; /* the symbol table in which the function would be searched */
pval *object=NULL;
target_symbol_table = &GLOBAL(function_table);
if (GLOBAL(Execute)) {
pval *data;
if (class_ptr) { /* use member function rather than global function */
object = (pval *) class_ptr->value.varptr.pvalue;
if (!object) {
if (free_function_name) {
pval_destructor(function_name _INLINE_TLS);
}
php3_error(E_ERROR, "Member function used on a non-object");
return;
}
target_symbol_table = object->value.ht;
}
if (function_name->type != IS_STRING) {
php3_error(E_ERROR, "Function names must be strings");
if (free_function_name) {
pval_destructor(function_name _INLINE_TLS);
}
return;
}
php3_str_tolower(function_name->value.str.val, function_name->value.str.len);
if (_php3_hash_find(target_symbol_table, function_name->value.str.val, function_name->value.str.len+1, (void **) &data) == SUCCESS) {
if (!(data->type & VALID_FUNCTION)) {
php3_error(E_ERROR, "Function call to a non-function (%s)", function_name->value.str.val);
function_name->cs_data.function_call_type=0;
GLOBAL(function_state).symbol_table = NULL;
return;
}
/* we're gonna call the function... */
php3i_stack_push(&GLOBAL(for_stack), &minus_one, sizeof(int));
php3i_stack_push(&GLOBAL(function_state_stack), &GLOBAL(function_state), sizeof(FunctionState)); /* save function state */
function_name->cs_data.function_call_type = data->type;
function_name->offset = data->offset;
GLOBAL(function_state).function_symbol_table = (HashTable *) emalloc(sizeof(HashTable));
GLOBAL(function_state).function_name = function_name->value.str.val;
GLOBAL(function_state).function_type = data->type;
GLOBAL(function_state).handler = (void (*)(INTERNAL_FUNCTION_PARAMETERS)) data->value.func.addr.internal;
GLOBAL(function_state).func_arg_types = data->value.func.arg_types;
GLOBAL(function_state).lineno = GLOBAL(current_lineno);
GLOBAL(function_state).hosting_function_table = target_symbol_table;
if (!GLOBAL(function_state).function_symbol_table) {
php3_error(E_ERROR, "Unable to allocate necessary memory for function call");
function_name->cs_data.function_call_type=0;
GLOBAL(function_state).symbol_table = NULL;
return;
}
if (_php3_hash_init(GLOBAL(function_state).function_symbol_table, 0, NULL, PVAL_DESTRUCTOR, 0) == FAILURE) {
php3_error(E_ERROR, "Unable to initialize new symbol table in function call");
function_name->cs_data.function_call_type=0;
GLOBAL(function_state).symbol_table = NULL;
return;
}
/* push GLOBAL */
GLOBAL(globals).type = IS_ARRAY;
GLOBAL(globals).value.ht = &GLOBAL(symbol_table);
if (data->type==IS_USER_FUNCTION) {
_php3_hash_pointer_update(GLOBAL(function_state).function_symbol_table, "GLOBALS", sizeof("GLOBALS"), (void *) &GLOBAL(globals));
}
if (object) { /* push $this */
GLOBAL(function_state).object_pointer = (pval *) emalloc(sizeof(pval));
*(GLOBAL(function_state).object_pointer) = *object;
_php3_hash_pointer_update(GLOBAL(function_state).function_symbol_table, "this", sizeof("this"), (void *) GLOBAL(function_state).object_pointer);
} else {
GLOBAL(function_state).object_pointer = NULL;
}
} else {
php3_error(E_ERROR, "Call to unsupported or undefined function %s()", function_name->value.str.val);
function_name->cs_data.function_call_type=0;
GLOBAL(function_state).symbol_table = NULL;
return;
}
} else {
function_name->cs_data.function_call_type = 0;
}
}
inline void cs_functioncall_post_variable_passing(pval *function_name, int *yychar INLINE_TLS)
{
if (function_name->cs_data.function_call_type) {
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
/* prepare a new function state */
GLOBAL(function_state).symbol_table = GLOBAL(function_state).function_symbol_table;
GLOBAL(function_state).function_symbol_table = NULL;
GLOBAL(function_state).loop_nest_level = GLOBAL(function_state).loop_change_level = GLOBAL(function_state).loop_change_type = 0;
var_reset(&GLOBAL(return_value));
switch (GLOBAL(function_state).function_type) {
case IS_USER_FUNCTION:
GLOBAL(active_symbol_table) = GLOBAL(function_state).symbol_table;
seek_token(&GLOBAL(token_cache_manager), function_name->offset, yychar);
break;
case IS_INTERNAL_FUNCTION:
GLOBAL(function_state).handler(GLOBAL(function_state).symbol_table,&GLOBAL(return_value),&GLOBAL(list),&GLOBAL(plist));
break;
default: /* don't execute the function call */
break;
}
}
}
inline void cs_functioncall_end(pval *result, pval *function_name, pval *close_parentheses, int *yychar, unsigned char free_function_name INLINE_TLS)
{
if (function_name->cs_data.function_call_type) {
FunctionState *fs_ptr;
/* handle return value for user functions (internal functions do that themselves) */
*result = GLOBAL(return_value);
if (GLOBAL(function_state).function_type==IS_USER_FUNCTION && !GLOBAL(function_state).returned) {
var_reset(result); /* default return value */
}
/* clean up */
if (GLOBAL(function_state).symbol_table) {
_php3_hash_destroy(GLOBAL(function_state).symbol_table);
efree(GLOBAL(function_state).symbol_table);
}
if (GLOBAL(function_state).object_pointer) {
efree(GLOBAL(function_state).object_pointer);
}
if (free_function_name) {
pval_destructor(function_name _INLINE_TLS);
}
while (php3i_stack_int_top(&GLOBAL(for_stack)) != -1) { /* pop FOR stack */
php3i_stack_del_top(&GLOBAL(for_stack));
}
php3i_stack_del_top(&GLOBAL(for_stack));
/* jump back */
if (GLOBAL(function_state).function_type == IS_USER_FUNCTION) {
seek_token(&GLOBAL(token_cache_manager), close_parentheses->offset + 1, yychar);
}
/* get previous function state */
php3i_stack_top(&GLOBAL(function_state_stack), (void **) &fs_ptr);
GLOBAL(function_state) = *fs_ptr;
php3i_stack_del_top(&GLOBAL(function_state_stack));
GLOBAL(active_symbol_table) = GLOBAL(function_state).symbol_table;
/* restore execution state */
GLOBAL(ExecuteFlag) = php3i_stack_int_top(&GLOBAL(css));
php3i_stack_del_top(&GLOBAL(css));
GLOBAL(Execute) = SHOULD_EXECUTE;
} else {
var_reset(result);
}
}
inline void cs_switch_start(pval *switch_token, pval *expr INLINE_TLS)
{
switch_expr se;
GLOBAL(function_state).loop_nest_level++;
php3i_stack_push(&GLOBAL(css), &GLOBAL(ExecuteFlag), sizeof(int));
se.expr = *expr;
se.offset = switch_token->offset;
se.Execute = GLOBAL(Execute);
php3i_stack_push(&GLOBAL(switch_stack), &se, sizeof(switch_expr));
}