Remove assert in get_def_bb_for_const
[official-gcc.git] / gcc / go / go-backend.c
blob1c62495c38da46d95532e0821d6bd2fae608d364
1 /* go-backend.c -- Go frontend interface to gcc backend.
2 Copyright (C) 2010-2016 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 "target.h"
24 #include "tree.h"
25 #include "tm_p.h"
26 #include "diagnostic.h"
27 #include "simple-object.h"
28 #include "stor-layout.h"
29 #include "intl.h"
30 #include "output.h" /* for assemble_string */
31 #include "common/common-target.h"
34 /* The segment name we pass to simple_object_start_read to find Go
35 export data. */
37 #ifndef GO_EXPORT_SEGMENT_NAME
38 #define GO_EXPORT_SEGMENT_NAME "__GNU_GO"
39 #endif
41 /* The section name we use when reading and writing export data. */
43 #ifndef GO_EXPORT_SECTION_NAME
44 #define GO_EXPORT_SECTION_NAME ".go_export"
45 #endif
47 /* This file holds all the cases where the Go frontend needs
48 information from gcc's backend. */
50 /* Return whether or not GCC has reported any errors. */
52 bool
53 saw_errors (void)
55 return errorcount != 0 || sorrycount != 0;
58 /* Return the alignment in bytes of a struct field of type T. */
60 unsigned int
61 go_field_alignment (tree t)
63 unsigned int v;
65 v = TYPE_ALIGN (t);
67 #ifdef BIGGEST_FIELD_ALIGNMENT
68 if (v > BIGGEST_FIELD_ALIGNMENT)
69 v = BIGGEST_FIELD_ALIGNMENT;
70 #endif
72 #ifdef ADJUST_FIELD_ALIGN
74 tree field ATTRIBUTE_UNUSED;
75 field = build_decl (UNKNOWN_LOCATION, FIELD_DECL, NULL, t);
76 v = ADJUST_FIELD_ALIGN (field, v);
78 #endif
80 return v / BITS_PER_UNIT;
83 /* Return the size and alignment of a trampoline. */
85 void
86 go_trampoline_info (unsigned int *size, unsigned int *alignment)
88 *size = TRAMPOLINE_SIZE;
89 *alignment = TRAMPOLINE_ALIGNMENT;
92 /* This is called by the Go frontend proper if the unsafe package was
93 imported. When that happens we can not do type-based alias
94 analysis. */
96 void
97 go_imported_unsafe (void)
99 flag_strict_aliasing = false;
101 /* Let the backend know that the options have changed. */
102 targetm.override_options_after_change ();
105 /* This is called by the Go frontend proper to add data to the
106 section containing Go export data. */
108 void
109 go_write_export_data (const char *bytes, unsigned int size)
111 static section* sec;
113 if (sec == NULL)
115 gcc_assert (targetm_common.have_named_sections);
116 sec = get_section (GO_EXPORT_SECTION_NAME, SECTION_DEBUG, NULL);
119 switch_to_section (sec);
120 assemble_string (bytes, size);
123 /* The go_read_export_data function is called by the Go frontend
124 proper to read Go export data from an object file. FD is a file
125 descriptor open for reading. OFFSET is the offset within the file
126 where the object file starts; this will be 0 except when reading an
127 archive. On success this returns NULL and sets *PBUF to a buffer
128 allocated using malloc, of size *PLEN, holding the export data. If
129 the data is not found, this returns NULL and sets *PBUF to NULL and
130 *PLEN to 0. If some error occurs, this returns an error message
131 and sets *PERR to an errno value or 0 if there is no relevant
132 errno. */
134 const char *
135 go_read_export_data (int fd, off_t offset, char **pbuf, size_t *plen,
136 int *perr)
138 simple_object_read *sobj;
139 const char *errmsg;
140 off_t sec_offset;
141 off_t sec_length;
142 int found;
143 char *buf;
144 ssize_t c;
146 *pbuf = NULL;
147 *plen = 0;
149 sobj = simple_object_start_read (fd, offset, GO_EXPORT_SEGMENT_NAME,
150 &errmsg, perr);
151 if (sobj == NULL)
153 /* If we get an error here, just pretend that we didn't find any
154 export data. This is the right thing to do if the error is
155 that the file was not recognized as an object file. This
156 will ignore file I/O errors, but it's not too big a deal
157 because we will wind up giving some other error later. */
158 return NULL;
161 found = simple_object_find_section (sobj, GO_EXPORT_SECTION_NAME,
162 &sec_offset, &sec_length,
163 &errmsg, perr);
164 simple_object_release_read (sobj);
165 if (!found)
166 return errmsg;
168 if (lseek (fd, offset + sec_offset, SEEK_SET) < 0)
170 *perr = errno;
171 return _("lseek failed while reading export data");
174 buf = XNEWVEC (char, sec_length);
175 if (buf == NULL)
177 *perr = errno;
178 return _("memory allocation failed while reading export data");
181 c = read (fd, buf, sec_length);
182 if (c < 0)
184 *perr = errno;
185 free (buf);
186 return _("read failed while reading export data");
189 if (c < sec_length)
191 free (buf);
192 return _("short read while reading export data");
195 *pbuf = buf;
196 *plen = sec_length;
198 return NULL;