Home
last modified time | relevance | path

Searched refs:cond_stmt (Results 1 – 25 of 690) sorted by relevance

12345678910>>...28

/dports/security/py-angr/angr-9.0.5405/angr/analyses/decompiler/
H A Dregion_simplifier.py178 cond_stmt = block.statements[-1] # ailment.Stmt.ConditionalJump
181 if cond_stmt.true_target is not None and successor.true_node is not None:
183 if isinstance(cond_stmt.true_target, ailment.Expr.Const) \
184 and cond_stmt.true_target.value == successor.true_node.addr:
186 if cond_stmt.true_target is not None and successor.false_node is not None:
188 if isinstance(cond_stmt.true_target, ailment.Expr.Const) \
189 and cond_stmt.true_target.value == successor.false_node.addr:
195 if isinstance(cond_stmt.true_target, ailment.Expr.Const) \
200 if isinstance(cond_stmt.true_target, ailment.Expr.Const) \
201 and cond_stmt.false_target.value == successor.true_node.addr:
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/
H A Dtree-ssa-loop-unswitch.c336 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
337 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
339 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
696 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
703 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
711 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
712 gimple_cond_lhs (cond_stmt), in hoist_guard()
713 gimple_cond_rhs (cond_stmt), in hoist_guard()
718 gimple_cond_make_false (cond_stmt); in hoist_guard()
720 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/gcc/
H A Dtree-ssa-loop-unswitch.c336 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
337 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
339 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
696 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
703 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
711 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
712 gimple_cond_lhs (cond_stmt), in hoist_guard()
713 gimple_cond_rhs (cond_stmt), in hoist_guard()
718 gimple_cond_make_false (cond_stmt); in hoist_guard()
720 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/
H A Dtree-ssa-loop-unswitch.c411 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
412 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
414 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
797 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
804 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
812 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
813 gimple_cond_lhs (cond_stmt), in hoist_guard()
814 gimple_cond_rhs (cond_stmt), in hoist_guard()
819 gimple_cond_make_false (cond_stmt); in hoist_guard()
821 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
H A Dgimple-ssa-split-paths.c270 gimple *cond_stmt = last_stmt (pred1); in is_feasible_trace() local
271 if (cond_stmt && gimple_code (cond_stmt) == GIMPLE_COND) in is_feasible_trace()
273 tree lhs = gimple_cond_lhs (cond_stmt); in is_feasible_trace()
274 tree rhs = gimple_cond_rhs (cond_stmt); in is_feasible_trace()
/dports/lang/gcc8/gcc-8.5.0/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gcc10/gcc-10.3.0/gcc/
H A Dtree-ssa-loop-unswitch.c412 gcond *cond_stmt = as_a <gcond *> (stmt);
413 if (gimple_cond_true_p (cond_stmt))
415 else if (gimple_cond_false_p (cond_stmt))
798 gcond *cond_stmt, *new_cond_stmt;
805 cond_stmt = as_a <gcond *> (stmt);
813 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt),
814 gimple_cond_lhs (cond_stmt),
815 gimple_cond_rhs (cond_stmt),
820 gimple_cond_make_false (cond_stmt);
822 gimple_cond_make_true (cond_stmt);
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gcc11/gcc-11.2.0/gcc/
H A Dtree-ssa-loop-unswitch.c412 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
413 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
415 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
798 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
805 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
813 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
814 gimple_cond_lhs (cond_stmt), in hoist_guard()
815 gimple_cond_rhs (cond_stmt), in hoist_guard()
820 gimple_cond_make_false (cond_stmt); in hoist_guard()
822 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
H A Dgimple-ssa-split-paths.c270 gimple *cond_stmt = last_stmt (pred1); in is_feasible_trace() local
271 if (cond_stmt && gimple_code (cond_stmt) == GIMPLE_COND) in is_feasible_trace()
273 tree lhs = gimple_cond_lhs (cond_stmt); in is_feasible_trace()
274 tree rhs = gimple_cond_rhs (cond_stmt); in is_feasible_trace()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/
H A Dtree-ssa-loop-unswitch.c412 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
413 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
415 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
798 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
805 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
813 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
814 gimple_cond_lhs (cond_stmt), in hoist_guard()
815 gimple_cond_rhs (cond_stmt), in hoist_guard()
820 gimple_cond_make_false (cond_stmt); in hoist_guard()
822 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
H A Dgimple-ssa-split-paths.c270 gimple *cond_stmt = last_stmt (pred1); in is_feasible_trace() local
271 if (cond_stmt && gimple_code (cond_stmt) == GIMPLE_COND) in is_feasible_trace()
273 tree lhs = gimple_cond_lhs (cond_stmt); in is_feasible_trace()
274 tree rhs = gimple_cond_rhs (cond_stmt); in is_feasible_trace()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/
H A Dtree-ssa-loop-unswitch.c412 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
413 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
415 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
798 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
805 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
813 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
814 gimple_cond_lhs (cond_stmt), in hoist_guard()
815 gimple_cond_rhs (cond_stmt), in hoist_guard()
820 gimple_cond_make_false (cond_stmt); in hoist_guard()
822 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
H A Dgimple-ssa-split-paths.c270 gimple *cond_stmt = last_stmt (pred1); in is_feasible_trace() local
271 if (cond_stmt && gimple_code (cond_stmt) == GIMPLE_COND) in is_feasible_trace()
273 tree lhs = gimple_cond_lhs (cond_stmt); in is_feasible_trace()
274 tree rhs = gimple_cond_rhs (cond_stmt); in is_feasible_trace()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/
H A Dtree-ssa-loop-unswitch.c412 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
413 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
415 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
798 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
805 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
813 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
814 gimple_cond_lhs (cond_stmt), in hoist_guard()
815 gimple_cond_rhs (cond_stmt), in hoist_guard()
820 gimple_cond_make_false (cond_stmt); in hoist_guard()
822 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/
H A Dtree-ssa-loop-unswitch.c412 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
413 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
415 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
798 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
805 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
813 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
814 gimple_cond_lhs (cond_stmt), in hoist_guard()
815 gimple_cond_rhs (cond_stmt), in hoist_guard()
820 gimple_cond_make_false (cond_stmt); in hoist_guard()
822 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gcc9/gcc-9.4.0/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/
H A Dtree-ssa-loop-unswitch.c413 gcond *cond_stmt = as_a <gcond *> (stmt); in tree_unswitch_single_loop() local
414 if (gimple_cond_true_p (cond_stmt)) in tree_unswitch_single_loop()
416 else if (gimple_cond_false_p (cond_stmt)) in tree_unswitch_single_loop()
799 gcond *cond_stmt, *new_cond_stmt; in hoist_guard() local
806 cond_stmt = as_a <gcond *> (stmt); in hoist_guard()
814 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt), in hoist_guard()
815 gimple_cond_lhs (cond_stmt), in hoist_guard()
816 gimple_cond_rhs (cond_stmt), in hoist_guard()
821 gimple_cond_make_false (cond_stmt); in hoist_guard()
823 gimple_cond_make_true (cond_stmt); in hoist_guard()
[all …]
/dports/lang/gcc48/gcc-4.8.5/gcc/
H A Dtree-parloops.c1488 cond_stmt = last_stmt (exit->src); in transform_to_exit_first_loop()
1489 control = gimple_cond_lhs (cond_stmt); in transform_to_exit_first_loop()
1505 gimple_cond_set_lhs (cond_stmt, t); in transform_to_exit_first_loop()
1506 update_stmt (cond_stmt); in transform_to_exit_first_loop()
1588 gimple stmt, for_stmt, phi, cond_stmt; in create_parallel_loop() local
1630 cond_stmt = last_stmt (loop->header); in create_parallel_loop()
1632 cvar = gimple_cond_lhs (cond_stmt); in create_parallel_loop()
1732 gimple cond_stmt; in gen_parallel_loop() local
1862 cond_stmt = last_stmt (loop->header); in gen_parallel_loop()
1863 if (cond_stmt) in gen_parallel_loop()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/
H A Dtree-parloops.c1523 cond_stmt = last_stmt (exit->src); in transform_to_exit_first_loop()
1524 control = gimple_cond_lhs (cond_stmt); in transform_to_exit_first_loop()
1540 gimple_cond_set_lhs (cond_stmt, t); in transform_to_exit_first_loop()
1541 update_stmt (cond_stmt); in transform_to_exit_first_loop()
1622 gimple stmt, for_stmt, phi, cond_stmt; in create_parallel_loop() local
1662 cond_stmt = last_stmt (loop->header); in create_parallel_loop()
1664 cvar = gimple_cond_lhs (cond_stmt); in create_parallel_loop()
1763 gimple cond_stmt; in gen_parallel_loop() local
1893 cond_stmt = last_stmt (loop->header); in gen_parallel_loop()
1894 if (cond_stmt) in gen_parallel_loop()
[all …]

12345678910>>...28