[AArch64] PR target/65491: Classify V1TF vectors as AAPCS64 short vectors rather...
[official-gcc.git] / gcc / go / go-backend.c
blob66ecee75ce9d8dad7c84efcf1c26fb6336a57abe
1 /* go-backend.c -- Go frontend interface to gcc backend.
2 Copyright (C) 2010-2015 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 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "simple-object.h"
24 #include "tm.h"
25 #include "hash-set.h"
26 #include "machmode.h"
27 #include "vec.h"
28 #include "double-int.h"
29 #include "input.h"
30 #include "alias.h"
31 #include "symtab.h"
32 #include "wide-int.h"
33 #include "inchash.h"
34 #include "tree.h"
35 #include "stor-layout.h"
36 #include "tm_p.h"
37 #include "intl.h"
38 #include "output.h" /* for assemble_string */
39 #include "target.h"
40 #include "common/common-target.h"
41 #include "diagnostic.h"
43 #include "go-c.h"
45 /* The segment name we pass to simple_object_start_read to find Go
46 export data. */
48 #ifndef GO_EXPORT_SEGMENT_NAME
49 #define GO_EXPORT_SEGMENT_NAME "__GNU_GO"
50 #endif
52 /* The section name we use when reading and writing export data. */
54 #ifndef GO_EXPORT_SECTION_NAME
55 #define GO_EXPORT_SECTION_NAME ".go_export"
56 #endif
58 /* This file holds all the cases where the Go frontend needs
59 information from gcc's backend. */
61 /* Return whether or not GCC has reported any errors. */
63 bool
64 saw_errors (void)
66 return errorcount != 0 || sorrycount != 0;
69 /* Return the alignment in bytes of a struct field of type T. */
71 unsigned int
72 go_field_alignment (tree t)
74 unsigned int v;
76 v = TYPE_ALIGN (t);
78 #ifdef BIGGEST_FIELD_ALIGNMENT
79 if (v > BIGGEST_FIELD_ALIGNMENT)
80 v = BIGGEST_FIELD_ALIGNMENT;
81 #endif
83 #ifdef ADJUST_FIELD_ALIGN
85 tree field ATTRIBUTE_UNUSED;
86 field = build_decl (UNKNOWN_LOCATION, FIELD_DECL, NULL, t);
87 v = ADJUST_FIELD_ALIGN (field, v);
89 #endif
91 return v / BITS_PER_UNIT;
94 /* Return the size and alignment of a trampoline. */
96 void
97 go_trampoline_info (unsigned int *size, unsigned int *alignment)
99 *size = TRAMPOLINE_SIZE;
100 *alignment = TRAMPOLINE_ALIGNMENT;
103 /* This is called by the Go frontend proper if the unsafe package was
104 imported. When that happens we can not do type-based alias
105 analysis. */
107 void
108 go_imported_unsafe (void)
110 flag_strict_aliasing = false;
112 /* Let the backend know that the options have changed. */
113 targetm.override_options_after_change ();
116 /* This is called by the Go frontend proper to add data to the
117 section containing Go export data. */
119 void
120 go_write_export_data (const char *bytes, unsigned int size)
122 static section* sec;
124 if (sec == NULL)
126 gcc_assert (targetm_common.have_named_sections);
127 sec = get_section (GO_EXPORT_SECTION_NAME, SECTION_DEBUG, NULL);
130 switch_to_section (sec);
131 assemble_string (bytes, size);
134 /* The go_read_export_data function is called by the Go frontend
135 proper to read Go export data from an object file. FD is a file
136 descriptor open for reading. OFFSET is the offset within the file
137 where the object file starts; this will be 0 except when reading an
138 archive. On success this returns NULL and sets *PBUF to a buffer
139 allocated using malloc, of size *PLEN, holding the export data. If
140 the data is not found, this returns NULL and sets *PBUF to NULL and
141 *PLEN to 0. If some error occurs, this returns an error message
142 and sets *PERR to an errno value or 0 if there is no relevant
143 errno. */
145 const char *
146 go_read_export_data (int fd, off_t offset, char **pbuf, size_t *plen,
147 int *perr)
149 simple_object_read *sobj;
150 const char *errmsg;
151 off_t sec_offset;
152 off_t sec_length;
153 int found;
154 char *buf;
155 ssize_t c;
157 *pbuf = NULL;
158 *plen = 0;
160 sobj = simple_object_start_read (fd, offset, GO_EXPORT_SEGMENT_NAME,
161 &errmsg, perr);
162 if (sobj == NULL)
164 /* If we get an error here, just pretend that we didn't find any
165 export data. This is the right thing to do if the error is
166 that the file was not recognized as an object file. This
167 will ignore file I/O errors, but it's not too big a deal
168 because we will wind up giving some other error later. */
169 return NULL;
172 found = simple_object_find_section (sobj, GO_EXPORT_SECTION_NAME,
173 &sec_offset, &sec_length,
174 &errmsg, perr);
175 simple_object_release_read (sobj);
176 if (!found)
177 return errmsg;
179 if (lseek (fd, offset + sec_offset, SEEK_SET) < 0)
181 *perr = errno;
182 return _("lseek failed while reading export data");
185 buf = XNEWVEC (char, sec_length);
186 if (buf == NULL)
188 *perr = errno;
189 return _("memory allocation failed while reading export data");
192 c = read (fd, buf, sec_length);
193 if (c < 0)
195 *perr = errno;
196 free (buf);
197 return _("read failed while reading export data");
200 if (c < sec_length)
202 free (buf);
203 return _("short read while reading export data");
206 *pbuf = buf;
207 *plen = sec_length;
209 return NULL;