diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2014-10-21 15:17:12 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 2014-10-21 15:17:12 +0000 |
commit | dd637013f6c780d6ae06607f5188002359ac9f4a (patch) | |
tree | d97aa618a7b800cfd54f614af5d144b8805bd39a /gcc/loop-unroll.h | |
parent | eb8a3cca947b3912ca890a25753e6b1aebba6089 (diff) | |
download | gcc-dd637013f6c780d6ae06607f5188002359ac9f4a.zip gcc-dd637013f6c780d6ae06607f5188002359ac9f4a.tar.gz gcc-dd637013f6c780d6ae06607f5188002359ac9f4a.tar.bz2 |
cfg.h: New.
2014-10-21 Andrew MacLeod <amacleod@redhat.com>
* cfg.h: New. Header file for cfg.c.
* cfganal.h: New. Header file for cfganal.c.
* lcm.h: New. Header file for lcm.c.
* loop-unroll.h: New. Header file for loop-unroll.h.
* cfgloop.h: (unroll_loops): Remove prototype.
* basic-block.h: Move prototypes and structs to new header files.
Include cfg.h, cfganal.h, and lcm.h.
* loop-init.c: Include loop-unroll.h.
* loop-unroll.c: (referenced_in_one_insn_in_loop_p): Make static.
* modulo-sched.c: Include loop-unroll.h.
From-SVN: r216518
Diffstat (limited to 'gcc/loop-unroll.h')
-rw-r--r-- | gcc/loop-unroll.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gcc/loop-unroll.h b/gcc/loop-unroll.h new file mode 100644 index 0000000..a14be10 --- /dev/null +++ b/gcc/loop-unroll.h @@ -0,0 +1,27 @@ +/* Loop unrolling header file. + Copyright (C) 2014 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 3, or (at your option) any later +version. + +GCC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with GCC; see the file COPYING3. If not see +<http://www.gnu.org/licenses/>. */ + +#ifndef GCC_LOOP_UNROLL_H +#define GCC_LOOP_UNROLL_H + +extern void unroll_loops (int); +extern basic_block split_edge_and_insert (edge, rtx_insn *); + + +#endif /* GCC_LOOP_UNROLL_H */ |