@@ -254,17 +254,16 @@ simplify_exprt::simplify_if_preorder(const if_exprt &expr)
254
254
simplify_rec (r_cond.expr .is_true () ? truevalue : falsevalue));
255
255
}
256
256
257
- if (do_simplify_if)
258
- {
259
- bool swap_branches = false ;
257
+ bool swap_branches = false ;
260
258
261
- if (r_cond.expr .id () == ID_not)
262
- {
263
- r_cond = changed (to_not_expr (r_cond.expr ).op ());
264
- swap_branches = true ;
265
- }
259
+ if (r_cond.expr .id () == ID_not)
260
+ {
261
+ r_cond = changed (to_not_expr (r_cond.expr ).op ());
262
+ swap_branches = true ;
263
+ }
266
264
267
- #ifdef USE_LOCAL_REPLACE_MAP
265
+ if (do_simplify_if)
266
+ {
268
267
replace_mapt map_before (local_replace_map);
269
268
270
269
// a ? b : c --> a ? b[a/true] : c
@@ -273,7 +272,10 @@ simplify_exprt::simplify_if_preorder(const if_exprt &expr)
273
272
for (const auto &op : r_cond.expr .operands ())
274
273
{
275
274
if (op.id () == ID_not)
276
- local_replace_map.insert (std::make_pair (op.op0 (), false_exprt ()));
275
+ {
276
+ local_replace_map.insert (
277
+ std::make_pair (to_not_expr (op).op (), false_exprt ()));
278
+ }
277
279
else
278
280
local_replace_map.insert (std::make_pair (op, true_exprt ()));
279
281
}
@@ -291,7 +293,10 @@ simplify_exprt::simplify_if_preorder(const if_exprt &expr)
291
293
for (const auto &op : r_cond.expr .operands ())
292
294
{
293
295
if (op.id () == ID_not)
294
- local_replace_map.insert (std::make_pair (op.op0 (), true_exprt ()));
296
+ {
297
+ local_replace_map.insert (
298
+ std::make_pair (to_not_expr (op).op (), true_exprt ()));
299
+ }
295
300
else
296
301
local_replace_map.insert (std::make_pair (op, false_exprt ()));
297
302
}
@@ -306,11 +311,13 @@ simplify_exprt::simplify_if_preorder(const if_exprt &expr)
306
311
if (swap_branches)
307
312
{
308
313
// tell build_if_expr to replace truevalue and falsevalue
309
- r_truevalue.expr_changed = CHANGED;
310
- r_falsevalue.expr_changed = CHANGED;
314
+ r_truevalue.expr_changed = resultt<>:: CHANGED;
315
+ r_falsevalue.expr_changed = resultt<>:: CHANGED;
311
316
}
312
317
return build_if_expr (expr, r_cond, r_truevalue, r_falsevalue);
313
- #else
318
+ }
319
+ else
320
+ {
314
321
if (!swap_branches)
315
322
{
316
323
return build_if_expr (
@@ -324,12 +331,6 @@ simplify_exprt::simplify_if_preorder(const if_exprt &expr)
324
331
changed (simplify_rec (falsevalue)),
325
332
changed (simplify_rec (truevalue)));
326
333
}
327
- #endif
328
- }
329
- else
330
- {
331
- return build_if_expr (
332
- expr, r_cond, simplify_rec (truevalue), simplify_rec (falsevalue));
333
334
}
334
335
}
335
336
@@ -339,49 +340,46 @@ simplify_exprt::resultt<> simplify_exprt::simplify_if(const if_exprt &expr)
339
340
const exprt &truevalue = expr.true_case ();
340
341
const exprt &falsevalue = expr.false_case ();
341
342
342
- if (do_simplify_if)
343
- {
344
343
#if 0
345
- no_change = simplify_if_cond(cond) && no_change;
346
- no_change = simplify_if_branch(truevalue, falsevalue, cond) && no_change;
344
+ no_change = simplify_if_cond(cond) && no_change;
345
+ no_change = simplify_if_branch(truevalue, falsevalue, cond) && no_change;
347
346
#endif
348
347
349
- if (expr.type () == bool_typet ())
350
- {
351
- // a?b:c <-> (a && b) || (!a && c)
348
+ if (expr.type () == bool_typet ())
349
+ {
350
+ // a?b:c <-> (a && b) || (!a && c)
352
351
353
- if (truevalue.is_true () && falsevalue.is_false ())
354
- {
355
- // a?1:0 <-> a
356
- return cond;
357
- }
358
- else if (truevalue.is_false () && falsevalue.is_true ())
359
- {
360
- // a?0:1 <-> !a
361
- return changed (simplify_not (not_exprt (cond)));
362
- }
363
- else if (falsevalue.is_false ())
364
- {
365
- // a?b:0 <-> a AND b
366
- return changed (simplify_boolean (and_exprt (cond, truevalue)));
367
- }
368
- else if (falsevalue.is_true ())
369
- {
370
- // a?b:1 <-> !a OR b
371
- return changed (
372
- simplify_boolean (or_exprt (simplify_not (not_exprt (cond)), truevalue)));
373
- }
374
- else if (truevalue.is_true ())
375
- {
376
- // a?1:b <-> a||(!a && b) <-> a OR b
377
- return changed (simplify_boolean (or_exprt (cond, falsevalue)));
378
- }
379
- else if (truevalue.is_false ())
380
- {
381
- // a?0:b <-> !a && b
382
- return changed (simplify_boolean (
383
- and_exprt (simplify_not (not_exprt (cond)), falsevalue)));
384
- }
352
+ if (truevalue.is_true () && falsevalue.is_false ())
353
+ {
354
+ // a?1:0 <-> a
355
+ return cond;
356
+ }
357
+ else if (truevalue.is_false () && falsevalue.is_true ())
358
+ {
359
+ // a?0:1 <-> !a
360
+ return changed (simplify_not (not_exprt (cond)));
361
+ }
362
+ else if (falsevalue.is_false ())
363
+ {
364
+ // a?b:0 <-> a AND b
365
+ return changed (simplify_boolean (and_exprt (cond, truevalue)));
366
+ }
367
+ else if (falsevalue.is_true ())
368
+ {
369
+ // a?b:1 <-> !a OR b
370
+ return changed (
371
+ simplify_boolean (or_exprt (simplify_not (not_exprt (cond)), truevalue)));
372
+ }
373
+ else if (truevalue.is_true ())
374
+ {
375
+ // a?1:b <-> a||(!a && b) <-> a OR b
376
+ return changed (simplify_boolean (or_exprt (cond, falsevalue)));
377
+ }
378
+ else if (truevalue.is_false ())
379
+ {
380
+ // a?0:b <-> !a && b
381
+ return changed (
382
+ simplify_boolean (and_exprt (simplify_not (not_exprt (cond)), falsevalue)));
385
383
}
386
384
}
387
385
0 commit comments