-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathgoto_program2code.cpp
1989 lines (1681 loc) · 54.8 KB
/
goto_program2code.cpp
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
/*******************************************************************\
Module: Dump Goto-Program as C/C++ Source
Author: Daniel Kroening, [email protected]
\*******************************************************************/
/// \file
/// Dump Goto-Program as C/C++ Source
#include "goto_program2code.h"
#include <util/arith_tools.h>
#include <util/bitvector_expr.h>
#include <util/c_types.h>
#include <util/expr_util.h>
#include <util/ieee_float.h>
#include <util/pointer_expr.h>
#include <util/prefix.h>
#include <util/simplify_expr.h>
#include <util/std_code.h>
#include <sstream>
void goto_program2codet::operator()()
{
// labels stored for cleanup
labels_in_use.clear();
// just an estimate
toplevel_block.reserve_operands(goto_program.instructions.size());
// find loops first
build_loop_map();
// gather variable scope information
build_dead_map();
// see whether var args are in use, identify va_list symbol
scan_for_varargs();
// convert
forall_goto_program_instructions(target, goto_program)
target=convert_instruction(
target,
goto_program.instructions.end(),
toplevel_block);
cleanup_code(toplevel_block, ID_nil);
}
void goto_program2codet::build_loop_map()
{
loop_map.clear();
loops.loop_map.clear();
loops(goto_program);
for(natural_loopst::loop_mapt::const_iterator
l_it=loops.loop_map.begin();
l_it!=loops.loop_map.end();
++l_it)
{
PRECONDITION(!l_it->second.empty());
// l_it->first need not be the program-order first instruction in the
// natural loop, because a natural loop may have multiple entries. But we
// ignore all those before l_it->first
// Furthermore the loop may contain code after the source of the actual back
// edge -- we also ignore such code
goto_programt::const_targett loop_start=l_it->first;
goto_programt::const_targett loop_end=loop_start;
for(natural_loopst::natural_loopt::const_iterator
it=l_it->second.begin();
it!=l_it->second.end();
++it)
if((*it)->is_goto())
{
if((*it)->get_target()==loop_start &&
(*it)->location_number>loop_end->location_number)
loop_end=*it;
}
if(!loop_map.insert(std::make_pair(loop_start, loop_end)).second)
UNREACHABLE;
}
}
void goto_program2codet::build_dead_map()
{
dead_map.clear();
// record last dead X
for(const auto &instruction : goto_program.instructions)
{
if(instruction.is_dead())
{
dead_map[instruction.dead_symbol().get_identifier()] =
instruction.location_number;
}
}
}
void goto_program2codet::scan_for_varargs()
{
va_list_expr.clear();
for(const auto &instruction : goto_program.instructions)
{
if(instruction.is_assign())
{
const exprt &l = instruction.assign_lhs();
const exprt &r = instruction.assign_rhs();
// find va_start
if(
r.id() == ID_side_effect &&
to_side_effect_expr(r).get_statement() == ID_va_start)
{
va_list_expr.insert(to_unary_expr(r).op());
}
// try our modelling of va_start
else if(l.type().id()==ID_pointer &&
l.type().get(ID_C_typedef)=="va_list" &&
l.id()==ID_symbol &&
r.id()==ID_typecast &&
to_typecast_expr(r).op().id()==ID_address_of)
va_list_expr.insert(l);
}
}
if(!va_list_expr.empty())
system_headers.insert("stdarg.h");
}
goto_programt::const_targett goto_program2codet::convert_instruction(
goto_programt::const_targett target,
goto_programt::const_targett upper_bound,
code_blockt &dest)
{
PRECONDITION(target != goto_program.instructions.end());
if(
target->type() != ASSERT &&
!target->source_location().get_comment().empty())
{
dest.add(code_skipt());
dest.statements().back().add_source_location().set_comment(
target->source_location().get_comment());
}
// try do-while first
if(target->is_target() && !target->is_goto())
{
loopt::const_iterator loop_entry=loop_map.find(target);
if(loop_entry!=loop_map.end() &&
(upper_bound==goto_program.instructions.end() ||
upper_bound->location_number > loop_entry->second->location_number))
return convert_do_while(target, loop_entry->second, dest);
}
convert_labels(target, dest);
switch(target->type())
{
case SKIP:
case LOCATION:
case END_FUNCTION:
case DEAD:
// ignore for now
dest.add(code_skipt());
return target;
case FUNCTION_CALL:
{
code_function_callt call(
target->call_lhs(), target->call_function(), target->call_arguments());
dest.add(call);
}
return target;
case OTHER:
dest.add(target->get_other());
return target;
case ASSIGN:
return convert_assign(target, upper_bound, dest);
case SET_RETURN_VALUE:
return convert_set_return_value(target, upper_bound, dest);
case DECL:
return convert_decl(target, upper_bound, dest);
case ASSERT:
system_headers.insert("assert.h");
dest.add(code_assertt(target->condition()));
dest.statements().back().add_source_location().set_comment(
target->source_location().get_comment());
return target;
case ASSUME:
dest.add(code_assumet(target->condition()));
return target;
case GOTO:
return convert_goto(target, upper_bound, dest);
case START_THREAD:
return convert_start_thread(target, upper_bound, dest);
case END_THREAD:
dest.add(code_assumet(false_exprt()));
dest.statements().back().add_source_location().set_comment("END_THREAD");
return target;
case ATOMIC_BEGIN:
case ATOMIC_END:
{
const code_typet void_t({}, empty_typet());
code_function_callt f(symbol_exprt(
target->is_atomic_begin() ? CPROVER_PREFIX "atomic_begin"
: CPROVER_PREFIX "atomic_end",
void_t));
dest.add(std::move(f));
return target;
}
case THROW:
return convert_throw(target, dest);
case CATCH:
return convert_catch(target, upper_bound, dest);
case NO_INSTRUCTION_TYPE:
case INCOMPLETE_GOTO:
UNREACHABLE;
}
// not reached
UNREACHABLE;
return target;
}
void goto_program2codet::convert_labels(
goto_programt::const_targett target,
code_blockt &dest)
{
code_blockt *latest_block = &dest;
irep_idt target_label;
if(target->is_target())
{
std::stringstream label;
label << CPROVER_PREFIX "DUMP_L" << target->target_number;
code_labelt l(label.str(), code_blockt());
l.add_source_location() = target->source_location();
target_label=l.get_label();
latest_block->add(std::move(l));
latest_block =
&to_code_block(to_code_label(latest_block->statements().back()).code());
}
for(goto_programt::instructiont::labelst::const_iterator
it=target->labels.begin();
it!=target->labels.end();
++it)
{
if(
it->starts_with(CPROVER_PREFIX "ASYNC_") ||
it->starts_with(CPROVER_PREFIX "DUMP_L"))
{
continue;
}
// keep all original labels
labels_in_use.insert(*it);
code_labelt l(*it, code_blockt());
l.add_source_location() = target->source_location();
latest_block->add(std::move(l));
latest_block =
&to_code_block(to_code_label(latest_block->statements().back()).code());
}
if(latest_block!=&dest)
latest_block->add(code_skipt());
}
goto_programt::const_targett goto_program2codet::convert_assign(
goto_programt::const_targett target,
goto_programt::const_targett upper_bound,
code_blockt &dest)
{
const code_assignt a{target->assign_lhs(), target->assign_rhs()};
if(va_list_expr.find(a.lhs())!=va_list_expr.end())
return convert_assign_varargs(target, upper_bound, dest);
else
convert_assign_rec(a, dest);
return target;
}
goto_programt::const_targett goto_program2codet::convert_assign_varargs(
goto_programt::const_targett target,
goto_programt::const_targett upper_bound,
code_blockt &dest)
{
const exprt this_va_list_expr = target->assign_lhs();
const exprt &r = skip_typecast(target->assign_rhs());
if(r.is_constant() && to_constant_expr(r).is_null_pointer())
{
code_function_callt f(
symbol_exprt("va_end", code_typet({}, empty_typet())),
{this_va_list_expr});
dest.add(std::move(f));
}
else if(
r.id() == ID_side_effect &&
to_side_effect_expr(r).get_statement() == ID_va_start)
{
code_function_callt f(
symbol_exprt(ID_va_start, code_typet({}, empty_typet())),
{this_va_list_expr,
to_address_of_expr(skip_typecast(to_unary_expr(r).op())).object()});
dest.add(std::move(f));
}
else if(r.id() == ID_plus)
{
code_function_callt f(
symbol_exprt("va_arg", code_typet({}, empty_typet())),
{this_va_list_expr});
// we do not bother to set the correct types here, they are not relevant for
// generating the correct dumped output
side_effect_expr_function_callt type_of(
symbol_exprt("__typeof__", code_typet({}, empty_typet())),
{},
typet{},
source_locationt{});
// if the return value is used, the next instruction will be assign
goto_programt::const_targett next=target;
++next;
CHECK_RETURN(next != goto_program.instructions.end());
if(next!=upper_bound &&
next->is_assign())
{
const exprt &n_r = next->assign_rhs();
if(
n_r.id() == ID_dereference &&
skip_typecast(to_dereference_expr(n_r).pointer()) == this_va_list_expr)
{
f.lhs() = next->assign_lhs();
type_of.arguments().push_back(f.lhs());
f.arguments().push_back(type_of);
dest.add(std::move(f));
return next;
}
}
// assignment not found, still need a proper typeof expression
DATA_INVARIANT(
r.find(ID_C_va_arg_type).is_not_nil(), "#va_arg_type must be set");
const typet &va_arg_type=
static_cast<typet const&>(r.find(ID_C_va_arg_type));
dereference_exprt deref(
null_pointer_exprt(pointer_type(va_arg_type)),
va_arg_type);
type_of.arguments().push_back(deref);
f.arguments().push_back(type_of);
code_expressiont void_f(typecast_exprt(f, empty_typet()));
dest.add(std::move(void_f));
}
else
{
code_function_callt f(
symbol_exprt("va_copy", code_typet({}, empty_typet())),
{this_va_list_expr, r});
dest.add(std::move(f));
}
return target;
}
void goto_program2codet::convert_assign_rec(
const code_assignt &assign,
code_blockt &dest)
{
if(assign.rhs().id()==ID_array)
{
const array_typet &type = to_array_type(assign.rhs().type());
unsigned i=0;
for(const auto &op : assign.rhs().operands())
{
index_exprt index(
assign.lhs(),
from_integer(i++, type.index_type()),
type.element_type());
convert_assign_rec(code_assignt(index, op), dest);
}
}
else
dest.add(assign);
}
goto_programt::const_targett goto_program2codet::convert_set_return_value(
goto_programt::const_targett target,
goto_programt::const_targett upper_bound,
code_blockt &dest)
{
// add return instruction unless original code was missing a return
if(
target->return_value().id() != ID_side_effect ||
to_side_effect_expr(target->return_value()).get_statement() != ID_nondet)
{
dest.add(code_returnt{target->return_value()});
}
// all v3 (or later) goto programs have an explicit GOTO after return
goto_programt::const_targett next=target;
++next;
CHECK_RETURN(next != goto_program.instructions.end());
// skip goto (and possibly dead), unless crossing the current boundary
while(next!=upper_bound && next->is_dead() && !next->is_target())
++next;
if(next!=upper_bound &&
next->is_goto() &&
!next->is_target())
target=next;
return target;
}
goto_programt::const_targett goto_program2codet::convert_decl(
goto_programt::const_targett target,
goto_programt::const_targett upper_bound,
code_blockt &dest)
{
code_frontend_declt d = code_frontend_declt{target->decl_symbol()};
symbol_exprt &symbol = d.symbol();
goto_programt::const_targett next=target;
++next;
CHECK_RETURN(next != goto_program.instructions.end());
// see if decl can go in current dest block
dead_mapt::const_iterator entry=dead_map.find(symbol.get_identifier());
bool move_to_dest= &toplevel_block==&dest ||
(entry!=dead_map.end() &&
upper_bound->location_number > entry->second);
// move back initialising assignments into the decl, unless crossing the
// current boundary
if(next!=upper_bound &&
move_to_dest &&
!next->is_target() &&
(next->is_assign() || next->is_function_call()))
{
exprt lhs = next->is_assign() ? next->assign_lhs() : next->call_lhs();
if(lhs==symbol &&
va_list_expr.find(lhs)==va_list_expr.end())
{
if(next->is_assign())
{
d.set_initial_value({next->assign_rhs()});
}
else
{
// could hack this by just erasing the first operand
side_effect_expr_function_callt call(
next->call_function(),
next->call_arguments(),
typet{},
source_locationt{});
d.copy_to_operands(call);
}
++target;
convert_labels(target, dest);
}
else
remove_const(symbol.type());
}
// if we have a constant but can't initialize them right away, we need to
// remove the const marker
else
remove_const(symbol.type());
if(move_to_dest)
dest.add(std::move(d));
else
toplevel_block.add(d);
return target;
}
goto_programt::const_targett goto_program2codet::convert_do_while(
goto_programt::const_targett target,
goto_programt::const_targett loop_end,
code_blockt &dest)
{
PRECONDITION(loop_end->is_goto() && loop_end->is_backwards_goto());
code_dowhilet d(loop_end->condition(), code_blockt());
simplify(d.cond(), ns);
copy_source_location(loop_end->targets.front(), d);
loop_last_stack.push_back(std::make_pair(loop_end, true));
for( ; target!=loop_end; ++target)
target = convert_instruction(target, loop_end, to_code_block(d.body()));
loop_last_stack.pop_back();
convert_labels(loop_end, to_code_block(d.body()));
dest.add(std::move(d));
return target;
}
goto_programt::const_targett goto_program2codet::convert_goto(
goto_programt::const_targett target,
goto_programt::const_targett upper_bound,
code_blockt &dest)
{
PRECONDITION(target->is_goto());
// we only do one target for now
PRECONDITION(target->targets.size() == 1);
loopt::const_iterator loop_entry=loop_map.find(target);
if(loop_entry!=loop_map.end() &&
(upper_bound==goto_program.instructions.end() ||
upper_bound->location_number > loop_entry->second->location_number))
return convert_goto_while(target, loop_entry->second, dest);
else if(!target->condition().is_true())
return convert_goto_switch(target, upper_bound, dest);
else if(!loop_last_stack.empty())
return convert_goto_break_continue(target, upper_bound, dest);
else
return convert_goto_goto(target, dest);
}
goto_programt::const_targett goto_program2codet::convert_goto_while(
goto_programt::const_targett target,
goto_programt::const_targett loop_end,
code_blockt &dest)
{
PRECONDITION(loop_end->is_goto() && loop_end->is_backwards_goto());
if(target==loop_end) // 1: GOTO 1
return convert_goto_goto(target, dest);
code_whilet w(true_exprt{}, code_blockt{});
goto_programt::const_targett after_loop=loop_end;
++after_loop;
CHECK_RETURN(after_loop != goto_program.instructions.end());
copy_source_location(target, w);
if(target->get_target()==after_loop)
{
w.cond() = not_exprt(target->condition());
simplify(w.cond(), ns);
}
else if(target->condition().is_true())
{
target = convert_goto_goto(target, to_code_block(w.body()));
}
else
{
target = convert_goto_switch(target, loop_end, to_code_block(w.body()));
}
loop_last_stack.push_back(std::make_pair(loop_end, true));
for(++target; target!=loop_end; ++target)
target = convert_instruction(target, loop_end, to_code_block(w.body()));
loop_last_stack.pop_back();
convert_labels(loop_end, to_code_block(w.body()));
if(loop_end->condition().is_false())
{
to_code_block(w.body()).add(code_breakt());
}
else if(!loop_end->condition().is_true())
{
code_ifthenelset i(not_exprt(loop_end->condition()), code_breakt());
simplify(i.cond(), ns);
copy_source_location(target, i);
to_code_block(w.body()).add(std::move(i));
}
if(w.body().has_operands() &&
to_code(w.body().operands().back()).get_statement()==ID_assign)
{
exprt increment = w.body().operands().back();
w.body().operands().pop_back();
increment.id(ID_side_effect);
code_fort f(nil_exprt(), w.cond(), increment, w.body());
copy_source_location(target, f);
f.swap(w);
}
else if(w.body().has_operands() &&
w.cond().is_true())
{
const codet &back=to_code(w.body().operands().back());
if(back.get_statement()==ID_break ||
(back.get_statement()==ID_ifthenelse &&
to_code_ifthenelse(back).cond().is_true() &&
to_code_ifthenelse(back).then_case().get_statement()==ID_break))
{
w.body().operands().pop_back();
code_dowhilet d(false_exprt(), w.body());
copy_source_location(target, d);
d.swap(w);
}
}
dest.add(std::move(w));
return target;
}
goto_programt::const_targett goto_program2codet::get_cases(
goto_programt::const_targett target,
goto_programt::const_targett upper_bound,
const exprt &switch_var,
cases_listt &cases,
goto_programt::const_targett &first_target,
goto_programt::const_targett &default_target)
{
goto_programt::const_targett last_target=goto_program.instructions.end();
std::set<goto_programt::const_targett, goto_programt::target_less_than>
unique_targets;
goto_programt::const_targett cases_it=target;
for( ;
cases_it!=upper_bound && cases_it!=first_target;
++cases_it)
{
if(
cases_it->is_goto() && !cases_it->is_backwards_goto() &&
cases_it->condition().is_true())
{
default_target=cases_it->get_target();
if(first_target==goto_program.instructions.end() ||
first_target->location_number > default_target->location_number)
first_target=default_target;
if(last_target==goto_program.instructions.end() ||
last_target->location_number < default_target->location_number)
last_target=default_target;
cases.push_back(caset(
goto_program,
nil_exprt(),
cases_it,
default_target));
unique_targets.insert(default_target);
++cases_it;
break;
}
else if(
cases_it->is_goto() && !cases_it->is_backwards_goto() &&
(cases_it->condition().id() == ID_equal ||
cases_it->condition().id() == ID_or))
{
exprt::operandst eqs;
if(cases_it->condition().id() == ID_equal)
eqs.push_back(cases_it->condition());
else
eqs = cases_it->condition().operands();
// goto conversion builds disjunctions in reverse order
// to ensure convergence, we turn this around again
for(exprt::operandst::const_reverse_iterator
e_it=eqs.rbegin();
e_it!=(exprt::operandst::const_reverse_iterator)eqs.rend();
++e_it)
{
if(e_it->id()!=ID_equal ||
!skip_typecast(to_equal_expr(*e_it).rhs()).is_constant() ||
switch_var!=to_equal_expr(*e_it).lhs())
return target;
cases.push_back(caset(
goto_program,
to_equal_expr(*e_it).rhs(),
cases_it,
cases_it->get_target()));
DATA_INVARIANT(cases.back().value.is_not_nil(), "cases should be set");
if(first_target==goto_program.instructions.end() ||
first_target->location_number>
cases.back().case_start->location_number)
first_target=cases.back().case_start;
if(last_target==goto_program.instructions.end() ||
last_target->location_number<
cases.back().case_start->location_number)
last_target=cases.back().case_start;
unique_targets.insert(cases.back().case_start);
}
}
else
return target;
}
// if there are less than 3 targets, we revert to if/else instead; this should
// help convergence
if(unique_targets.size()<3)
return target;
// make sure we don't have some overlap of gotos and switch/case
if(cases_it==upper_bound ||
(upper_bound!=goto_program.instructions.end() &&
upper_bound->location_number < last_target->location_number) ||
(last_target!=goto_program.instructions.end() &&
last_target->location_number > default_target->location_number) ||
target->get_target()==default_target)
return target;
return cases_it;
}
bool goto_program2codet::set_block_end_points(
goto_programt::const_targett upper_bound,
const cfg_dominatorst &dominators,
cases_listt &cases,
std::set<unsigned> &processed_locations)
{
std::set<goto_programt::const_targett, goto_programt::target_less_than>
targets_done;
for(cases_listt::iterator it=cases.begin();
it!=cases.end();
++it)
{
// some branch targets may be shared by multiple branch instructions,
// as in case 1: case 2: code; we build a nested code_switch_caset
if(!targets_done.insert(it->case_start).second)
continue;
// compute the block that belongs to this case
for(goto_programt::const_targett case_end = it->case_start;
case_end != goto_program.instructions.end() &&
case_end->type() != END_FUNCTION && case_end != upper_bound;
++case_end)
{
const auto &case_end_node = dominators.get_node(case_end);
// ignore dead instructions for the following checks
if(!dominators.program_point_reachable(case_end_node))
{
// simplification may have figured out that a case is unreachable
// this is possibly getting too weird, abort to be safe
if(case_end==it->case_start)
return true;
continue;
}
// find the last instruction dominated by the case start
if(!dominators.dominates(it->case_start, case_end_node))
break;
if(!processed_locations.insert(case_end->location_number).second)
UNREACHABLE;
it->case_last=case_end;
}
}
return false;
}
bool goto_program2codet::remove_default(
const cfg_dominatorst &dominators,
const cases_listt &cases,
goto_programt::const_targett default_target)
{
for(cases_listt::const_iterator it=cases.begin();
it!=cases.end();
++it)
{
// ignore empty cases
if(it->case_last==goto_program.instructions.end())
continue;
// the last case before default is the most interesting
cases_listt::const_iterator last=--cases.end();
if(last->case_start==default_target &&
it==--last)
{
// ignore dead instructions for the following checks
goto_programt::const_targett next_case=it->case_last;
for(++next_case;
next_case!=goto_program.instructions.end();
++next_case)
{
if(dominators.program_point_reachable(next_case))
break;
}
if(
next_case != goto_program.instructions.end() &&
next_case == default_target &&
(!it->case_last->is_goto() ||
(it->case_last->condition().is_true() &&
it->case_last->get_target() == default_target)))
{
// if there is no goto here, yet we got here, all others would
// branch to this - we don't need default
return true;
}
}
// jumps to default are ok
if(
it->case_last->is_goto() && it->case_last->condition().is_true() &&
it->case_last->get_target() == default_target)
continue;
// fall-through is ok
if(!it->case_last->is_goto())
continue;
return false;
}
return false;
}
goto_programt::const_targett goto_program2codet::convert_goto_switch(
goto_programt::const_targett target,
goto_programt::const_targett upper_bound,
code_blockt &dest)
{
// try to figure out whether this was a switch/case
exprt eq_cand = target->condition();
if(eq_cand.id()==ID_or)
eq_cand = to_or_expr(eq_cand).op0();
if(target->is_backwards_goto() ||
eq_cand.id()!=ID_equal ||
!skip_typecast(to_equal_expr(eq_cand).rhs()).is_constant())
return convert_goto_if(target, upper_bound, dest);
const cfg_dominatorst &dominators=loops.get_dominator_info();
// always use convert_goto_if for dead code as the construction below relies
// on effective dominator information
if(!dominators.program_point_reachable(target))
return convert_goto_if(target, upper_bound, dest);
// maybe, let's try some more
code_switcht s(to_equal_expr(eq_cand).lhs(), code_blockt());
copy_source_location(target, s);
// find the cases or fall back to convert_goto_if
cases_listt cases;
goto_programt::const_targett first_target=
goto_program.instructions.end();
goto_programt::const_targett default_target=
goto_program.instructions.end();
goto_programt::const_targett cases_start=
get_cases(
target,
upper_bound,
s.value(),
cases,
first_target,
default_target);
if(cases_start==target)
return convert_goto_if(target, upper_bound, dest);
// backup the top-level block as we might have to backtrack
code_blockt toplevel_block_bak=toplevel_block;
// add any instructions that go in the body of the switch before any cases
goto_programt::const_targett orig_target=target;
for(target=cases_start; target!=first_target; ++target)
target = convert_instruction(target, first_target, to_code_block(s.body()));
std::set<unsigned> processed_locations;
// iterate over all cases to identify block end points
if(set_block_end_points(upper_bound, dominators, cases, processed_locations))
{
toplevel_block.swap(toplevel_block_bak);
return convert_goto_if(orig_target, upper_bound, dest);
}
// figure out whether we really had a default target by testing
// whether all cases eventually jump to the default case
if(remove_default(dominators, cases, default_target))
{
cases.pop_back();
default_target=goto_program.instructions.end();
}
// find the last instruction belonging to any of the cases
goto_programt::const_targett max_target=target;
for(cases_listt::const_iterator it=cases.begin();
it!=cases.end();
++it)
if(it->case_last!=goto_program.instructions.end() &&
it->case_last->location_number > max_target->location_number)
max_target=it->case_last;
std::
map<goto_programt::const_targett, unsigned, goto_programt::target_less_than>
targets_done;
loop_last_stack.push_back(std::make_pair(max_target, false));
// iterate over all <branch conditions, branch instruction, branch target>
// triples, build their corresponding code
for(cases_listt::const_iterator it=cases.begin();
it!=cases.end();
++it)
{
code_switch_caset csc(nil_exprt{}, code_blockt{});
// branch condition is nil_exprt for default case;
if(it->value.is_nil())
csc.set_default();
else
csc.case_op()=it->value;
// some branch targets may be shared by multiple branch instructions,
// as in case 1: case 2: code; we build a nested code_switch_caset
if(targets_done.find(it->case_start)!=targets_done.end())
{
DATA_INVARIANT(
it->case_selector == orig_target || !it->case_selector->is_target(),
"valid case selector required");
// maintain the order to ensure convergence -> go to the innermost
code_switch_caset *cscp=&to_code_switch_case(
to_code(s.body().operands()[targets_done[it->case_start]]));
while(cscp->code().get_statement()==ID_switch_case)
cscp=&to_code_switch_case(cscp->code());
csc.code().swap(cscp->code());
cscp->code().swap(csc);
continue;
}
code_blockt c;
if(it->case_selector!=orig_target)
convert_labels(it->case_selector, c);
// convert the block that belongs to this case
target=it->case_start;
// empty case
if(it->case_last==goto_program.instructions.end())
{
// only emit the jump out of the switch if it's not the last case
// this improves convergence
if(it->case_start!=(--cases.end())->case_start)
{
UNREACHABLE;
goto_programt::instructiont i=*(it->case_selector);
i.condition_nonconst() = true_exprt();
goto_programt tmp;
tmp.insert_before_swap(tmp.insert_before(tmp.instructions.end()), i);
convert_goto_goto(tmp.instructions.begin(), c);
}