hppa: Fix REG+D address support before reload
[official-gcc.git] / gcc / cfgloopmanip.h
blob93fc360ef2296c75bd2b1a7ef4e31fc6503a47d5
1 /* Loop manipulation header.
2 Copyright (C) 2014-2024 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_CFGLOOPMANIP_H
21 #define GCC_CFGLOOPMANIP_H
23 enum
25 CP_SIMPLE_PREHEADERS = 1,
26 CP_FALLTHRU_PREHEADERS = 2
29 #define DLTHE_FLAG_UPDATE_FREQ 1 /* Update frequencies in
30 duplicate_loop_to_header_edge. */
31 #define DLTHE_RECORD_COPY_NUMBER 2 /* Record copy number in the aux
32 field of newly create BB. */
33 #define DLTHE_FLAG_COMPLETTE_PEEL 4 /* Update frequencies expecting
34 a complete peeling. */
35 #define DLTHE_FLAG_FLAT_PROFILE 8 /* Profile is flat; do not reduce
36 count by unroll factor. */
37 extern edge mfb_kj_edge;
39 extern bool remove_path (edge, bool * = NULL, bitmap = NULL);
40 extern void place_new_loop (struct function *, class loop *);
41 extern void add_loop (class loop *, class loop *);
42 extern void scale_loop_frequencies (class loop *, profile_probability);
43 extern void scale_loop_profile (class loop *, profile_probability, gcov_type);
44 extern edge create_empty_if_region_on_edge (edge, tree);
45 extern class loop *create_empty_loop_on_edge (edge, tree, tree, tree, tree,
46 tree *, tree *, class loop *);
47 extern void unloop (class loop *, bool *, bitmap);
48 extern void unloop_loops (vec<class loop *> &loops_to_unloop,
49 vec<int> &loops_to_unloop_nunroll,
50 vec<edge> &edges_to_remove,
51 bitmap loop_closed_ssa_invalidated,
52 bool *irred_invalidated);
53 extern void copy_loop_info (class loop *loop, class loop *target);
54 extern class loop * duplicate_loop (class loop *, class loop *,
55 class loop * = NULL);
56 extern void duplicate_subloops (class loop *, class loop *);
57 extern bool can_duplicate_loop_p (const class loop *loop);
58 extern bool
59 duplicate_loop_body_to_header_edge (class loop *, edge, unsigned, sbitmap, edge,
60 vec<edge> *, int);
61 extern bool mfb_keep_just (edge);
62 basic_block create_preheader (class loop *, int);
63 extern void create_preheaders (int);
64 extern void force_single_succ_latches (void);
65 class loop * loop_version (class loop *, void *,
66 basic_block *,
67 profile_probability, profile_probability,
68 profile_probability, profile_probability, bool);
69 void adjust_loop_info_after_peeling (class loop *loop, int npeel, bool precise);
70 void scale_dominated_blocks_in_loop (class loop *loop, basic_block bb,
71 profile_count num, profile_count den);
72 edge update_loop_exit_probability_scale_dom_bbs
73 (class loop *loop, edge exit_edge = NULL,
74 profile_count desired_count = profile_count::uninitialized ());
75 void update_exit_probability_after_unrolling (class loop *loop, edge new_exit);
77 #endif /* GCC_CFGLOOPMANIP_H */