@@ -260,8 +260,7 @@ void goto_symext::symex_goto(statet &state)
260260 DATA_INVARIANT (
261261 instruction.targets .size () == 1 , " no support for non-deterministic gotos" );
262262
263- goto_programt::const_targett goto_target=
264- instruction.get_target ();
263+ goto_programt::const_targett goto_target = instruction.get_target ();
265264
266265 const bool backward = instruction.is_backwards_goto ();
267266
@@ -614,6 +613,195 @@ void goto_symext::symex_unreachable_goto(statet &state)
614613 symex_transition (state);
615614}
616615
616+ void goto_symext::symex_goto_retrace (statet &state)
617+ {
618+ // get guard, targets as in symex_goto()
619+ const goto_programt::instructiont &instruction = *state.source .pc ;
620+
621+ exprt new_guard = clean_expr (instruction.condition (), state, false );
622+
623+ renamedt<exprt, L2> renamed_guard = state.rename (std::move (new_guard), ns);
624+ renamed_guard = try_evaluate_pointer_comparisons (
625+ std::move (renamed_guard), state.value_set , language_mode, ns);
626+ if (symex_config.simplify_opt )
627+ renamed_guard.simplify (ns);
628+ new_guard = renamed_guard.get ();
629+
630+ target.goto_instruction (state.guard .as_expr (), renamed_guard, state.source );
631+
632+ DATA_INVARIANT (
633+ !instruction.targets .empty (), " goto should have at least one target" );
634+
635+ // we only do deterministic gotos for now
636+ DATA_INVARIANT (
637+ instruction.targets .size () == 1 , " no support for non-deterministic gotos" );
638+
639+ goto_programt::const_targett goto_target = instruction.get_target ();
640+
641+ const bool backward = instruction.is_backwards_goto ();
642+
643+ goto_programt::const_targett next_instruction = state.source .pc ;
644+ next_instruction++;
645+
646+ // goto or next depends on input trace from user
647+ bool choose_goto;
648+ static size_t retrace_index = 0 ;
649+ if (retrace_index < symex_config.retrace_input .size ())
650+ {
651+ choose_goto = symex_config.retrace_input [retrace_index] == ' 1' ;
652+ }
653+ else
654+ {
655+ choose_goto = false ;
656+ }
657+ retrace_index++;
658+
659+ // print goto choice
660+ log.conditional_output (
661+ log.status (),
662+ [this , &state, &goto_target, &next_instruction, choose_goto](
663+ messaget::mstreamt &mstream)
664+ {
665+ source_locationt cur = state.source .pc ->source_location ();
666+ source_locationt goto_dest = goto_target->source_location ();
667+ source_locationt next_dest = next_instruction->source_location ();
668+ source_locationt t_dest = choose_goto ? goto_dest : next_dest;
669+ source_locationt nt_dest = choose_goto ? next_dest : goto_dest;
670+
671+ auto cur_file = cur.get_file ();
672+ if (cur_file.empty ())
673+ cur_file = " <unknown>" ;
674+ auto t_file = t_dest.get_file ();
675+ if (t_file.empty ())
676+ t_file = " <unknown>" ;
677+ auto nt_file = nt_dest.get_file ();
678+ if (nt_file.empty ())
679+ nt_file = " <unknown>" ;
680+
681+ // print nothing when files are the same
682+ if (cur_file == t_file)
683+ t_file = " " ;
684+ if (cur_file == nt_file)
685+ nt_file = " " ;
686+
687+ auto cur_line = cur.get_line ();
688+ if (cur_line.empty ())
689+ cur_line = " ?" ;
690+ auto t_line = t_dest.get_line ();
691+ if (t_line.empty ())
692+ t_line = " ?" ;
693+ auto nt_line = nt_dest.get_line ();
694+ if (nt_line.empty ())
695+ nt_line = " ?" ;
696+
697+ std::string head = symex_config.retrace_input ;
698+ // add 0s in case input trace was shorter
699+ head.resize (retrace_index - 1 , ' 0' );
700+ std::string decision = choose_goto ? " 1" : " 0" ;
701+
702+ std::string step = choose_goto ? " goto " : " next " ;
703+
704+ std::string padding_1 =
705+ cur_line.size () < 3 ? std::string (3 - cur_line.size (), ' ' ) : " " ;
706+ std::string padding_2 =
707+ t_line.size () < 3 ? std::string (3 - t_line.size (), ' ' ) : " " ;
708+
709+ mstream << " Retrace " << head << messaget::bold << decision
710+ << messaget::reset << " at " << cur_file << " :" << cur_line
711+ << padding_1 << step << t_file << " :" << t_line << padding_2
712+ << " (not " << nt_file << " :" << nt_line << " )" << messaget::eom;
713+ });
714+
715+ // warn when not following unconditional goto
716+ if (new_guard.is_true () && !choose_goto)
717+ {
718+ log.result () << " Retrace input " << messaget::red << " inconsistent"
719+ << messaget::reset << " : 0/next although guard is true!"
720+ << log.eom ;
721+ should_pause_symex = true ;
722+ }
723+ else if (new_guard.is_false () && choose_goto)
724+ {
725+ log.result () << " Retrace input "
726+ << messaget::red << " inconsistent" << messaget::reset
727+ << " : 1/goto although guard is false!"
728+ << log.eom ;
729+ should_pause_symex = true ;
730+ }
731+
732+ symex_targett::sourcet original_source = state.source ;
733+ goto_programt::const_targett new_state_pc;
734+
735+ if (choose_goto)
736+ {
737+ // Jump to the jump target if the input is '1'
738+ new_state_pc = goto_target;
739+ symex_transition (state, new_state_pc, backward);
740+ }
741+ else
742+ {
743+ // Jump to the next instruction
744+ new_state_pc = state.source .pc ;
745+ new_state_pc++;
746+ symex_transition (state);
747+ }
748+
749+ // produce new guard symbol
750+ exprt guard_expr;
751+
752+ if (
753+ new_guard.id () == ID_symbol ||
754+ (new_guard.id () == ID_not && to_not_expr (new_guard).op ().id () == ID_symbol))
755+ {
756+ guard_expr = new_guard;
757+ }
758+ else
759+ {
760+ symbol_exprt guard_symbol_expr =
761+ symbol_exprt (statet::guard_identifier (), bool_typet ());
762+ exprt new_rhs = boolean_negate (new_guard);
763+
764+ ssa_exprt new_lhs =
765+ state.rename_ssa <L1>(ssa_exprt{guard_symbol_expr}, ns).get ();
766+ new_lhs =
767+ state.assignment (std::move (new_lhs), new_rhs, ns, true , false ).get ();
768+
769+ guardt guard{true_exprt{}, guard_manager};
770+
771+ log.conditional_output (
772+ log.debug (),
773+ [this , &new_lhs](messaget::mstreamt &mstream)
774+ {
775+ mstream << " Assignment to " << new_lhs.get_identifier () << " ["
776+ << pointer_offset_bits (new_lhs.type (), ns).value_or (0 )
777+ << " bits]" << messaget::eom;
778+ });
779+
780+ target.assignment (
781+ guard.as_expr (),
782+ new_lhs,
783+ new_lhs,
784+ guard_symbol_expr,
785+ new_rhs,
786+ original_source,
787+ symex_targett::assignment_typet::GUARD);
788+
789+ guard_expr = state.rename (boolean_negate (guard_symbol_expr), ns).get ();
790+ }
791+
792+ if (choose_goto)
793+ {
794+ symex_assume_l2 (state, guard_expr);
795+ state.guard .add (guard_expr);
796+ }
797+ else
798+ {
799+ symex_assume_l2 (state, boolean_negate (guard_expr));
800+ state.guard .add (boolean_negate (guard_expr));
801+ }
802+ return ;
803+ }
804+
617805bool goto_symext::check_break (const irep_idt &loop_id, unsigned unwind)
618806{
619807 // dummy implementation
0 commit comments