c++: Implement modules ABI for vtable emissions
[official-gcc.git] / gcc / rtl-ssa.h
blob17337639ae83b6572cca9d24c1ad89392b30c3ea
1 // On-the-side RTL SSA representation -*- C++ -*-
2 // Copyright (C) 2020-2024 Free Software Foundation, Inc.
3 //
4 // This file is part of GCC.
5 //
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_RTL_SSA_H
21 #define GCC_RTL_SSA_H 1
23 // This is an aggregation header file. This means it should contain only
24 // other include files.
26 #if 0
27 // Files that use this one should first have:
28 #define INCLUDE_ALGORITHM
29 #define INCLUDE_FUNCTIONAL
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "backend.h"
34 #include "rtl.h"
35 #include "df.h"
36 #endif
38 // Needed by splay-tree-utils.h and directly by rtl-ssa.
39 #include "pretty-print.h"
41 // Needed directly by recog.h.
42 #include "insn-config.h"
44 // Needed directly by rtl-ssa.
45 #include "splay-tree-utils.h"
46 #include "recog.h"
47 #include "regs.h"
48 #include "function-abi.h"
49 #include "obstack-utils.h"
50 #include "mux-utils.h"
51 #include "rtlanal.h"
52 #include "cfgbuild.h"
53 #include "hash-set.h"
55 // Provides the global crtl->ssa.
56 #include "memmodel.h"
57 #include "tm_p.h"
58 #include "emit-rtl.h"
60 // The rtl-ssa files themselves.
61 #include "rtl-ssa/accesses.h"
62 #include "rtl-ssa/insns.h"
63 #include "rtl-ssa/blocks.h"
64 #include "rtl-ssa/changes.h"
65 #include "rtl-ssa/functions.h"
66 #include "rtl-ssa/is-a.inl"
67 #include "rtl-ssa/access-utils.h"
68 #include "rtl-ssa/insn-utils.h"
69 #include "rtl-ssa/movement.h"
70 #include "rtl-ssa/change-utils.h"
71 #include "rtl-ssa/member-fns.inl"
73 #endif