1 |
684 |
jeremybenn |
/* Exported functions from emit-rtl.c
|
2 |
|
|
Copyright (C) 2004, 2007, 2008, 2010 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.
|
10 |
|
|
|
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.
|
15 |
|
|
|
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/>. */
|
19 |
|
|
|
20 |
|
|
#ifndef GCC_EMIT_RTL_H
|
21 |
|
|
#define GCC_EMIT_RTL_H
|
22 |
|
|
|
23 |
|
|
/* Set the alias set of MEM to SET. */
|
24 |
|
|
extern void set_mem_alias_set (rtx, alias_set_type);
|
25 |
|
|
|
26 |
|
|
/* Set the alignment of MEM to ALIGN bits. */
|
27 |
|
|
extern void set_mem_align (rtx, unsigned int);
|
28 |
|
|
|
29 |
|
|
/* Set the address space of MEM to ADDRSPACE. */
|
30 |
|
|
extern void set_mem_addr_space (rtx, addr_space_t);
|
31 |
|
|
|
32 |
|
|
/* Set the expr for MEM to EXPR. */
|
33 |
|
|
extern void set_mem_expr (rtx, tree);
|
34 |
|
|
|
35 |
|
|
/* Set the offset for MEM to OFFSET. */
|
36 |
|
|
extern void set_mem_offset (rtx, HOST_WIDE_INT);
|
37 |
|
|
|
38 |
|
|
/* Clear the offset recorded for MEM. */
|
39 |
|
|
extern void clear_mem_offset (rtx);
|
40 |
|
|
|
41 |
|
|
/* Set the size for MEM to SIZE. */
|
42 |
|
|
extern void set_mem_size (rtx, HOST_WIDE_INT);
|
43 |
|
|
|
44 |
|
|
/* Clear the size recorded for MEM. */
|
45 |
|
|
extern void clear_mem_size (rtx);
|
46 |
|
|
|
47 |
|
|
/* Set the attributes for MEM appropriate for a spill slot. */
|
48 |
|
|
extern void set_mem_attrs_for_spill (rtx);
|
49 |
|
|
extern tree get_spill_slot_decl (bool);
|
50 |
|
|
|
51 |
|
|
/* Return a memory reference like MEMREF, but with its address changed to
|
52 |
|
|
ADDR. The caller is asserting that the actual piece of memory pointed
|
53 |
|
|
to is the same, just the form of the address is being changed, such as
|
54 |
|
|
by putting something into a register. */
|
55 |
|
|
extern rtx replace_equiv_address (rtx, rtx);
|
56 |
|
|
|
57 |
|
|
/* Likewise, but the reference is not required to be valid. */
|
58 |
|
|
extern rtx replace_equiv_address_nv (rtx, rtx);
|
59 |
|
|
|
60 |
|
|
extern rtx gen_blockage (void);
|
61 |
|
|
extern rtvec gen_rtvec (int, ...);
|
62 |
|
|
extern rtx copy_insn_1 (rtx);
|
63 |
|
|
extern rtx copy_insn (rtx);
|
64 |
|
|
extern rtx gen_int_mode (HOST_WIDE_INT, enum machine_mode);
|
65 |
|
|
extern rtx emit_copy_of_insn_after (rtx, rtx);
|
66 |
|
|
extern void set_reg_attrs_from_value (rtx, rtx);
|
67 |
|
|
extern void set_reg_attrs_for_parm (rtx, rtx);
|
68 |
|
|
extern void set_reg_attrs_for_decl_rtl (tree t, rtx x);
|
69 |
|
|
extern void adjust_reg_mode (rtx, enum machine_mode);
|
70 |
|
|
extern int mem_expr_equal_p (const_tree, const_tree);
|
71 |
|
|
|
72 |
|
|
/* Return the first insn of the current sequence or current function. */
|
73 |
|
|
|
74 |
|
|
static inline rtx
|
75 |
|
|
get_insns (void)
|
76 |
|
|
{
|
77 |
|
|
return crtl->emit.x_first_insn;
|
78 |
|
|
}
|
79 |
|
|
|
80 |
|
|
/* Specify a new insn as the first in the chain. */
|
81 |
|
|
|
82 |
|
|
static inline void
|
83 |
|
|
set_first_insn (rtx insn)
|
84 |
|
|
{
|
85 |
|
|
gcc_checking_assert (!insn || !PREV_INSN (insn));
|
86 |
|
|
crtl->emit.x_first_insn = insn;
|
87 |
|
|
}
|
88 |
|
|
|
89 |
|
|
/* Return the last insn emitted in current sequence or current function. */
|
90 |
|
|
|
91 |
|
|
static inline rtx
|
92 |
|
|
get_last_insn (void)
|
93 |
|
|
{
|
94 |
|
|
return crtl->emit.x_last_insn;
|
95 |
|
|
}
|
96 |
|
|
|
97 |
|
|
/* Specify a new insn as the last in the chain. */
|
98 |
|
|
|
99 |
|
|
static inline void
|
100 |
|
|
set_last_insn (rtx insn)
|
101 |
|
|
{
|
102 |
|
|
gcc_checking_assert (!insn || !NEXT_INSN (insn));
|
103 |
|
|
crtl->emit.x_last_insn = insn;
|
104 |
|
|
}
|
105 |
|
|
|
106 |
|
|
/* Return a number larger than any instruction's uid in this function. */
|
107 |
|
|
|
108 |
|
|
static inline int
|
109 |
|
|
get_max_uid (void)
|
110 |
|
|
{
|
111 |
|
|
return crtl->emit.x_cur_insn_uid;
|
112 |
|
|
}
|
113 |
|
|
#endif /* GCC_EMIT_RTL_H */
|