]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/ChangeLog
Fix Thumb2 testsuite fallout.
[thirdparty/gcc.git] / libgcc / ChangeLog
CommitLineData
19926161
NS
12014-07-29 Nathan Sidwell <nathan@acm.org>
2
3 * libgcov.h: Move renaming of entry points to lib gcov specific
4 portion.
5 (gcov_do_dump): New rename.
6 (gcov_rewrite): Remove inline, make HIDDEN.
7 * libgcov-driver.c (gcov_clear, gcov_exit): Remove declarations.
8 (gcov_exit_compute_summary): Rename to ...
9 (compute_summary): ... here. Add LIST argument.
10 (gcov_exit_merge_gcda): Rename to ...
11 (merge_one_data): ... here.
12 (gcov_exit_write_gcda): Rename to ...
13 (write_one_data): ... here.
14 (gcov_exit_merge_summary): Rename to ...
15 (merge_summary): Add RUN_COUNTED argument.
16 (gcov_exit_dump_gcov): Rename to ...
17 (dump_one_gcov): Add RUN_COUNTED argument.
18 (gcov_do_dump): New function, broken out of ...
19 (gcov_exit): ... here. Call it.
20
17522262
AG
212014-07-27 Anthony Green <green@moxielogic.com>
22
23 * config.host: Add moxiebox configuration suppport.
24
6dc33097
NS
252014-07-27 Nathan Sidwell <nathan@acm.org>
26
27 * libgcov-driver.c (struct gcov_filename_aux): Rename ...
28 (struct gcov_filename): ... here. Include buffer and max length
29 fields.
30 (gcov_max_filename): Remove.
31 (gi_filename): Remove.
32 (gcov_exit_compute_summary): Compute max filename here.
33 (gcov_exit_merge_gcda): Add filename parm, adjust.
34 (gcov_exit_merge_summary): Likewise.
35 (gcov_exit_dump_gcov): Adjust for struct gcov_filename changes.
36 (gcov_exit): Likewise.
37 (__gcov_init): Don't calculate max length here.
38 * libgcov_util.c (max_filename_len): Remove.
39 (read_gcda_file): Don't calculate max length here.
40 (gcov_read_profile_dir): Don't propagate here.
41 * libgcov-driver-system.c (alloc_filename_struct): Adjust for
42 struct gcov_filename changes.
43 (gcov_exit_open_gcda_file): Likewise.
44
770f687d
NS
452014-07-25 Nathan Sidwell <nathan@acm.org>
46
47 * libgcov-driver.c (set_gcov_dump_complete,
48 reset_gcov_dump_complete, get_gcov_dump_complete): Remove global
49 functions polluting user's namespace.
50 (gcov_exit): Set variable directly.
51 (gcov_clear): Reset variable directly.
52 * libgcov-interface.c (get_gcov_dymp_complete,
53 reset_gov_dump_complete): Remove declarations.
54 (__gcov_reset, __gcov_dump): Don't call them.
55
fabf71ba
DD
562014-07-24 DJ Delorie <dj@redhat.com>
57
58 * config/i386/cygming-crtbegin.c (deregister_frame_fn): Newly public.
770f687d
NS
59 (__gcc_deregister_frame): Move logic to detect deregister function
60 to ...
61 (__gcc_register_frame): here, so it's consistent with the register
62 logic.
fabf71ba 63
d10ee722
NS
642014-07-23 Nathan Sidwell <nathan@acm.org>
65
66 * libgcov-driver.c (set_gcov_list): Remove.
67 (gcov_list): Make non-static in GCOV_TOOL.
68 * libgcov.h (GCOV_TOOL_LINKAGE): Remove unused #define.
69
a4137090
JDA
702014-07-17 John David Anglin <danglin@gcc.gnu.org>
71
72 * config/pa/linux-atomic.c (__sync_lock_release_4): New.
73 (SYNC_LOCK_RELEASE): Update to use __kernel_cmpxchg for release.
74 Don't use SYNC_LOCK_RELEASE for int type.
75
72602c6c
RB
762014-07-14 Richard Biener <rguenther@suse.de>
77
78 * libgcov.h (struct gcov_fn_info): Make ctrs size 1.
79
d5313205
RX
802014-07-11 Rong Xu <xur@google.com>
81
82 * libgcov-util.c (gcov_max_filename): Fix declartion.
83
c77556a5
RX
842014-07-10 Rong Xu <xur@google.com>
85
86 Add gcov-tool: an offline gcda profile processing tool
87 Support.
88 * libgcov-driver.c (gcov_max_filename): Make available
89 to gcov-tool.
90 * libgcov-merge.c (__gcov_merge_add): Replace
91 gcov_read_counter() with a Macro.
92 (__gcov_merge_ior): Ditto.
93 (__gcov_merge_time_profile): Ditto.
94 (__gcov_merge_single): Ditto.
95 (__gcov_merge_delta): Ditto.
96 * libgcov-util.c (void gcov_set_verbose): Set the verbose flag
97 in the utility functions.
98 (set_fn_ctrs): Utility function for reading gcda files to in-memory
99 gcov_list object link lists.
100 (tag_function): Ditto.
101 (tag_blocks): Ditto.
102 (tag_arcs): Ditto.
103 (tag_lines): Ditto.
104 (tag_counters): Ditto.
105 (tag_summary): Ditto.
106 (read_gcda_finalize): Ditto.
107 (read_gcda_file): Ditto.
108 (ftw_read_file): Ditto.
109 (read_profile_dir_init): Ditto.
110 (gcov_read_profile_dir): Ditto.
111 (gcov_read_counter_mem): Ditto.
112 (gcov_get_merge_weight): Ditto.
113 (merge_wrapper): A wrapper function that calls merging handler.
114 (gcov_merge): Merge two gcov_info objects with weights.
115 (find_match_gcov_info): Find the matched gcov_info in the list.
116 (gcov_profile_merge): Merge two gcov_info object lists.
117 (__gcov_add_counter_op): Process edge profile counter values.
118 (__gcov_ior_counter_op): Process IOR profile counter values.
119 (__gcov_delta_counter_op): Process delta profile counter values.
120 (__gcov_single_counter_op): Process single profile counter values.
121 (fp_scale): Callback function for float-point scaling.
122 (int_scale): Callback function for integer fraction scaling.
123 (gcov_profile_scale): Scaling profile counters.
124 (gcov_profile_normalize): Normalize profile counters.
125 * libgcov.h: Add headers and functions for gcov-tool use.
126 (gcov_get_counter): New.
127 (gcov_get_counter_target): Ditto.
128 (struct gcov_info): Make the functions field mutable in gcov-tool
129 compilation.
130
5c7dac8a
KT
1312014-06-23 Kai Tietz <ktietz@redhat.com>
132
133 PR libgcc/61585
134 * unwind-seh.c (_Unwind_GetGR): Check for proper
135 index range.
136 (_Unwind_SetGR): Likewise.
137
161c9312
NC
1382014-05-22 Nick Clifton <nickc@redhat.com>
139
140 * config/msp430/t-msp430 (HOST_LIBGCC2_CFLAGS): Add
141 -mhwmult=none.
142
e3f0315f
TJ
1432014-05-22 Teresa Johnson <tejohnson@google.com>
144
145 * libgcov-driver.c (gcov_error): Move declaration before gcov-io.c
146 include.
147
dbed5a9b
JM
1482014-05-20 John Marino <gnugcc@marino.st>
149
150 * config.host (*-*-dragonfly*): New target.
151 * crtstuff.c: Make dl_iterate_support generic on *bsd.
152 * enable-execute-stack-mprotect.c: Always mprotect on FreeBSD.
153 * unwind-dw2-fde-dip.c: Add dl_iterate_phr support for DragonFly.
154 * config/i386/dragonfly-unwind.h: New.
155
1ec380e5
MR
1562014-05-21 Maciej W. Rozycki <macro@codesourcery.com>
157
158 PR libgcc/60166
159 * config/arm/sfp-machine.h (_FP_NANFRAC_H, _FP_NANFRAC_S)
160 (_FP_NANFRAC_D, _FP_NANSIGN_Q): Set the quiet bit.
161
54fde020
BE
1622014-05-13 Bernd Edlinger <bernd.edlinger@hotmail.de>
163
164 * unwind-seh.c (_Unwind_Backtrace): Uncommented, finished
165 implementation.
166
999db125
GJL
1672014-05-12 Georg-Johann Lay <avr@gjlay.de>
168
169 * config/arm/bpabi-lib.h (License): Add GCC Runtime Library Exception.
170
cceaf54a
RO
1712014-05-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
172
173 PR libgcc/61097
174 * config/t-slibgcc-sld: Only build and install libgcc-unwind.map
175 if --enable-shared.
176
e3fe9b5b
BE
1772014-04-30 Bernd Edlinger <bernd.edlinger@hotmail.de>
178
179 Work around for current cygwin32 build problems.
180 * config/i386/cygming-crtbegin.c (__register_frame_info,
181 __deregister_frame_info, _Jv_RegisterClasses): Compile weak default
182 functions only for 64-bit systems.
183
54cf37e9
RO
1842014-04-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
185
186 * config/i386/crtfastmath.c [!__x86_64__ && __sun__ && __svr4__]
187 (sigill_caught, sigill_hdlr): Remove.
188
d9f069ab
RO
1892014-04-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
190
191 * config/i386/crtfastmath.c (set_fast_math): Remove SSE execution
192 check.
193 * config/i386/sol2-unwind.h (x86_fallback_frame_state): Remove
194 Solaris 9 single-threaded support.
195 * config/sparc/sol2-unwind.h (sparc64_is_sighandler): Remove
196 Solaris 9 single-threaded support. Add call_user_handler code
197 sequences.
198 (sparc_is_sighandler): Likewise.
199
59976ef8
AK
2002014-03-27 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
201
202 * config.host: Append t-floattodi to tmake_file depending on
203 host_address.
204
d02bbcf3
JS
2052014-03-20 Joel Sherrill <joel.sherrill@oarcorp.com>
206
31466bc0 207 * config.host (v850*-*-*): Add to tmake_file instead of resetting it.
d02bbcf3 208
c2e7e597
UB
2092014-03-10 Uros Bizjak <ubizjak@gmail.com>
210
211 PR libgcc/60472
212 * crtstuff.c (frame_dummy): Use void **jcr_list temporary
213 variable to avoid array subscript is above array bounds warnings.
214 Use __builtin_expect when checking *jcr_list for NULL.
215
227a7dc8
RO
2162014-03-06 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
217
218 PR libgcc/59339
219 * config.host (*-*-linux*, frv-*-*linux*, *-*-kfreebsd*-gnu)
220 (*-*-knetbsd*-gnu, *-*-gnu*, *-*-kopensolaris*-gnu): Only add
221 vtv_*.o to extra_parts if enable_vtable_verify.
222
df2b279c
NC
2232014-03-06 Nick Clifton <nickc@redhat.com>
224
225 * config/msp430/t-msp430 (LIB2ADD): Add lib2hw_mul.S
226 * config/msp430/lib2hw_mul.S: New: Hardware multiply routines.
227
dc11d79b
JY
2282014-02-28 Joey Ye <joey.ye@arm.com>
229
230 PR libgcc/60166
231 * config/arm/sfp-machine.h (_FP_NANFRAC_H,
232 _FP_NANFRAC_S, _FP_NANFRAC_D, _FP_NANFRAC_Q):
233 Set to zero.
234
341c653c
WL
2352014-02-24 Walter Lee <walt@tilera.com>
236
237 * config.host: Support "tilegx*" and "tilepro*" triplets.
238 * config/tilegx/sfp-machine32.h (__BYTE_ORDER): Handle big endian.
239 * config/tilegx/sfp-machine64.h (__BYTE_ORDER): Handle big endian.
240
95ce7613
CLT
2412014-02-20 Sandra Loosemore <sandra@codesourcery.com>
242 Chung-Lin Tang <cltang@codesourcery.com>
243
244 * config/nios2/t-nios2 (CRTSTUFF_T_CFLAGS): Add -mno-gpopt.
245 * config/nios2/crti.S: Remove .file directive.
246 * config/nios2/crtn.S: Likewise.
247
0bb4fc05
KT
2482014-02-18 Kai Tietz <ktietz@redhat.com>
249 Jonathan Schleifer <js@webkeks.org>
250
251 PR objc/56870
252 * unwind-seh.c (_GCC_specific_handler): Pass proper
253 value to unwind-handler.
254
9acf28f1
JM
2552014-02-12 Joseph Myers <joseph@codesourcery.com>
256
257 * soft-fp/adddf3.c: Update from glibc.
258 * soft-fp/addsf3.c: Likewise.
259 * soft-fp/addtf3.c: Likewise.
260 * soft-fp/divdf3.c: Likewise.
261 * soft-fp/divsf3.c: Likewise.
262 * soft-fp/divtf3.c: Likewise.
263 * soft-fp/double.h: Likewise.
264 * soft-fp/eqdf2.c: Likewise.
265 * soft-fp/eqsf2.c: Likewise.
266 * soft-fp/eqtf2.c: Likewise.
267 * soft-fp/extenddftf2.c: Likewise.
268 * soft-fp/extended.h: Likewise.
269 * soft-fp/extendsfdf2.c: Likewise.
270 * soft-fp/extendsftf2.c: Likewise.
271 * soft-fp/extendxftf2.c: Likewise.
272 * soft-fp/fixdfdi.c: Likewise.
273 * soft-fp/fixdfsi.c: Likewise.
274 * soft-fp/fixdfti.c: Likewise.
275 * soft-fp/fixsfdi.c: Likewise.
276 * soft-fp/fixsfsi.c: Likewise.
277 * soft-fp/fixsfti.c: Likewise.
278 * soft-fp/fixtfdi.c: Likewise.
279 * soft-fp/fixtfsi.c: Likewise.
280 * soft-fp/fixtfti.c: Likewise.
281 * soft-fp/fixunsdfdi.c: Likewise.
282 * soft-fp/fixunsdfsi.c: Likewise.
283 * soft-fp/fixunsdfti.c: Likewise.
284 * soft-fp/fixunssfdi.c: Likewise.
285 * soft-fp/fixunssfsi.c: Likewise.
286 * soft-fp/fixunssfti.c: Likewise.
287 * soft-fp/fixunstfdi.c: Likewise.
288 * soft-fp/fixunstfsi.c: Likewise.
289 * soft-fp/fixunstfti.c: Likewise.
290 * soft-fp/floatdidf.c: Likewise.
291 * soft-fp/floatdisf.c: Likewise.
292 * soft-fp/floatditf.c: Likewise.
293 * soft-fp/floatsidf.c: Likewise.
294 * soft-fp/floatsisf.c: Likewise.
295 * soft-fp/floatsitf.c: Likewise.
296 * soft-fp/floattidf.c: Likewise.
297 * soft-fp/floattisf.c: Likewise.
298 * soft-fp/floattitf.c: Likewise.
299 * soft-fp/floatundidf.c: Likewise.
300 * soft-fp/floatundisf.c: Likewise.
301 * soft-fp/floatunditf.c: Likewise.
302 * soft-fp/floatunsidf.c: Likewise.
303 * soft-fp/floatunsisf.c: Likewise.
304 * soft-fp/floatunsitf.c: Likewise.
305 * soft-fp/floatuntidf.c: Likewise.
306 * soft-fp/floatuntisf.c: Likewise.
307 * soft-fp/floatuntitf.c: Likewise.
308 * soft-fp/gedf2.c: Likewise.
309 * soft-fp/gesf2.c: Likewise.
310 * soft-fp/getf2.c: Likewise.
311 * soft-fp/ledf2.c: Likewise.
312 * soft-fp/lesf2.c: Likewise.
313 * soft-fp/letf2.c: Likewise.
314 * soft-fp/muldf3.c: Likewise.
315 * soft-fp/mulsf3.c: Likewise.
316 * soft-fp/multf3.c: Likewise.
317 * soft-fp/negdf2.c: Likewise.
318 * soft-fp/negsf2.c: Likewise.
319 * soft-fp/negtf2.c: Likewise.
320 * soft-fp/op-1.h: Likewise.
321 * soft-fp/op-2.h: Likewise.
322 * soft-fp/op-4.h: Likewise.
323 * soft-fp/op-8.h: Likewise.
324 * soft-fp/op-common.h: Likewise.
325 * soft-fp/quad.h: Likewise.
326 * soft-fp/single.h: Likewise.
327 * soft-fp/soft-fp.h: Likewise.
328 * soft-fp/subdf3.c: Likewise.
329 * soft-fp/subsf3.c: Likewise.
330 * soft-fp/subtf3.c: Likewise.
331 * soft-fp/truncdfsf2.c: Likewise.
332 * soft-fp/trunctfdf2.c: Likewise.
333 * soft-fp/trunctfsf2.c: Likewise.
334 * soft-fp/trunctfxf2.c: Likewise.
335 * soft-fp/unorddf2.c: Likewise.
336 * soft-fp/unordsf2.c: Likewise.
337 * soft-fp/unordtf2.c: Likewise.
338 * config/aarch64/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING): New
339 macro.
340 * config/arm/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
341 Likewise.
342 * config/c6x/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
343 Likewise.
344 * config/cris/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
345 Likewise.
346 * config/i386/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
347 Likewise.
348 * config/ia64/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
349 Likewise.
350 * config/lm32/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
351 Likewise.
352 * config/mips/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
353 Likewise.
354 * config/moxie/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
355 Likewise.
356 * config/nds32/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
357 Likewise.
358 * config/nios2/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
359 Likewise.
360 * config/rs6000/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
361 Likewise.
362 * config/score/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
363 Likewise.
364 * config/tilegx/sfp-machine32.h (_FP_TININESS_AFTER_ROUNDING):
365 Likewise.
366 * config/tilegx/sfp-machine64.h (_FP_TININESS_AFTER_ROUNDING):
367 Likewise.
368 * config/tilepro/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
369 Likewise.
370
ce245ec6
AK
3712014-02-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
372
373 * config/s390/32/_fixdfdi.c: Throw invalid exception if number
374 cannot be represented.
375 * config/s390/32/_fixsfdi.c: Likewise.
376 * config/s390/32/_fixtfdi.c: Likewise.
377 * config/s390/32/_fixunsdfdi.c: Likewise.
378 * config/s390/32/_fixunssfdi.c: Likewise.
379 * config/s390/32/_fixunstfdi.c: Likewise.
380
1c51d688
RS
3812014-02-07 Richard Sandiford <rdsandiford@googlemail.com>
382
383 * configure.ac (libgcc_cv_mips_hard_float): New.
384 * configure: Regenerate.
385 * config.host (mips*-*-*): Use t-hardfp-sfdf rather than
386 t-softfp-sfdf for hard-float targets.
387 * config/mips/t-mips (LIB2_SIDITI_CONV_FUNCS): Reinstate.
388 (softfp_float_modes, softfp_int_modes, softfp_extensions)
389 (softfp_truncations, softfp_exclude_libgcc2): New.
390 * config/t-hardfp: New file.
391 * config/t-hardfp-sfdf: Likewise.
392 * config/hardfp.c: Likewise.
393
bbf391db
AK
3942014-02-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
395
396 * config.host: Include t-floattodi also for s390x.
397 * config/s390/32/_fixdfdi.c: Omit in 64 bit mode.
398 * config/s390/32/_fixsfdi.c: Likewise.
399 * config/s390/32/_fixtfdi.c: Likewise.
400 * config/s390/32/_fixunsdfdi.c: Likewise.
401 * config/s390/32/_fixunssfdi.c: Likewise.
402 * config/s390/32/_fixunstfdi.c: Likewise.
403
91da0481
RO
4042014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
405
406 PR target/59788
407 * config/t-slibgcc-sld (libgcc-unwind.map): New target.
408 (install-libgcc-unwind-map-forbuild): New target.
409 (all): Depend on install-libgcc-unwind-map-forbuild.
410 (install-libgcc-unwind-map): New target.
411 (install): Depend on install-libgcc-unwind-map.
412
02b67731
SL
4132014-02-02 Sandra Loosemore <sandra@codesourcery.com>
414
415 * config/nios2/crti.S (_init): Initialize GOT pointer from
416 _gp_got instead of _GLOBAL_OFFSET_TABLE_.
417
1ea0a651
RS
4182014-02-02 Richard Sandiford <rdsandiford@googlemail.com>
419
420 * configure.ac: Check __mips64 when setting host_address.
421 * configure: Regenerate.
422 * config.host (mips*-*-*): Add t-softfp-sfdf, mips/t-softfp-tf,
423 mips/t-mips64 and t-softfp.
424 (mips*-*-linux*): Don't add mips/t-tpbit.
425 * config/mips/t-mips (LIB2_SIDITI_CONV_FUNCS, FPBIT, FPBIT_CFLAGS)
426 (DPBIT, DPBIT_CFLAGS): Delete.
427 * config/mips/sfp-machine.h: New file.
428 * config/mips/t-mips64: Likewise.
429 * config/mips/t-softfp-tf: Likewise.
430 * config/mips/t-tpbit: Delete.
431
f32b0061
MS
4322014-01-29 Marcus Shawcroft <marcus.shawcroft@arm.com>
433
434 * config/aarch64/sfp-machine.h (_FP_I_TYPE): Define
435 as long long.
436
a5420aa4
WL
4372014-01-25 Walter Lee <walt@tilera.com>
438
439 * config/tilepro/atomic.c: Include tconfig.h. Don't include
440 config.h or system.h.
441 (bool) Define.
442
24534912
WL
4432014-01-25 Walter Lee <walt@tilera.com>
444
445 * config/tilepro/atomic.c (pre_atomic_barrier): Mark inline.
446 (post_atomic_barrier): Ditto.
447 (__fetch_and_do): New macro.
448 (__atomic_fetch_and_do): Use __fetch_and_do.
449 (__sync_fetch_and_do): New macro.
450 (__sync_fetch_and_add_4): New function.
451 (__sync_fetch_and_sub_4): New function.
452 (__sync_fetch_and_or_4): New function.
453 (__sync_fetch_and_and_4): New function.
454 (__sync_fetch_and_xor_4): New function.
455 (__sync_fetch_and_nand_4): New function.
456 (__sync_fetch_and_add_8): New function.
457 (__sync_fetch_and_sub_8): New function.
458 (__sync_fetch_and_or_8): New function.
459 (__sync_fetch_and_and_8): New function.
460 (__sync_fetch_and_xor_8): New function.
461 (__sync_fetch_and_nand_8): New function.
462 (__do_and_fetch): New macro.
463 (__atomic_do_and_fetch): Use __do_and_fetch.
464 (__sync_do_and_fetch): New macro.
465 (__sync_add_and_fetch_4): New function.
466 (__sync_sub_and_fetch_4): New function.
467 (__sync_or_and_fetch_4): New function.
468 (__sync_and_and_fetch_4): New function.
469 (__sync_xor_and_fetch_4): New function.
470 (__sync_nand_and_fetch_4): New function.
471 (__sync_add_and_fetch_8): New function.
472 (__sync_sub_and_fetch_8): New function.
473 (__sync_or_and_fetch_8): New function.
474 (__sync_and_and_fetch_8): New function.
475 (__sync_xor_and_fetch_8): New function.
476 (__sync_nand_and_fetch_8): New function.
477 (__sync_exchange_methods): New macro.
478 (__sync_val_compare_and_swap_4): New function.
479 (__sync_bool_compare_and_swap_4): New function.
480 (__sync_lock_test_and_test_4): New function.
481 (__sync_val_compare_and_swap_8): New function.
482 (__sync_bool_compare_and_swap_8): New function.
483 (__sync_lock_test_and_test_8): New function.
484 (__subword_cmpxchg_body): New macro.
485 (__atomic_compare_exchange_1): Use __subword_cmpxchg_body.
486 (__atomic_compare_exchange_2): Ditto.
487 (__sync_subword_cmpxchg): New macro.
488 (__sync_val_compare_and_swap_1): New function.
489 (__sync_bool_compare_and_swap_1): New function.
490 (__sync_val_compare_and_swap_2): New function.
491 (__sync_bool_compare_and_swap_2): New function.
492 (__atomic_subword): Rename to ...
493 (__subword): ... New name.
494 (__atomic_subword_fetch): Use __subword.
495 (__sync_subword_fetch): New macro.
496 (__sync_fetch_and_add_1): New function.
497 (__sync_fetch_and_sub_1): New function.
498 (__sync_fetch_and_or_1): New function.
499 (__sync_fetch_and_and_1): New function.
500 (__sync_fetch_and_xor_1): New function.
501 (__sync_fetch_and_nand_1): New function.
502 (__sync_fetch_and_add_2): New function.
503 (__sync_fetch_and_sub_2): New function.
504 (__sync_fetch_and_or_2): New function.
505 (__sync_fetch_and_and_2): New function.
506 (__sync_fetch_and_xor_2): New function.
507 (__sync_fetch_and_nand_2): New function.
508 (__sync_add_and_fetch_1): New function.
509 (__sync_sub_and_fetch_1): New function.
510 (__sync_or_and_fetch_1): New function.
511 (__sync_and_and_fetch_1): New function.
512 (__sync_xor_and_fetch_1): New function.
513 (__sync_nand_and_fetch_1): New function.
514 (__sync_add_and_fetch_2): New function.
515 (__sync_sub_and_fetch_2): New function.
516 (__sync_or_and_fetch_2): New function.
517 (__sync_and_and_fetch_2): New function.
518 (__sync_xor_and_fetch_2): New function.
519 (__sync_nand_and_fetch_2): New function.
520 (__atomic_subword_lock): Use __subword.
521 (__sync_subword_lock): New macro.
522 (__sync_lock_test_and_set_1): New function.
523 (__sync_lock_test_and_set_2): New function.
524
4d6d3bc5
WL
5252014-01-25 Walter Lee <walt@tilera.com>
526
527 * config/tilepro/atomic.c (BIT_OFFSET): Define.
528 (__atomic_subword_cmpxchg): Use BIT_OFFSET.
529 (__atomic_subword): Ditto.
530
cbd9890e
WL
5312014-01-25 Walter Lee <walt@tilera.com>
532
533 * config/tilepro/atomic.c (__atomic_do_and_fetch): Add
534 a prefix op argument.
535 (__atomic_nand_fetch_4): Add prefix op.
536 (__atomic_nand_fetch_8): Ditto.
537
8fc36b15 5382014-01-21 Baruch Siach <barch@tkos.co.il>
800d8bd5
BS
539
540 * config.host (tmake_file): add t-slibgcc-libgcc for xtensa*-*-linux*.
541
46dd1242
L
5422014-01-09 Rong Xu <xur@google.com>
543
544 * libgcov-driver.c (this_prg): make it local to save
545 bss space.
546 (gcov_exit_compute_summary): Ditto.
547 (gcov_exit_merge_gcda): Ditto.
548 (gcov_exit_merge_summary): Ditto.
549 (gcov_exit_dump_gcov): Ditto.
550
40d6b753
RX
5512014-01-08 Rong Xu <xur@google.com>
552
553 * libgcov-driver.c: Use libgcov.h.
554 (buffer_fn_data): Use xmalloc instead of malloc.
555 (gcov_exit_merge_gcda): Ditto.
556 * libgcov-driver-system.c (allocate_filename_struct): Ditto.
557 * libgcov.h: New common header files for libgcov-*.h.
558 * libgcov-interface.c: Use libgcov.h
559 * libgcov-merge.c: Ditto.
560 * libgcov-profiler.c: Ditto.
561 * Makefile.in: Add dependence to libgcov.h
562
a02e7bdd
JM
5632014-01-02 Joseph Myers <joseph@codesourcery.com>
564
565 * config/rs6000/ibm-ldouble.c (__gcc_qdiv): Scale up arguments in
566 case of small numerator and finite nonzero result.
567
ac1dca3c
RS
5682014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
569
570 Update copyright years
571
f9030485
RS
5722014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
573
574 * config/arc/asm.h, config/arc/crtg.S, config/arc/crtgend.S,
575 config/arc/crti.S, config/arc/crtn.S, config/arc/divtab-arc700.c,
576 config/arc/dp-hack.h, config/arc/fp-hack.h,
577 config/arc/ieee-754/adddf3.S, config/arc/ieee-754/addsf3.S,
578 config/arc/ieee-754/arc600-dsp/divdf3.S,
579 config/arc/ieee-754/arc600-dsp/divsf3.S,
580 config/arc/ieee-754/arc600-dsp/muldf3.S,
581 config/arc/ieee-754/arc600-dsp/mulsf3.S,
582 config/arc/ieee-754/arc600-mul64/divdf3.S,
583 config/arc/ieee-754/arc600-mul64/divsf3.S,
584 config/arc/ieee-754/arc600-mul64/muldf3.S,
585 config/arc/ieee-754/arc600-mul64/mulsf3.S,
586 config/arc/ieee-754/arc600/divsf3.S,
587 config/arc/ieee-754/arc600/mulsf3.S,
588 config/arc/ieee-754/divdf3.S, config/arc/ieee-754/divsf3-stdmul.S,
589 config/arc/ieee-754/divsf3.S, config/arc/ieee-754/divtab-arc-df.c,
590 config/arc/ieee-754/divtab-arc-sf.c, config/arc/ieee-754/eqdf2.S,
591 config/arc/ieee-754/eqsf2.S, config/arc/ieee-754/extendsfdf2.S,
592 config/arc/ieee-754/fixdfsi.S, config/arc/ieee-754/fixsfsi.S,
593 config/arc/ieee-754/fixunsdfsi.S, config/arc/ieee-754/floatsidf.S,
594 config/arc/ieee-754/floatsisf.S, config/arc/ieee-754/floatunsidf.S,
595 config/arc/ieee-754/gedf2.S, config/arc/ieee-754/gesf2.S,
596 config/arc/ieee-754/gtdf2.S, config/arc/ieee-754/gtsf2.S,
597 config/arc/ieee-754/muldf3.S, config/arc/ieee-754/mulsf3.S,
598 config/arc/ieee-754/orddf2.S, config/arc/ieee-754/ordsf2.S,
599 config/arc/ieee-754/truncdfsf2.S, config/arc/ieee-754/uneqdf2.S,
600 config/arc/ieee-754/uneqsf2.S, config/arc/initfini.c,
601 config/arc/lib1funcs.S, config/arc/t-arc, config/arc/t-arc-newlib,
602 config/cris/umulsidi3.S, config/msp430/cmpsi2.S,
603 config/msp430/epilogue.S, config/msp430/lib2bitcountHI.c,
604 config/msp430/lib2divHI.c, config/msp430/lib2divQI.c,
605 config/msp430/lib2divSI.c, config/msp430/lib2mul.c,
606 config/msp430/msp430-divmod.h, config/msp430/msp430-mul.h,
607 config/msp430/slli.S, config/msp430/srai.S, config/msp430/srli.S,
608 config/rl78/divmodhi.S, config/rl78/divmodqi.S, config/rl78/divmodsi.S,
609 config/rl78/signbit.S, vtv_end.c, vtv_end_preinit.c, vtv_start.c,
610 vtv_start_preinit.c: Use the standard form for the copyright notice.
611
e430824f
CLT
6122013-12-31 Sandra Loosemore <sandra@codesourcery.com>
613 Chung-Lin Tang <cltang@codesourcery.com>
614 Based on patches from Altera Corporation
615
616 * config.host (nios2-*-*,nios2-*-linux*): Add nios2 host cases.
617 * config/nios2/lib2-nios2.h: New file.
618 * config/nios2/lib2-divmod-hi.c: New file.
619 * config/nios2/linux-unwind.h: New file.
620 * config/nios2/lib2-divmod.c: New file.
621 * config/nios2/linux-atomic.c: New file.
622 * config/nios2/t-nios2: New file.
623 * config/nios2/crti.asm: New file.
624 * config/nios2/t-linux: New file.
625 * config/nios2/lib2-divtable.c: New file.
626 * config/nios2/lib2-mul.c: New file.
627 * config/nios2/tramp.c: New file.
628 * config/nios2/crtn.asm: New file.
629
1879e97f
UB
6302013-12-26 Uros Bizjak <ubizjak@gmail.com>
631
632 * config/i386/cpuinfo.c (enum vendor_signatures): Remove.
633 (__cpu_indicator_init): Use signature_INTEL_ebx and signature_AMD_ebx
634 from cpuid.h to check vendor signatures.
635
f4a4bdbb
GG
6362013-12-26 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
637
c2e7e597 638 * config/i386/cpuinfo.c (processor_types): Rename AMD cpu names
f4a4bdbb
GG
639 AMD_BOBCAT to AMD_BTVER1 and AMD_JAGUAR to AMD_BTVER2.
640 (get_amd_cpu): Likewise.
641
8d2ae544
L
6422013-12-25 H.J. Lu <hongjiu.lu@intel.com>
643
644 * config/i386/cpuinfo.c (get_intel_cpu): Remove model 0x3f from
645 Haswell.
646
74924838
ASJ
6472013-12-25 Allan Sandfeld Jensen <sandfeld@kde.org>
648 H.J. Lu <hongjiu.lu@intel.com>
649
0bb52f25
L
650 PR target/59422
651 * config/i386/cpuinfo.c (enum processor_types): Add AMD_BOBCAT
74924838
ASJ
652 and AMD_JAGUAR.
653 (enum processor_subtypes): Add AMDFAM15H_BDVER3, AMDFAM15H_BDVER4,
654 INTEL_COREI7_IVYBRIDGE and INTEL_COREI7_HASWELL.
655 (enum processor_features): Add FEATURE_SSE4_A, FEATURE_FMA4,
656 FEATURE_XOP and FEATURE_FMA.
657 (get_amd_cpu): Handle AMD_BOBCAT, AMD_JAGUAR, AMDFAM15H_BDVER2 and
658 AMDFAM15H_BDVER3.
659 (get_intel_cpu): Handle INTEL_COREI7 and INTEL_COREI7_HASWELL.
0bb52f25 660 (get_available_features): Handle FEATURE_FMA, FEATURE_SSE4_A,
74924838
ASJ
661 FEATURE_FMA4 and FEATURE_XOP.
662
d3c11974
L
6632013-12-23 H.J. Lu <hongjiu.lu@intel.com>
664
665 * config/i386/cpuinfo.c (processor_subtypes): Replace INTEL_ATOM,
666 INTEL_SLM with INTEL_BONNELL, INTEL_SILVERMONT.
667 (get_intel_cpu): Updated.
668
064c4ff2
ZC
6692013-12-12 Zhenqiang Chen <zhenqiang.chen@arm.com>
670
671 * config.host (arm*-*-uclinux*): Move t-arm before t-bpabi.
672
8b02e720
UB
6732013-12-09 Uros Bizjak <ubizjak@gmail.com>
674
675 * config/i386/sfp-exceptions.c (__sfp_handle_exceptions): Emit SSE
1f71a3c3 676 instructions when __SSE_MATH__ is defined.
8b02e720 677
3fa2ccb4
RC
6782013-12-06 Ralf Corsépius <ralf.corsepius@rtems.org>
679
680 * config.host (microblaze-*-rtems*): New.
681
ecd78fc9
KV
6822013-12-04 Kugan Vivekanandarajah <kuganv@linaro.org>
683
684 * config/arm/bpapi-lib.h (TARGET_HAS_NO_HW_DIVIDE): Define for
685 architectures that do not have hardware divide instruction.
686 i.e. architectures that do not define __ARM_ARCH_EXT_IDIV__.
687
b21fbbd2
RS
6882013-12-04 Richard Sandiford <rdsandiford@googlemail.com>
689
690 * longlong.h: Delete (moved to include/).
691
b03fb8c9
AZ
6922013-12-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
693
694 * config/rs6000/ibm-ldouble.c (__gcc_qadd): Fix add
695 of normal number and qNaN to not raise an inexact exception.
696
3c716922
UB
6972013-11-28 Uros Bizjak <ubizjak@gmail.com>
698
699 * config/i386/32/sfp-machine.h (__FP_FRAC_ADDI_4): New macro.
700
7012013-11-28 Matthew Leach <matthew.leach@arm.com>
cceeb9a9
ML
702
703 * config/aarch64/linux-unwind.h (aarch64_fallback_frame_state): Check
704 for correct opcodes on BE.
705
a3458d22
UB
7062013-11-27 Uros Bizjak <ubizjak@gmail.com>
707
708 * soft-fp/op-4.h: Update from glibc.
709
30b8f78b
KV
7102013-11-27 Kugan Vivekanandarajah <kuganv@linaro.org>
711
712 * libgcc2.c (__udivmoddi4): Define new implementation when
713 TARGET_HAS_NO_HW_DIVIDE is defined, for processors without any
714 divide instructions.
715
82552a29
OE
7162013-11-25 Oleg Endo <olegendo@gcc.gnu.org>
717
718 * config/sh/crt1.S (start): Don't do VBR_SETUP for SH2E.
719
80e87457
RO
7202013-11-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
721
722 * config/t-softfp (soft-fp-objects-base): New variable.
723 (soft-fp-objects): Use it.
724
44178879
DE
7252013-11-23 David Edelson <dje.gcc@gmail.com>
726 Andrew Dixie <andrewd@gentrack.com>
727
728 PR target/33704
729 * config/rs6000/aixinitfini.c: New file.
730 * config/rs6000/t-aix-cxa (LIB2ADD_ST): Add aixinitfini.c.
731 * config/rs6000/libgcc-aix-cxa.ver (GCC_4.9): Add libgcc initfini
732 symbols.
733
e5287671
YR
7342013-11-22 Yuri Rumyantsev <ysrumyan@gmail.com>
735
a3458d22 736 * config/i386/cpuinfo.c (get_intel_cpu): Add Silvermont cases.
e5287671 737
867c8b03
JH
7382013-11-18 Jan Hubicka <jh@suse.cz>
739
7f369373
JH
740 * libgcov-driver.c (run_accounted): Make global level static.
741 (gcov_exit_merge_summary): Silence warning; do not clear
742 run_accounted here.
743 (gcov_exit): Clear it here.
744
1d0b3334
JH
745 * libgcov-driver.c (gcov_exit_merge_summary): Fix setting
746 run_accounted.
747
867c8b03
JH
748 * libgcov-driver.c (get_gcov_dump_complete): Update comments.
749 (all_prg, crc32): Remove static vars.
750 (gcov_exit_compute_summary): Rewrite to return crc32; do not clear
751 all_prg.
752 (gcov_exit_merge_gcda): Add crc32 parameter.
753 (gcov_exit_merge_summary): Add crc32 and all_prg parameter;
754 do not account run if it was already accounted.
755 (gcov_exit_dump_gcov): Add crc32 and all_prg parameters.
756 (gcov_exit): Initialize all_prg; update.
757
66204992
AS
7582013-11-15 Andreas Schwab <schwab@linux-m68k.org>
759
760 * configure: Regenerate.
761
b54214fe
UW
7622013-11-14 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
763 Alan Modra <amodra@gmail.com>
764
765 * config/rs6000/linux-unwind.h (TOC_SAVE_SLOT): Define.
766 (frob_update_context): Use it.
767
7682013-11-14 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
769 Alan Modra <amodra@gmail.com>
770
771 * config/rs6000/tramp.S [__powerpc64__ && _CALL_ELF == 2]:
772 (trampoline_initial): Provide ELFv2 variant.
773 (__trampoline_setup): Likewise.
774
775 * config/rs6000/linux-unwind.h (frob_update_context): Do not
776 check for AIX indirect function call sequence if _CALL_ELF == 2.
777
7782013-11-14 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
779 Alan Modra <amodra@gmail.com>
780
781 * config/rs6000/linux-unwind.h (get_regs): Do not support
782 old kernel versions if _CALL_ELF == 2.
783 (frob_update_context): Do not support PLT stub variants only
784 generated by old linkers if _CALL_ELF == 2.
785
13e0981a
UW
7862013-11-14 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
787 Alan Modra <amodra@gmail.com>
788
789 * config/rs6000/linux-unwind.h (ppc_fallback_frame_state): Correct
790 location of CR save area for 64-bit little-endian systems.
791
1a80085d
EB
7922013-11-11 Eric Botcazou <ebotcazou@adacore.com>
793
794 * config.host (arm-wrs-vxworks): Replace arm/t-vxworks with arm/t-elf
795 in tmake_file.
796 * config/arm/t-vxworks: Delete.
797
cabeea52
KT
7982013-11-10 Kai Tietz <ktietz@redhat.com>
799
800 * config/i386/cygming-crtbegin.c (__gcc_register_frame):
801 Increment load-count on use of LIBGCC_SONAME DLL.
802 (hmod_libgcc): New static variable to hold handle of
803 LIBGCC_SONAME DLL.
804 (__gcc_deregister_frame): Decrement load-count of
805 LIBGCC_SONAME DLL.
806
ac088ba1
BRF
8072013-11-08 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
808
809 * configure.ac (libgcc_cv_dfp): Extend check to probe fenv.h
810 availability.
811 * configure: Regenerate
812
d59a8fcc
UB
8132013-11-07 Uros Bizjak <ubizjak@gmail.com>
814
815 * config/i386/sfp-exceptions.c (__sfp_handle_exceptions): Handle
816 FP_EX_DENORM. Store result to volatile location after SSE division
817 to close interrupt window. Remove unneeded fwait after x87
818 division since interrupt window will be closed by emitted fstp.
9de84e84 819 Rewrite FP_EX_INEXACT handling.
d59a8fcc 820
9954c743
JM
8212013-11-06 Joseph Myers <joseph@codesourcery.com>
822
823 * soft-fp/README: Update.
824 * soft-fp/adddf3.c: Update from glibc.
825 * soft-fp/addsf3.c: Likewise.
826 * soft-fp/addtf3.c: Likewise.
827 * soft-fp/divdf3.c: Likewise.
828 * soft-fp/divsf3.c: Likewise.
829 * soft-fp/divtf3.c: Likewise.
830 * soft-fp/double.h: Likewise.
831 * soft-fp/eqdf2.c: Likewise.
832 * soft-fp/eqsf2.c: Likewise.
833 * soft-fp/eqtf2.c: Likewise.
834 * soft-fp/extenddftf2.c: Likewise.
835 * soft-fp/extended.h: Likewise.
836 * soft-fp/extendsfdf2.c: Likewise.
837 * soft-fp/extendsftf2.c: Likewise.
838 * soft-fp/extendxftf2.c: Likewise.
839 * soft-fp/fixdfdi.c: Likewise.
840 * soft-fp/fixdfsi.c: Likewise.
841 * soft-fp/fixdfti.c: Likewise.
842 * soft-fp/fixsfdi.c: Likewise.
843 * soft-fp/fixsfsi.c: Likewise.
844 * soft-fp/fixsfti.c: Likewise.
845 * soft-fp/fixtfdi.c: Likewise.
846 * soft-fp/fixtfsi.c: Likewise.
847 * soft-fp/fixtfti.c: Likewise.
848 * soft-fp/fixunsdfdi.c: Likewise.
849 * soft-fp/fixunsdfsi.c: Likewise.
850 * soft-fp/fixunsdfti.c: Likewise.
851 * soft-fp/fixunssfdi.c: Likewise.
852 * soft-fp/fixunssfsi.c: Likewise.
853 * soft-fp/fixunssfti.c: Likewise.
854 * soft-fp/fixunstfdi.c: Likewise.
855 * soft-fp/fixunstfsi.c: Likewise.
856 * soft-fp/fixunstfti.c: Likewise.
857 * soft-fp/floatdidf.c: Likewise.
858 * soft-fp/floatdisf.c: Likewise.
859 * soft-fp/floatditf.c: Likewise.
860 * soft-fp/floatsidf.c: Likewise.
861 * soft-fp/floatsisf.c: Likewise.
862 * soft-fp/floatsitf.c: Likewise.
863 * soft-fp/floattidf.c: Likewise.
864 * soft-fp/floattisf.c: Likewise.
865 * soft-fp/floattitf.c: Likewise.
866 * soft-fp/floatundidf.c: Likewise.
867 * soft-fp/floatundisf.c: Likewise.
868 * soft-fp/floatunditf.c: Likewise.
869 * soft-fp/floatunsidf.c: Likewise.
870 * soft-fp/floatunsisf.c: Likewise.
871 * soft-fp/floatunsitf.c: Likewise.
872 * soft-fp/floatuntidf.c: Likewise.
873 * soft-fp/floatuntisf.c: Likewise.
874 * soft-fp/floatuntitf.c: Likewise.
875 * soft-fp/gedf2.c: Likewise.
876 * soft-fp/gesf2.c: Likewise.
877 * soft-fp/getf2.c: Likewise.
878 * soft-fp/ledf2.c: Likewise.
879 * soft-fp/lesf2.c: Likewise.
880 * soft-fp/letf2.c: Likewise.
881 * soft-fp/muldf3.c: Likewise.
882 * soft-fp/mulsf3.c: Likewise.
883 * soft-fp/multf3.c: Likewise.
884 * soft-fp/negdf2.c: Likewise.
885 * soft-fp/negsf2.c: Likewise.
886 * soft-fp/negtf2.c: Likewise.
887 * soft-fp/op-1.h: Likewise.
888 * soft-fp/op-2.h: Likewise.
889 * soft-fp/op-4.h: Likewise.
890 * soft-fp/op-8.h: Likewise.
891 * soft-fp/op-common.h: Likewise.
892 * soft-fp/quad.h: Likewise.
893 * soft-fp/single.h: Likewise.
894 * soft-fp/soft-fp.h: Likewise.
895 * soft-fp/subdf3.c: Likewise.
896 * soft-fp/subsf3.c: Likewise.
897 * soft-fp/subtf3.c: Likewise.
898 * soft-fp/truncdfsf2.c: Likewise.
899 * soft-fp/trunctfdf2.c: Likewise.
900 * soft-fp/trunctfsf2.c: Likewise.
901 * soft-fp/trunctfxf2.c: Likewise.
902 * soft-fp/unorddf2.c: Likewise.
903 * soft-fp/unordsf2.c: Likewise.
904 * soft-fp/unordtf2.c: Likewise.
905
02ac9503
UB
9062013-11-05 Uros Bizjak <ubizjak@gmail.com>
907
908 * config/i386/32/sfp-machine.h (_FP_MUL_MEAT_S): Define.
909 (_FP_MUL_MEAT_D): Ditto.
910 (_FP_DIV_MEAT_S): Ditto.
911 (_FP_DIV_MEAT_D): Ditto.
912 * config.host (i[34567]86-*-rtems*): Remove i386/t-softfp, add
913 t-softfp-sfdf and t-softfp to tmake_file.
914
61221141
UB
9152013-11-03 Uros Bizjak <ubizjak@gmail.com>
916
917 * config/i386/crtfastmath.c: Compile only for !_SOFT_FLOAT.
918 * config/i386/crtprec.c: Ditto.
919
9304f876
CJW
9202013-10-31 Chung-Ju Wu <jasonwucj@gmail.com>
921 Shiva Chen <shiva0217@gmail.com>
922
923 * config.host (nds32*-elf*): Add nds32 target.
924 * config/nds32 : New directory and files.
925
0e499e75
HPN
9262013-10-16 Hans-Peter Nilsson <hp@axis.com>
927
928 For CRIS ports, switch to soft-fp. Improve arit.c and longlong.h.
929 * config.host (cpu_type) <Setting default>: Add entry for
930 crisv32-*-*.
931 (tmake_file) <crisv32-*-elf, cris-*-elf, cris-*-linux*>
932 <crisv32-*-linux*>: Adjust.
933 * longlong.h: Wrap the whole CRIS section in a single
934 defined(__CRIS__) conditional. Add comment about add_ssaaaa
935 and sub_ddmmss.
936 (COUNT_LEADING_ZEROS_0): Define when count_leading_zeros is
937 defined.
938 [__CRIS__] (__umulsidi3): Define.
939 [__CRIS__] (umul_ppmm): Define in terms of __umulsidi3.
940 * config/cris/sfp-machine.h: New file.
941 * config/cris/umulsidi3.S: New file.
942 * config/cris/t-elfmulti (LIB2ADD_ST): Add umulsidi3.S.
943 * config/cris/arit.c (SIGNMULT): New macro.
944 (__Div, __Mod): Use SIGNMULT instead of naked multiplication.
945 * config/cris/mulsi3.S: Tweak to avoid redundant register-copying;
946 saving 3 out of originally 33 cycles from the fastest
947 path, 3 out of 54 from the medium path and one from the longest
948 path. Improve comments.
949
16022041
RS
9502013-10-15 Richard Sandiford <rdsandiford@googlemail.com>
951
952 * sync.c: Remove static aliases and define each function directly
953 under its real name.
954
69778659
JDA
9552013-10-02 John David Anglin <danglin@gcc.gnu.org>
956
957 * config.host (hppa*64*-*-linux*): Define extra_parts.
958 (hppa*-*-linux*): Likewise.
959
2deaf8b0
JR
9602013-10-02 Joern Rennecke <joern.rennecke@embecosm.com>
961
962 * config/arc/crtgend.S: Add 2013 to Copyright years.
963 * config/arc/gmon/atomic.h: Likewise.
964 * config/arc/gmon/auxreg.h: Likewise.
965 * config/arc/gmon/sys/gmon_out.h: Likewise.
966 * config/arc/gmon/sys/gmon.h: Likewise.
967 * config/arc/gmon/prof-freq.c: Likewise.
968 * config/arc/gmon/mcount.c: Likewise.
969 * config/arc/gmon/prof-freq-stub.S: Likewise.
970 * config/arc/gmon/gmon.c: Likewise.
971 * config/arc/gmon/machine-gmon.h: Likewise.
972 * config/arc/gmon/profil.S: Likewise.
973 * config/arc/gmon/dcache_linesz.S: Likewise.
974 * config/arc/crtg.S: Likewise.
975 * config/arc/ieee-754/arc600-mul64/divsf3.S: Likewise.
976 * config/arc/ieee-754/arc600-mul64/divdf3.S: Likewise.
977 * config/arc/ieee-754/adddf3.S: Likewise.
978 * config/arc/ieee-754/truncdfsf2.S: Likewise.
979 * config/arc/ieee-754/fixsfsi.S: Likewise.
980 * config/arc/ieee-754/gtsf2.S: Likewise.
981 * config/arc/ieee-754/floatsisf.S: Likewise.
982 * config/arc/ieee-754/arc600-dsp/divsf3.S: Likewise.
983 * config/arc/ieee-754/arc600-dsp/divdf3.S: Likewise.
984 * config/arc/ieee-754/arc600-dsp/mulsf3.S: Likewise.
985 * config/arc/ieee-754/fixdfsi.S: Likewise.
986 * config/arc/ieee-754/addsf3.S: Likewise.
987 * config/arc/ieee-754/gesf2.S: Likewise.
988 * config/arc/ieee-754/floatsidf.S: Likewise.
989 * config/arc/ieee-754/extendsfdf2.S: Likewise.
990 * config/arc/ieee-754/divtab-arc-df.c: Likewise.
991 * config/arc/ieee-754/gtdf2.S: Likewise.
992 * config/arc/ieee-754/fixunsdfsi.S: Likewise.
993 * config/arc/ieee-754/uneqdf2.S: Likewise.
994 * config/arc/ieee-754/divsf3-stdmul.S: Likewise.
995 * config/arc/ieee-754/uneqsf2.S: Likewise.
996 * config/arc/ieee-754/arc-ieee-754.h: Likewise.
997 * config/arc/ieee-754/divtab-arc-sf.c: Likewise.
998 * config/arc/ieee-754/eqdf2.S: Likewise.
999 * config/arc/ieee-754/ordsf2.S: Likewise.
1000 * config/arc/ieee-754/divsf3.S: Likewise.
1001 * config/arc/ieee-754/divdf3.S: Likewise.
1002 * config/arc/ieee-754/floatunsidf.S: Likewise.
1003 * config/arc/ieee-754/orddf2.S: Likewise.
1004 * config/arc/ieee-754/eqsf2.S: Likewise.
1005 * config/arc/ieee-754/gedf2.S: Likewise.
1006 * config/arc/crtn.S: Likewise.
1007 * config/arc/crti.S: Likewise.
1008 * config/arc/t-arc700-uClibc: Likewise.
1009 * config/arc/asm.h: Likewise.
1010 * config/arc/libgcc-excl.ver: Likewise.
1011 * config/arc/t-arc-newlib: Likewise.
1012 * config/arc/divtab-arc700.c: Likewise.
1013 * config/arc/initfini.c: Likewise.
1014 * config/arc/fp-hack.h: Likewise.
1015
c8e318b0
JR
10162013-10-01 Joern Rennecke <joern.rennecke@embecosm.com>
1017 Diego Novillo <dnovillo@google.com>
1018
1019 * config/arc/gmon/mcount.c (_MCOUNT_DECL): Comment typo fix.
a07c5b47
JR
1020 * config/arc/ieee-754/arc600-dsp/muldf3.S (.Linf_denorm): Likewise.
1021 * config/arc/ieee-754/arc600-mul64/muldf3.S (.Linf_denorm): Likewise.
1022 * config/arc/ieee-754/muldf3.S (.Linf_denorm): Likewise.
c8e318b0 1023
d38a64b4
JR
10242013-10-01 Joern Rennecke <joern.rennecke@embecosm.com>
1025 Brendan Kehoe <brendan@zen.org>
1026 Simon Cook <simon.cook@embecosm.com>
1027
1028 * config.host (arc*-*-elf*, arc*-*-linux-uclibc*): New configurations.
1029 * config/arc: New directory.
1030 * longlong.h [__arc__] (umul_ppmm): Remove.
1031 [__arc__] (__umulsidi3): Define.
1032 [__arc__ && __ARC_NORM__] (count_leading_zeroes): Define.
1033 [__arc__ && __ARC_NORM__] (COUNT_LEADING_ZEROS_0): Likewise.
1034
dff717d2
JC
10352013-09-17 Jacek Caban <jacek@codeweavers.com>
1036
1037 * config/i386/gthr-win32.c: CreateSemaphoreW instead of
1038 CreateSemaphoreA.
1039 * config/i386/gthr-win32.h: Likewise.
1040
5c0029de
DD
10412013-09-16 DJ Delorie <dj@redhat.com>
1042
844ad6c6 1043 * config/rl78/vregs.h: Add G10 register definitions.
5c0029de
DD
1044 * config/rl78/lib2mul.c: Enable for RL78/G10.
1045 * config/rl78/lib2div.c: Likewise.
1046 * config/rl78/lshrsi3.S: Use vregs.h.
1047 * config/rl78/cmpsi2.S: Likewise.
1048 * config/rl78/trampoline.S: Likewise.
1049 * config/rl78/mulsi2.S: Likewise. Disable for RL78/G10.
1050
ceb2fc49
DD
10512013-09-14 DJ Delorie <dj@redhat.com>
1052 Nick Clifton <nickc@redhat.com>
1053
1054 * config/rl78/mulsi3.S: Remove a few unneeded moves and branches.
1055 * config/rl78/vregs.h: New.
1056 * config/rl78/signbit.S: New file. Implements signbit function.
1057 * config/rl78/divmodsi.S: New.
1058 * config/rl78/divmodhi.S: New.
1059 * config/rl78/divmodqi.S: New.
1060 * config/rl78/t-rl78: Build them here...
1061 * config/rl78/lib2div.c: ...but not here.
1062
f6a83b4a
DD
10632013-09-12 DJ Delorie <dj@redhat.com>
1064
1065 * config.host (msp*-*-elf): New.
1066 * config/msp430/: New port.
1067
9107b096
IS
10682013-08-18 Iain Sandoe <iain@codesourcery.com>
1069
1070 PR gcov-profile/58127
1071 * libgcov.c (__gcov_indirect_call_callee): Don't make this a
1072 __thread var for emulated TLS.
1073 (__gcov_indirect_call_counters): Likewise.
1074
0f9bde1f 10752013-08-16 Maciej W. Rozycki <macro@codesourcery.com>
61221141
UB
1076 Catherine Moore <clm@codesourcery.com>
1077 Richard Sandiford <rdsandiford@googlemail.com>
0f9bde1f
MR
1078
1079 * config/mips/mips16.S (CE_STARTFN, CE_ENDFN): New macros.
1080 (RET_FUNCTION): Use them in place of STARTFN and ENDFN.
1081 (CALL_STUB_NO_RET): Likewise.
1082 (CALL_STUB_RET): Likewise.
1083 * config/mips/libgcc-mips16.ver: Remove __mips16_call_stub and
1084 __mips16_ret call/return stub symbols.
1085 * config.host <mips*-*-linux>: For non-R5900 add t-slibgcc-libgcc
1086 to tmake_file.
1087
2dc14aac
MR
10882013-08-13 Maciej W. Rozycki <macro@codesourcery.com>
1089
1090 * config.host <mips*-*-linux*>: Remove a stray comment.
1091
748d71f3
JH
10922013-08-10 Jan Hubicka <jh@suse.cz>
1093
1094 Work around binutils PR14342
1095 * Makefile.in: Add _gcov_indirect_call_profiler_v2 symbol.
1096 * libgcov.c (L_gcov_indirect_call_profiler): Restore original API.
1097 (L_gcov_indirect_call_profiler_v2): New.
1098
2fa3d31b
JH
10992013-08-06 Jan Hubicka <jh@suse.cz>
1100
1101 * libgcov.c (__gcov_indirect_call_callee,
1102 __gcov_indirect_call_counters): New global vars.
1103 (__gcov_indirect_call_profiler): replace by ...
1104 (__gcov_indirect_call_profiler_v2) ... this one.
1105
2077db1b
CT
11062013-08-06 Caroline Tice <cmtice@google.com>
1107
d0595b65 1108 * config.host (extra_parts): Add vtv_start.o, vtv_end.o
2077db1b 1109 vtv_start_preinit.o and vtv_end_preinit.o.
d0595b65
CT
1110 * configure.ac: Add code to check/set enable_vtable_verify.
1111 * Makefile.in: Add rules to build vtv_*.o, if enable_vtable_verify is
2077db1b 1112 true.
d0595b65
CT
1113 * vtv_start_preinit.c: New file.
1114 * vtv_end_preinit.c: New file.
1115 * vtv_start.c: New file.
1116 * vtv_end.c: New file.
1117 * configure: Regenerated.
2077db1b 1118
46549c20
MK
11192013-08-01 Maxim Kuvyrkov <maxim@kugelworks.com>
1120
1121 * config/aarch64/sfp-machine.h, config/aarch64/sync-cache.c,
1122 * config/i386/cpuinfo.c, config/ia64/unwind-ia64.h,
1123 * config/mips/vr4120-div.S: Fix license from GPL-3.0+ to
1124 GPL-3.0-with-GCC-exception.
1125
72be589b
MR
11262013-07-30 Maciej W. Rozycki <macro@codesourcery.com>
1127
1128 * config/mips/mips16.S (DELAYf): Alias to DELAYt for the MIPS IV
1129 ISA and up.
1130
902a3faf
AK
11312013-07-23 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
1132
1133 * config/s390/linux-unwind.h: Use the proper dwarf to hard reg
1134 mapping for FPRs when creating the fallback framestate.
1135
02371798
GJL
11362013-07-19 Georg-Johann Lay <avr@gjlay.de>
1137
1138 PR target/57516
1139 * config/avr/lib1funcs-fixed.S (__roundqq3, __rounduqq3)
1140 (__round_s2_const, __round_u2_const)
1141 (__round_s4_const, __round_u4_const, __round_x8):
1142 Saturate result if addition result cannot be represented.
1143
ab0e8379
MK
11442013-07-15 Matthias Klose <doko@ubuntu.com>
1145
1146 * libgcc2.c: Don't include <limits.h>.
1147
7da38058
JJ
11482013-07-09 Janis Johnson <janisjo@codesourcery.com>
1149
1150 * config.host (powerpc-*-eabispe*): Add t-fdpbit to tmake_file.
1151
1f6eac90
JJ
11522013-07-06 Jakub Jelinek <jakub@redhat.com>
1153
1154 PR target/29776
1155 * libgcc2.c (__floattisf): Avoid undefined signed overflow.
1156
4ea3d774
JJ
11572013-06-28 Jakub Jelinek <jakub@redhat.com>
1158
1159 PR middle-end/36041
1160 * libgcc2.c (POPCOUNTCST2, POPCOUNTCST4, POPCOUNTCST8, POPCOUNTCST):
1161 Define.
1162 (__popcountSI2): For __SIZEOF_INT__ > 2 targets use arithmetics
1163 instead of table lookups.
1164 (__popcountDI2): Likewise.
1165
9d2cdf25
CJW
11662013-06-25 Chung-Ju Wu <jasonwucj@gmail.com>
1167
1168 * Makefile.in (clean, distclean): Remove auto-target.h and stamp-h
1169 correctly.
1170
fa1e55b0
JM
11712013-06-21 Joseph Myers <joseph@codesourcery.com>
1172
1173 PR other/53317
1174 * soft-fp/adddf3.c: Update from glibc.
1175 * soft-fp/addsf3.c: Likewise.
1176 * soft-fp/addtf3.c: Likewise.
1177 * soft-fp/divdf3.c: Likewise.
1178 * soft-fp/divsf3.c: Likewise.
1179 * soft-fp/divtf3.c: Likewise.
1180 * soft-fp/double.h: Likewise.
1181 * soft-fp/eqdf2.c: Likewise.
1182 * soft-fp/eqsf2.c: Likewise.
1183 * soft-fp/eqtf2.c: Likewise.
1184 * soft-fp/extenddftf2.c: Likewise.
1185 * soft-fp/extended.h: Likewise.
1186 * soft-fp/extendsfdf2.c: Likewise.
1187 * soft-fp/extendsftf2.c: Likewise.
1188 * soft-fp/fixdfdi.c: Likewise.
1189 * soft-fp/fixdfsi.c: Likewise.
1190 * soft-fp/fixsfdi.c: Likewise.
1191 * soft-fp/fixsfsi.c: Likewise.
1192 * soft-fp/fixtfdi.c: Likewise.
1193 * soft-fp/fixtfsi.c: Likewise.
1194 * soft-fp/fixunsdfdi.c: Likewise.
1195 * soft-fp/fixunsdfsi.c: Likewise.
1196 * soft-fp/fixunssfdi.c: Likewise.
1197 * soft-fp/fixunssfsi.c: Likewise.
1198 * soft-fp/fixunstfdi.c: Likewise.
1199 * soft-fp/fixunstfsi.c: Likewise.
1200 * soft-fp/floatdidf.c: Likewise.
1201 * soft-fp/floatdisf.c: Likewise.
1202 * soft-fp/floatditf.c: Likewise.
1203 * soft-fp/floatsidf.c: Likewise.
1204 * soft-fp/floatsisf.c: Likewise.
1205 * soft-fp/floatsitf.c: Likewise.
1206 * soft-fp/floatundidf.c: Likewise.
1207 * soft-fp/floatundisf.c: Likewise.
1208 * soft-fp/floatunditf.c: Likewise.
1209 * soft-fp/floatunsidf.c: Likewise.
1210 * soft-fp/floatunsisf.c: Likewise.
1211 * soft-fp/floatunsitf.c: Likewise.
1212 * soft-fp/gedf2.c: Likewise.
1213 * soft-fp/gesf2.c: Likewise.
1214 * soft-fp/getf2.c: Likewise.
1215 * soft-fp/ledf2.c: Likewise.
1216 * soft-fp/lesf2.c: Likewise.
1217 * soft-fp/letf2.c: Likewise.
1218 * soft-fp/muldf3.c: Likewise.
1219 * soft-fp/mulsf3.c: Likewise.
1220 * soft-fp/multf3.c: Likewise.
1221 * soft-fp/negdf2.c: Likewise.
1222 * soft-fp/negsf2.c: Likewise.
1223 * soft-fp/negtf2.c: Likewise.
1224 * soft-fp/op-1.h: Likewise.
1225 * soft-fp/op-2.h: Likewise.
1226 * soft-fp/op-4.h: Likewise.
1227 * soft-fp/op-8.h: Likewise.
1228 * soft-fp/op-common.h: Likewise.
1229 * soft-fp/quad.h: Likewise.
1230 * soft-fp/single.h: Likewise.
1231 * soft-fp/soft-fp.h: Likewise.
1232 * soft-fp/subdf3.c: Likewise.
1233 * soft-fp/subsf3.c: Likewise.
1234 * soft-fp/subtf3.c: Likewise.
1235 * soft-fp/truncdfsf2.c: Likewise.
1236 * soft-fp/trunctfdf2.c: Likewise.
1237 * soft-fp/trunctfsf2.c: Likewise.
1238 * soft-fp/unorddf2.c: Likewise.
1239 * soft-fp/unordsf2.c: Likewise.
1240 * soft-fp/unordtf2.c: Likewise.
1241 * config/aarch64/sfp-machine.h (_FP_QNANNEGATEDP): Define to 0.
1242 * config/arm/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1243 * config/c6x/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1244 * config/i386/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1245 * config/ia64/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1246 * config/lm32/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1247 * config/moxie/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1248 * config/rs6000/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1249 * config/score/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1250 * config/tilegx/sfp-machine32.h (_FP_QNANNEGATEDP): Likewise.
1251 * config/tilegx/sfp-machine64.h (_FP_QNANNEGATEDP): Likewise.
1252 * config/tilepro/sfp-machine.h (_FP_QNANNEGATEDP): Likewise.
1253
0de86a92
JU
12542013-06-16 Jürgen Urban <JuergenUrban@gmx.de>
1255
1256 * config/mips/lib2funcs.c: New file.
1257 * config/mips/t-mips (LIB2ADD_ST): Add it.
1258
0d008882
OE
12592013-06-09 Oleg Endo <olegendo@gcc.gnu.org>
1260
1261 PR target/6526
1262 * config/sh/lib1funcs.S (sdivsi3_i4, udivsi3_i4): Do not change bits
1263 other than FPSCR.PR and FPSCR.SZ. Add SH4A implementation.
1264
776434d1
WL
12652013-06-08 Walter Lee <walt@tilera.com>
1266
1267 * config/tilepro/atomic.h: Don't include stdint.h or features.h.
1268 Replace int64_t with long long. Add __extension__ where
1269 appropriate.
1270 * config/tilepro/atomic.c: Include config.h.
1271
6ab3ebb4
DR
12722013-06-06 Douglas B Rupp <rupp@adacore.com>
1273
1274 * config.host (arm-wrs-vxworks): Configure with other soft float.
1275
107eea2c
JU
12762013-06-04 Jürgen Urban <JuergenUrban@gmx.de>
1277
1278 * config.host (mipsr5900-*-elf*, mipsr5900el-*-elf*, mips64r5900-*-elf*)
1279 (mips64r5900el-*-elf*): New configurations.
1280
5cc19c62
AM
12812013-06-04 Alan Modra <amodra@gmail.com>
1282
1283 * config/rs6000/ibm-ldouble.c: Enable for little-endian.
1284
0f1d3965
YR
12852013-06-03 Yuri Rumyantsev <yuri.s.rumyantsev@intel.com>
1286
1287 * config/i386/cpuinfo.c (INTEL_SLM): New enum value.
1288
0ba045df
EB
12892013-05-28 Eric Botcazou <ebotcazou@adacore.com>
1290
1291 * config/sparc/sol2-unwind.h (MD_FALLBACK_FRAME_STATE_FOR): Do not set
1292 fs->signal_frame for SIGFPE raised for IEEE-754 exceptions.
1293 * config/i386/sol2-unwind.h (x86_fallback_frame_state): Likewise.
1294
49dcafd4
EB
12952013-05-22 Eric Botcazou <ebotcazou@adacore.com>
1296
1297 * config.host (powerpc-*-elf*): Add rs6000/t-savresfgpr to tmake_file.
1298 (powerpc-wrs-vxworks): Likewise.
1299
4fcb5d87
EB
13002013-05-22 Eric Botcazou <ebotcazou@adacore.com>
1301
1302 * config/sparc/sol2-unwind.h (sparc64_frob_update_context): Do it for
1303 signal frames as well.
1304 (MD_FALLBACK_FRAME_STATE_FOR): Do minor cleanups throughout and add the
1305 STACK_BIAS to the CFA offset.
1306
0ec33224
RH
13072013-05-17 Richard Henderson <rth@redhat.com>
1308
1309 PR target/49146
1310 * unwind-dw2.c (UNWIND_COLUMN_IN_RANGE): New macro.
1311 (execute_cfa_program): Use it when storing to fs->regs.
1312
492a8029
KT
13132013-05-08 Kai Tietz <ktietz@redhat.com>
1314
1315 * config/i386/cygming-crtbegin.c (__register_frame_info): Make weak.
1316 (__deregister_frame_info): Likewise.
1317
701e2f0a
TS
13182013-05-06 Thomas Schwinge <thomas@codesourcery.com>
1319
e5123d08
TS
1320 * fp-bit.c (unpack_d, pack_d): Properly preserve and restore a
1321 NaN's payload.
1322
701e2f0a
TS
1323 * fp-bit.h [FLOAT] (QUIET_NAN): Correct value.
1324
b9a7eb5d
AM
13252013-04-25 Alan Modra <amodra@gmail.com>
1326
1327 * config.host: Match little-endian powerpc-linux.
1328
dfe192f5
YZ
13292013-04-19 Yufeng Zhang <yufeng.zhang@arm.com>
1330
1331 * config/aarch64/sfp-machine.h (_FP_W_TYPE): Change to define
1332 as 'unsigned long long' instead of 'unsigned long'.
1333 (_FP_WS_TYPE): Change to define as 'signed long long' instead of
1334 'signed long'.
1335
b6b9af2f
JB
13362013-04-10 Julian Brown <julian@codesourcery.com>
1337
1338 * config/arm/linux-atomic.c (SUBWORD_SYNC_OP, SUBWORD_VAL_CAS)
1339 (SUBWORD_TEST_AND_SET): Use signed char/short types instead of
1340 unsigned char/unsigned short.
1341 (__sync_val_compare_and_swap_{1,2}): Handle signed argument.
1342
ecabdd00
JDA
13432013-04-06 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
1344
1345 PR other/55274
1346 * config/t-slibgcc-hpux (SHLIB_MAPFILES): Define.
1347
34652576
MI
13482013-04-04 Meador Inge <meadori@codesourcery.com>
1349
1350 * config/arm/bpabi.S (aeabi_ldivmod): Add DWARF information for
1351 computing the location of the link register.
1352 (aeabi_uldivmod): Ditto.
1353
e9fd8c19
KT
13542013-03-27 Kai Tietz <ktietz@redhat.com>
1355
1356 * config.host: Add support for cygwin x64 target.
1357 * configure: Regenerated.
1358
a6406324
WL
13592013-03-26 Walter Lee <walt@tilera.com>
1360
1361 * config/tilegx/t-crtstuff: Add -fno-asynchronous-unwind-tables
1362 -mcmodel=large to CRTSTUFF_T_CFLAGS_S variable.
1363
55446c7e
KT
13642013-03-25 Kai Tietz <ktietz@redhat.com>
1365
1366 * config/i386/cygwin.S: Replace use of _WIN64 by __x86_64__.
1367
d2ae19d9
RM
13682013-03-20 Robert Mason <rbmj@verizon.net>
1369
1370 * config/vxlib-tls.c (__gthread_get_tsd_data,)
1371 (__gthread_set_tsd_data, __gthread_enter_tsd_dtor_context,)
1372 (__gthread_leave_tsd_dtor_context): Add prototypes.
1373 (tls_delete_hook): Update.
1374
22c4c869
CM
13752013-03-20 Catherine Moore <clm@codesourcery.com>
1376 Joseph Myers <joseph@codesourcery.com>
1377 Chao-ying Fu <fu@mips.com>
1378
1379 * config/mips/mips16.S: Don't build for microMIPS.
1380 * config/mips/linux-unwind.h: Handle microMIPS frame.
1381 * config/mips/crtn.S (fini, init): New labels.
1382
fbd28bc3
JJ
13832013-03-14 Jakub Jelinek <jakub@redhat.com>
1384
1385 PR tree-optimization/53265
1386 * unwind-dw2.c (execute_cfa_program): Avoid
1387 -Waggressive-array-optimizations warnings for DW_CFA_GNU_window_save
1388 on targets with DWARF_FRAME_REGISTERS < 32.
1389
decc676e
OE
13902013-03-13 Oleg Endo <olegendo@gcc.gnu.org>
1391
1392 PR target/49880
1393 * config/sh/lib1funcs.S (sdivsi3_i4, udivsi3_i4): Enable for SH2A.
1394 (sdivsi3, udivsi3): Remove SH4 check and always compile these functions.
1395
84ea618a
ST
13962013-03-07 Sriraman Tallam <tmsriram@google.com>
1397
1398 * config/i386/cpuinfo.c (get_intel_cpu): Fix cpuid codes for
1399 sandybridge processors.
1400
8f6d1c86
OE
14012013-03-06 Oleg Endo <olegendo@gcc.gnu.org>
1402
1403 PR target/56529
1404 * config/sh/lib1funcs.S (udivsi3_i4i, sdivsi3_i4i): Add __SH2A__ to
1405 inclusion list.
1406
ecdbd01a 14072013-03-04 Edgar E. Iglesias <edgar.iglesias@gmail.com>
409b1de4
EI
1408
1409 * config/microblaze/crti.S: Setup stack protection at entry
1410
0b4ce21b
GJL
14112013-03-04 Georg-Johann Lay <avr@gjlay.de>
1412
1413 * config/avr/lib1funcs.S (__ashrdi3, __lshrdi3, __ashldi3)
1414 (__rotldi3): Shift bytewise if applicable.
1415
b7c3f1ca
JG
14162013-03-01 James Greenhalgh <james.greenhalgh@arm.com>
1417
1418 * config/aarch64/sync-cache.c
1419 (__aarch64_sync_cache_range): Silence warnings.
1420
6d65e8f1
CM
14212013-02-25 Catherine Moore <clm@codesourcery.com>
1422
1423 Revert:
1424 2013-02-24 Catherine Moore <clm@codesourcery.com>
1425 Joseph Myers <joseph@codesourcery.com>
1426 Chao-ying Fu <fu@mips.com>
1427
1428 * config/mips/mips16.S: Don't build for microMIPS.
1429 * config/mips/linux-unwind.h: Handle microMIPS frame.
1430 * config/mips/crtn.S (fini, init): New labels.
1431
6941b508
CM
14322013-02-24 Catherine Moore <clm@codesourcery.com>
1433 Joseph Myers <joseph@codesourcery.com>
1434 Chao-ying Fu <fu@mips.com>
1435
1436 * config/mips/mips16.S: Don't build for microMIPS.
1437 * config/mips/linux-unwind.h: Handle microMIPS frame.
1438 * config/mips/crtn.S (fini, init): New labels.
1439
7c422dbb
EI
14402012-02-19 Edgar E. Iglesias <edgar.iglesias@gmail.com>
1441 * config/microblaze/modsi3.S (modsi3): Fix case with 0x80000000
1442 as dividend.
1443
110207ad
AM
14442013-02-16 Alan Modra <amodra@gmail.com>
1445
1446 PR target/55431
1447 * config/rs6000/linux-unwind.h (ppc_linux_aux_vector): Delete.
1448 (ppc_fallback_frame_state): Always set up save locations for fp
1449 and altivec. Don't bother with non-callee-saved regs, r0-r13
1450 except for r2 on ppc64, fr0-fr13, v0-v19, vscr.
1451
e68a4ef6
GJL
14522013-02-12 Georg-Johann Lay <avr@gjlay.de>
1453
1454 PR target/54222
1455 * config/avr/t-avr (LIB2FUNCS_EXCLUDE): Add: _usmulUHA, _usmulUSA,
1456 _ssmulHA, _ssmulSA.
1457 (LIB1ASMFUNCS): Add: _muldi3_6, _mulsidi3, _umulsidi3, _usmuluha3,
1458 _ssmulha3, _usmulusa3, _ssmulsa3.
1459 * config/avr/lib1funcs.S (__muldi3_6): Break out of __muldi3.
1460 (__muldi3): XCALL __muldi3_6 instead of rcall.
1461 (__umulsidi3, __mulsidi3): New functions.
1462 (do_prologue_saves, do_epilogue_restores): New .macros.
1463 (__divdi3_moddi3): Use them.
1464 * config/avr/lib1funcs-fixed.S (__usmuluha3, __ssmulha3)
1465 (__usmulusa3, __ssmulsa3): New functions.
1466
6c59ffd1
IS
14672013-02-11 Iain Sandoe <iain@codesourcery.com>
1468 Jack Howarth <howarth@bromo.med.uc.edu>
1469 Patrick Marlier <patrick.marlier@gmail.com>
1470
1471 PR libitm/55693
1472 * config/darwin-crt-tm.c: Remove dummy functions hack.
1473
85d768f3
GJL
14742013-02-08 Georg-Johann Lay <avr@gjlay.de>
1475
1476 PR target/54222
1477 * config/avr/lib2funcs.c: New C sources for modules for libgcc.a.
1478 * config/avr/lib2-object.mk: New iterator to build objects from it.
1479 * config/avr/t-avr: Iterate lib2-object.mk to build objects from
1480 lib2funcs.c.
1481 (LIB2FUNCS_EXCLUDE): Add _clrsbdi2.
1482 (LIB1ASMFUNCS): Add: _ssabs_1, _mask1, _ret, _roundqq3, _rounduqq3,
1483 _round_s2, _round_u2, _round_2_const, _addmask_2, _round_s4,
1484 _round_u4, _round_4_const, _addmask_4, _round_x8, _rounddq3
1485 _roundudq3, _roundda3 _rounduda3, _roundta3 _rounduta3.
1486 * config/avr/lib1funcs-fixed.S: Implement them.
1487
5d5bf775
RS
14882013-02-04 Richard Sandiford <rdsandiford@googlemail.com>
1489
1490 Update copyright years.
1491
99113dff
DE
14922013-02-01 David Edelsohn <dje.gcc@gmail.com>
1493
1494 PR target/54601
1495 * config.host (powerpc-ibm-aix[56789]): Add t-aix-cxa to tmake_file.
1496 Add crtcxa to extra_parts.
1497 * config/rs6000/exit.h: New file.
1498 * config/rs6000/cxa_atexit.c: New file.
1499 * config/rs6000/cxa_finalize.c: New file.
1500 * config/rs6000/crtcxa.c: New file.
1501 * config/rs6000/t-aix-cxa: New file.
1502 * config/rs6000/libgcc-aix-cxa.ver: New file.
1503
dbdbd982
NC
15042013-01-31 Nick Clifton <nickc@redhat.com>
1505
1506 * config/v850/lib1funcs.S: Add support for e3v5 architecture
1507 variant.
1508
5893f158
GJL
15092013-01-29 Georg-Johann Lay <avr@gjlay.de>
1510
1511 PR target/54222
1512 * config/avr/t-avr (LIB2FUNCS_EXCLUDE): Add:
1513 _mulQQ, _mulHQ, _mulHA, _mulSA,
1514 _mulUQQ, _mulUHQ, _mulUHA, _mulUSA,
1515 _divQQ, _divHQ, _divHA, _divSA,
1516 _divUQQ, _divUHQ, _divUHA, _divUSA.
1517
ecdbd01a 15182013-01-26 David Holsgrove <david.holsgrove@xilinx.com>
fbf0cf90 1519
dbdbd982 1520 * config.host(microblaze*-linux*): tmake_file: Remove
fbf0cf90
DH
1521 t-slibgcc-nolc-override, add t-slibgcc-libgcc.
1522 * config/microblaze/t-microblaze: Set LIB2FUNCS_EXCLUDE
1523 to exclude functions from being built with libgcc.c and use
1524 the microblaze assembly.
1525
ecdbd01a 15262013-01-26 Edgar E. Iglesias <edgar.iglesias@gmail.com>
6f14eef2
EI
1527
1528 * config.host (microblaze*-*-*): Rename microblaze*-*-elf, update
1529 extra_parts.
1530
922c57d1
YZ
15312013-01-17 Yufeng Zhang <yufeng.zhang@arm.com>
1532
1533 * config/aarch64/sync-cache.c (__aarch64_sync_cache_range): Cast the
1534 results of (dcache_lsize - 1) and (icache_lsize - 1) to the type
1535 __UINTPTR_TYPE__; also cast 'base' to the same type before the
1536 alignment operation.
1537
e0f8b6a0
SN
15382013-01-15 Sofiane Naci <sofiane.naci@arm.com>
1539
1540 * config/aarch64/sync-cache.c (__aarch64_sync_cache_range): Update
1541 loop start address for cache clearing.
1542
00892272
GJL
15432013-01-14 Georg-Johann Lay <avr@gjlay.de>
1544
1545 * config/avr/lib1funcs.S: Remove trailing blanks.
1546 * config/avr/lib1funcs-fixed.S: Ditto.
1547
e59ec5fd
GJL
15482013-01-14 Georg-Johann Lay <avr@gjlay.de>
1549
1550 * config/avr/avr-lib.h: Add GPL copyright notice.
1551
3ffc1958
GJL
15522013-01-14 Georg-Johann Lay <avr@gjlay.de>
1553
1554 * fixed-bit.c (SATFRACT) <FROM_TYPE=1, TO_TYPE=4>: Only
1555 declare / set min_low, min_high if TO_MODE_UNSIGNED == 0.
1556 (SATFRACT) <FROM_TYPE=TO_TYPE=4>: Only declare / set min_low,
1557 min_high if FROM_MODE_UNSIGNED == 0 and TO_MODE_UNSIGNED == 0.
1558
25c210f9
MK
15592013-01-07 Mark Kettenis <kettenis@openbsd.org>
1560
1561 * config.host (i[34567]86-*-openbsd* and x86_64-*-openbsd*):
1562 Add to lists of i[34567]86-*-* and x86_64-*-* soft-fp targets.
2bc15360 1563
db59befb
NC
15642013-01-04 Nick Clifton <nickc@redhat.com>
1565
1566 * config/v850/lib1funcs.S: Only provide CALLT support functions if
1567 the CALLT instruction is supported.
1568
5aa12dbf
JW
15692012-12-20 Jonathan Wakely <jwakely.gcc@gmail.com>
1570
1571 * gthr.h (__gthread_cond_timedwait_recursive): Do not require.
1572 * gthr-posix.h (__gthread_cond_timedwait_recursive): Remove.
1573
65f14117
JT
15742012-12-13 John Tytgat <John@bass-software.com>
1575
1576 * config/arm/fp16.c (__gnu_f2h_internal): Fix inaccuracy when aexp
1577 is 25.
1578
ee3ae4f7
JJ
15792012-12-12 Jakub Jelinek <jakub@redhat.com>
1580
1581 PR libgcc/55451
1582 * fixed-bit.c (FIXED_SSADD, FIXED_SSSUB, FIXED_SSNEG): Avoid
1583 undefined signed overflows.
1584
2fcfba3d
UB
15852012-12-09 Uros Bizjak <ubizjak@gmail.com>
1586
1587 PR target/55344
1588 * config/alpha/linux-unwind.h: Disable when inhibit_libc is defined.
1589
4f2b3dc2
UB
15902012-12-06 Uros Bizjak <ubizjak@gmail.com>
1591
1592 * config/i386/sfp-machine.h (FP_EX_ALL): Define.
1593 (FP_TRAPPING_EXCEPTIONS): Define.
1594 * config/i386/32/sfp-machine.h (FP_EX_SHIFT): Define.
1595 * config/i386/64/sfp-machine.h (FP_EX_SHIFT): Ditto.
1596
066161a2
RH
15972012-12-04 Richard Henderson <rth@redhat.com>
1598
1599 PR bootstrap/55571
1600 * Makefile.in (libgcc_s.so): Depend on and link with libgcc.a.
1601
25626181
MS
16022012-12-04 Marcus Shawcroft <marcus.shawcroft@arm.com>
1603
4f2b3dc2 1604 * config/aarch64/sfp-machine.h (FP_EX_ALL): Define.
25626181
MS
1605 (FP_EX_SHIFT): Define.
1606 (FP_TRAPPING_EXCEPTIONS): Define.
1607
868395e8
MS
16082012-12-04 Marcus Shawcroft <marcus.shawcroft@arm.com>
1609
1610 * config/aarch64/sfp-machine.h (FP_RND_MASK): Define.
1611 (FP_ROUNDMODE): Use FP_RND_MASK.
1612 * config/aarch64/sfp-exceptions.c: New.
1613 * config/aarch64/sfp-machine.h (FP_HANDLE_EXCEPTIONS):
1614 Use __sfp_handle_exceptions.
1615
5005fe22
RE
16162012-12-04 Richard Earnshaw <rearnsha@arm.com>
1617
1618 * config.host: (arm*-*-freebsd*): Remove.
1619 (arm*-*-linux*, arm*-*-uclinux*): Simplify logic.
1620 (arm*-*-elf*): Remove.
1621 (arm*-*-wince-pe*): Remove.
1622 * arm/unwind-arm.c (struct fpa_reg): Delete.
1623 (struct fpa_regs): Delete.
1624 (phase1_vrs): Remove fpa element.
1625 (_Unwind_VRS_Get): Remove _UVRSC_FPA.
1626 (_Unwind_VRS_Set, _Unwind_VRS_Pop): Likewise.
1627 * arm/pr-support.c (__gnu_unwind_execute): Remove FPA support.
1628 * ieee754-sf.S (floatundisf): Remove FPA support.
1629 (floatdisf): Likewise.
1630 * ieee75f-df.S (floatundidf): Likewise.
1631 (floatdidf): Likewise.
1632
e5a81c8e
KT
16332012-11-29 Kai Tietz <ktietz@redhat.com>
1634
1635 PR target/55445
1636 * unwind-c.c (__SEH__): Make sure SjLj isn't active.
1637 * unwind-generic.h: Likewise.
1638 * unwind-seh.c: Likewise.
1639
f4919e4a
RH
16402012-11-28 Richard Henderson <rth@redhat.com>
1641
1642 PR libgcc/48076
1643 * emutls.c (__emutls_get_address): Avoid race condition between
1644 obj->loc.offset read and emutls_key initialization.
4f2b3dc2 1645
e13d9d5a
GJL
16462012-11-22 Georg-Johann Lay <avr@gjlay.de>
1647
1648 Adjust decimal point of signed accum mode to GCC default.
1649
1650 PR target/54222
1651 * config/avr/t-avr (LIB1ASMFUNCS): Add _fractsfsq _fractsfusq,
1652 _divqq_helper.
1653 * config/avr/lib1funcs-fixed.S (__fractqqsf, __fracthqsf)
1654 (__fractsasf, __fractsfha, __fractusqsf, __fractsfsa)
1655 (__mulha3, __mulsa3)
1656 (__divqq3, __divha3, __divsa3): Adjust to new position of
4f2b3dc2
UB
1657 decimal point of signed accum types.
1658
e13d9d5a
GJL
1659 (__mulusa3_round): New function.
1660 (__mulusa3): Use it.
1661 (__divqq_helper): New function.
1662 (__udivuqq3): Use it.
1663
1b845c6e
JJ
16642012-11-20 Jakub Jelinek <jakub@redhat.com>
1665
1666 PR bootstrap/55370
1667 * libgcc-std.ver.in: Add GCC_4.8.0 and %inherit for it.
1668
822a258a
TJ
16692012-11-18 Teresa Johnson <tejohnson@google.com>
1670
1671 PR bootstrap/55051
1672 * libgcov.c (gcov_exit): Remove merged program summary
1673 comparison unless !GCOV_LOCKED.
1674
54f4eaf0
MS
16752012-11-15 Marcus Shawcroft <marcus.shawcroft@arm.com>
1676
1677 * soft-fp: Updated from glibc upstream.
1678
e808687a
ILT
16792012-11-06 Ian Lance Taylor <iant@google.com>
1680
1681 * generic-morestack.c (__generic_morestack): Align the returned
1682 stack pointer to a 32 byte boundary.
1683 * config/i386/morestack.S (__morestack_non_split) [32-bit]: Don't
1684 increment the return address until we have decided that we don't
1685 have a varargs function.
1686 (__morestack) [32-bit]: Align stack correctly when calling C
1687 functions.
1688 (__morestack) [64-bit]: Likewise.
1689
460277e0
TS
16902012-11-04 Thomas Schwinge <thomas@codesourcery.com>
1691
1692 * configure: Regenerate.
1693
73edb277
UB
16942012-11-02 Uros Bizjak <ubizjak@gmail.com>
1695
1696 PR target/55175
1697 * config/i386/sfp-exceptions.c: Guard with _SOFT_FLOAT.
1698 * config/i386/sfp-machine.h: Guard exception handling
1699 code with _SOFT_FLOAT.
1700 * config/i386/32/sfp-machine.h: Guard rounding handling
1701 code with _SOFT_FLOAT.
1702 * config/i386/64/sfp-machine.h: Ditto.
1703
c1d4fa04
JS
17042012-10-31 Joel Sherrill <joel.sherrill@oarcorp.com>
1705
1706 * config.host (m32r-*-rtems*): Include crtinit.o and crtfinit.o
1707 as extra_parts.
1708
eff6ca85
UB
17092012-10-26 Uros Bizjak <ubizjak@gmail.com>
1710
1711 * config/i386/crtfastmath.c (set_fast_math): Use __builtin_ia32_fxsave.
1712 Clear only fxsave.mxcsr_mask. Use saved mxcsr from fxsave structure
1713 when appropriate. Correct structure element types.
1714 * config/i386/t-crtfm (crtfastmath.o): Compile with -mfxsr, remove
1715 -minline-all-stringops from compile flags.
1716
43a8f1a1
RC
17172012-10-25 Ralf Corsépius <ralf.corsepius@rtems.org>
1718
1719 * config.host (sparc64-*-rtems*): Remove sparc/t-elf.
1720
76c78361
RC
17212012-10-25 Ralf Corsépius <ralf.corsepius@rtems.org>
1722
eff6ca85 1723 * config.host (sh*-*-rtems*): Add sh*-*-elf*'s extra_parts.
76c78361 1724
6f288860
SH
17252012-10-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
1726
1727 * config.host (powerpc-*-rtems*): Add rs6000/t-savresfgpr to
1728 tmake_file.
1729
1e3d5096
IB
17302012-10-23 Ian Bolton <ian.bolton@arm.com>
1731 Jim MacArthur <jim.macarthur@arm.com>
1732 Marcus Shawcroft <marcus.shawcroft@arm.com>
1733 Nigel Stephens <nigel.stephens@arm.com>
1734 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
1735 Richard Earnshaw <rearnsha@arm.com>
1736 Sofiane Naci <sofiane.naci@arm.com>
1737 Stephen Thomas <stephen.thomas@arm.com>
1738 Tejas Belagod <tejas.belagod@arm.com>
1739 Yufeng Zhang <yufeng.zhang@arm.com>
1740
1741 * config.host (aarch64*-*-elf, aarch64*-*-linux*): New.
1742 * config/aarch64/crti.S: New file.
1743 * config/aarch64/crtn.S: New file.
1744 * config/aarch64/linux-unwind.h: New file.
1745 * config/aarch64/sfp-machine.h: New file.
1746 * config/aarch64/sync-cache.c: New file.
1747 * config/aarch64/t-aarch64: New file.
1748 * config/aarch64/t-softfp: New file.
1749
8a740f07
HPN
17502012-10-21 Hans-Peter Nilsson <hp@bitrange.com>
1751
1752 * config/mmix/crti.S: Mark program and data addresses using PRELD.
1753 Remove typo'd and unnecessary alignment-LOC for .data. Remove
1754 no-longer-needed LDBU insns.
1755
153c8397
SH
17562012-10-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
1757
1758 * config.host
1759 (arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtemseabi*): Rename
1760 "arm*-*-rtemseabi*" to "arm*-*-rtems*".
1761
595fefee
MGD
17622012-10-17 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1763
1764 * config/arm/lib1funcs.S (__ARM_ARCH__): Define for ARMv8-A.
1765
9945a876
MK
17662012-10-15 Matthias Klose <doko@ubuntu.com>
1767
1768 * config.host: Match arm*-*-linux-* for ARM Linux/GNU.
1769
1183dc2c
PC
17702012-10-15 Pavel Chupin <pavel.v.chupin@intel.com>
1771
1772 * configure: Regenerate.
1773 * configure.ac: Replace code with GCC_AC_THREAD_HEADER use.
1774
945a9c1f
UB
17752012-10-10 Uros Bizjak <ubizjak@gmail.com>
1776
1777 * config/i386/sfp-exceptions.c (__sfp_handle_exceptions): Emit SSE
1778 instructions for 64bit targets only.
1779
fb8bf47a
UB
17802012-10-10 Uros Bizjak <ubizjak@gmail.com>
1781
1782 * config/i386/sfp-machine.h (FP_RND_NEAREST, FP_RND_ZERO, FP_RND_PINF,
1783 FP_RND_MINF, FP_RND_MASK, FP_INIT_ROUNDMODE, _FP_DECL_EX): Move to ...
1784 * config/i386/32/sfp-machine.h: ... here.
1785 * config/i386/64/sfp-machine.h (FP_RND_NEAREST, FP_RND_ZERO,
1786 FP_RND_PINF, FP_RND_MINF, FP_RND_MASK, FP_INIT_ROUNDMODE, _FP_DECL_EX):
1787 New defines.
1788
acb72498
MK
17892012-10-07 Matthias Klose <doko@ubuntu.com>
1790
1791 * config/arm/unwind-arm.h (__gnu_unwind_24bit): Mark parameters
1792 as unused.
1793 (_Unwind_decode_typeinfo_ptr): Mark base as unused.
1794
8eaee0f0
MK
17952012-10-06 Mark Kettenis <kettenis@openbsd.org>
1796
1797 * config.host (*-*-openbsd*): Add t-eh-dw2-dip to tmake_file.
1798 * unwind-dw2-fde-dip.c: Don't include <elf.h> on OpenBSD.
1799 (USE_PT_GNU_EH_FRAME): Define for OpenBSD.
1800 (ElfW): Likewise.
1801
5e3e4fe8
JW
18022012-10-05 Jonathan Wakely <jwakely.gcc@gmail.com>
1803
1804 PR other/53889
1805 * config/i386/gthr-win32.h (__gthread_recursive_mutex_destroy):
1806 Fix parameter names.
1807
86086376
OE
18082012-10-04 Oleg Endo <olegendo@gcc.gnu.org>
1809
1810 PR target/33135
1811 * config/sh/t-sh (HOST_LIBGCC2_CFLAGS): Delete.
1812 * config/sh/t-netbsd (HOST_LIBGCC2_CFLAGS): Delete.
1813 * config/sh/t-linux (HOST_LIBGCC2_CFLAGS): Remove mieee option.
1814
9597375a
OE
18152012-10-03 Oleg Endo <olegendo@gcc.gnu.org>
1816
1817 PR target/50457
1818 * config/sh/linux-atomic.S: Delete.
1819 * config/sh/linux-atomic.c: New.
1820 * config/sh/t-linux (LIB2ADD): Replace linux-atomic.S with
1821 linux-atomic.c. Add cflags to disable warnings.
1822
1504e3e1
JW
18232012-10-02 Jonathan Wakely <jwakely.gcc@gmail.com>
1824
1825 PR other/53889
1826 * gthr.h (__gthread_recursive_mutex_destroy): Document new required
1827 function.
1828 * gthr-posix.h (__gthread_recursive_mutex_destroy): Define.
1829 * gthr-single.h (__gthread_recursive_mutex_destroy): Likewise.
1830 * config/gthr-rtems.h (__gthread_recursive_mutex_destroy): Likewise.
1831 * config/gthr-vxworks.h (__gthread_recursive_mutex_destroy): Likewise.
5e3e4fe8
JW
1832 * config/i386/gthr-win32.c (__gthread_win32_recursive_mutex_destroy):
1833 Likewise.
1504e3e1
JW
1834 * config/i386/gthr-win32.h (__gthread_recursive_mutex_destroy):
1835 Likewise.
1836 * config/mips/gthr-mipssde.h (__gthread_recursive_mutex_destroy):
1837 Likewise.
1838 * config/pa/gthr-dce.h (__gthread_recursive_mutex_destroy): Likewise.
1839 * config/s390/gthr-tpf.h (__gthread_recursive_mutex_destroy): Likewise.
1840
17f293b0
MK
18412012-09-19 Mark Kettenis <kettenis@openbsd.org>
1842
9597375a
OE
1843 * config.host (hppa-*-openbsd*): New target.
1844 * config/pa/t-openbsd: New file.
17f293b0 1845
51526856
GJL
18462012-09-15 Georg-Johann Lay <avr@gjlay.de>
1847
1848 PR target/54222
1849 * config/avr/lib1funcs-fixed.S (__ssneg_2, __ssabs_2, __ssneg_4,
1850 __ssabs_4, __clr_8, __ssneg_8, __ssabs_8,
1851 __usadd_8, __ussub_8, __ssadd_8, __sssub_8): New functions.
1852 (__divsa3): Use __negsi2 to negate r_quoL.
1853 * config/avr/lib1funcs.S (FALIAS): New macro.
1854 (__divmodsi4): Break out and use __divmodsi4_neg1 as...
1855 (__negsi2): ...this new function.
1856 * config/avr/t-avr (LIB1ASMFUNCS): Add _negsi2, _clr_8,
1857 _ssneg_2, _ssneg_4, _ssneg_8, _ssabs_2, _ssabs_4,
1858 _ssabs_8, _ssadd_8, _sssub_8, _usadd_8, _ussub_8.
1859 (LIB2FUNCS_EXCLUDE): Fix typo for _add _sub.
1860 Add: _ssadd*, _sssub*, _ssneg*, _ssabs* for signed fixed modes.
1861 Add: _usadd*, _ussub*, _usneg* for unsigned fixed modes.
1862
aadb5b43
OE
18632012-09-10 Oleg Endo <olegendo@gcc.gnu.org>
1864
1865 PR target/54089
1866 * config/sh/lib1funcs.S (ashlsi3): Reimplement as ashlsi3_r0.
1867 (lshrsi3): Reimplement as lshrsi3_r0.
1868
d5d66749
AS
18692012-09-10 Andreas Schwab <schwab@linux-m68k.org>
1870
1871 PR target/46191
1872 * config/t-slibgcc-libgcc (SHLIB_MAKE_SOLINK): Use -lgcc instead
1873 of libgcc.a.
1874
c6c36e73
TJ
18752012-09-07 Teresa Johnson <tejohnson@google.com>
1876
9597375a 1877 PR gcov-profile/54487
c6c36e73 1878 * libgcc/libgcov.c (gcov_exit): Avoid warning on histogram
9597375a 1879 differences.
c6c36e73 1880
b588ae30
GJL
18812012-09-05 Georg-Johann Lay <avr@gjlay.de>
1882
1883 PR target/54461
1884 * config.host (tmake_file,host=avr-*-*): Add avr/t-avrlibc if
1885 not configured --with-avrlibc=no.
1886 * config/avr/t-avrlibc: New file.
1887 * Makefile.in (FPBIT_FUNCS): filter-out LIB2FUNCS_EXCLUDE.
1888 (DPBIT_FUNCS): Ditto.
1889 (TPBIT_FUNCS): Ditto.
1890
abd16fb1
TJ
18912012-09-04 Teresa Johnson <tejohnson@google.com>
1892
1893 * libgcov.c (struct gcov_summary_buffer): New structure.
1894 (gcov_histogram_insert): New function.
1895 (gcov_compute_histogram): Ditto.
1896 (gcov_exit): Invoke gcov_compute_histogram, and perform merging of
1897 histograms during summary merging.
1898
613061fd
MK
18992012-09-01 Mark Kettenis <kettenis@openbsd.org>
1900
1901 * config.host (x86_64-*-openbsd*): New target.
73edb277 1902
867a8345
CLT
19032012-08-29 Chung-Lin Tang <cltang@codesourcery.com>
1904
1905 * config/mips/crtfastmath.c (set_fast_math): Add 'nomips16'
1906 attribute.
1907
4aeaaca3
GJL
19082012-08-24 Georg-Johann Lay <avr@gjlay.de>
1909
1910 PR target/54222
1911 * config/avr/t-avr (conv_X): Rename to func_X.
1912
e55e4056
GJL
19132012-08-24 Georg-Johann Lay <avr@gjlay.de>
1914
1915 PR target/54222
1916 * config/avr/lib1funcs-fixed.S: New file.
1917 * config/avr/lib1funcs.S: Include it. Undefine some divmodsi
1918 after they are used.
1919 (neg2, neg4): New macros.
1920 (__mulqihi3,__umulqihi3,__mulhi3): Rewrite non-MUL variants.
1921 (__mulhisi3,__umulhisi3,__mulsi3): Rewrite non-MUL variants.
1922 (__umulhisi3): Speed up MUL variant if there is enough flash.
1923 * config/avr/avr-lib.h (TA, UTA): Adjust according to gcc's
1924 avr-modes.def.
1925 * config/avr/t-avr (LIB1ASMFUNCS): Add: _fractqqsf, _fractuqqsf,
1926 _fracthqsf, _fractuhqsf, _fracthasf, _fractuhasf, _fractsasf,
1927 _fractusasf, _fractsfqq, _fractsfuqq, _fractsfhq, _fractsfuhq,
1928 _fractsfha, _fractsfsa, _mulqq3, _muluqq3, _mulhq3, _muluhq3,
1929 _mulha3, _muluha3, _mulsa3, _mulusa3, _divqq3, _udivuqq3, _divhq3,
1930 _udivuhq3, _divha3, _udivuha3, _divsa3, _udivusa3.
1931 (LIB2FUNCS_EXCLUDE): Add supported functions.
1932
a147b6d2
GJL
19332012-08-22 Georg-Johann Lay <avr@gjlay.de>
1934
1935 * Makefile.in (fixed-funcs,fixed-conv-funcs): filter-out
1936 LIB2FUNCS_EXCLUDE before adding them to libgcc-objects,
1937 libgcc-s-objects.
1938 * fixed-obj.mk: Only expand dependency if $o is not in
1939 LIB2FUNCS_EXCLUDE.
1940
c637141a
L
19412012-08-22 H.J. Lu <hongjiu.lu@intel.com>
1942
1943 * config/i386/t-linux (HOST_LIBGCC2_CFLAGS): New.
1944
130e00bd
JM
19452012-08-22 Joseph Myers <joseph@codesourcery.com>
1946
1947 * Makefile.in (vis_hide, gen-hide-list): Do not make definitions
1948 depend on --enable-shared.
1949 ($(lib1asmfuncs-o)): Use %.vis files independent of
1950 --enable-shared.
1951 * static-object.mk ($(base)$(objext), $(base).vis)
1952 ($(base)_s$(objext)): Use same rules for visibility handling as in
1953 shared-object.mk.
1954
4b1b3788
ILT
19552012-08-21 Ian Lance Taylor <iant@google.com>
1956
1957 * config/i386/morestack.S (__morestack_non_split): Increase amount
1958 of space allocated for non-split code stack.
1959
d2468141
JM
19602012-08-19 Joseph Myers <joseph@codesourcery.com>
1961
1962 * crtstuff.c (USE_PT_GNU_EH_FRAME): Define for systems using glibc
1963 even if inhibit_libc.
1964
a508e1a8
JB
19652012-08-17 Julian Brown <julian@codesourcery.com>
1966
1967 * Makefile.in (LIB2_DIVMOD_EXCEPTION_FLAGS): Default to
1968 -fexceptions -fnon-call-exceptions if not defined.
1969 ($(lib2-divmod-o), $(lib2-divmod-s-o)): Use above.
1970 * config/arm/t-bpabi (LIB2_DIVMOD_EXCEPTION_FLAGS): Define.
1971
5615a07d
AS
19722012-08-17 Andreas Schwab <schwab@linux-m68k.org>
1973
1974 * config/m68k/linux-atomic.c (__sync_lock_test_and_set_1): Fix
1975 type.
1976
138f5acd
DE
19772012-08-16 David Edelsohn <dje.gcc@gmail.com>
1978
1979 * config.host (*-*-aix*): Move rs6000/t-ibm-ldouble after
1980 rs6000/t-slibgcc-aix.
1981
18efc0dd
SB
19822012-08-15 Segher Boessenkool <segher@kernel.crashing.org>
1983
1984 * longlong.h: (powerpc): Delete _ARCH_PWR and _ARCH_COM handling.
1985
6b39bc38
SB
19862012-08-15 Segher Boessenkool <segher@kernel.crashing.org>
1987
1988 * longlong.h: (whole file, powerpc): Adjust to single assembler syntax.
1989
cd25dea0
L
19902012-08-03 H.J. Lu <hongjiu.lu@intel.com>
1991
1992 PR driver/54171
1993 * Makefile.in (version): Replace top_srcdir with srcdir.
1994
a3dda30b
JY
19952012-08-03 Jonathan Yong <jon_y@users.sourceforge.net>
1996
1997 * Makefile.in (version): set to BASE-VER file from gcc directory.
1998
d04aacfc
NC
19992012-08-01 Nick Clifton <nickc@redhat.com>
2000
2001 * config/m32c/lib2funcs.c (__clrsbhi2): New function.
2002 Implements __clrsb for an HImode argument.
2003
0d13c974
NC
20042012-07-31 Nick Clifton <nickc@redhat.com>
2005
2006 * config/stormy16/lib2funcs.c (__clrsbhi2): New function.
2007 Implements __clrsb for an HImode argument.
2008 * config/stormy16/clrsbhi2.c: New file:
2009 * config/stormy16/t-stormy16 (LIB2ADD): Add clrsbhi2.c.
2010
efbb59b2
SB
20112012-07-22 Steven Bosscher <steven@gcc.gnu.org>
2012
2013 * libgcov.c (__gcov_ior_profiler): Benign comment fix.
2014
bf1431e3
TG
20152012-07-19 Tristan Gingold <gingold@adacore.com>
2016 Richard Henderson <rth@redhat.com>
2017
2018 * unwind-seh.c: New file.
2019 * unwind-generic.h: Include windows.h for SEH.
2020 (_Unwind_Exception): Use 6 private fields for SEH.
2021 (_GCC_specific_handler): Declare.
2022 * unwind-c.c (__gcc_personality_seh0): New function.
2023 Adjust for SEH.
2024 * config/i386/libgcc-cygming.ver: New file.
2025 * config/i386/t-seh-eh: New file.
2026 * config.host (x86_64-*-mingw*): Default to seh.
2027
659140c8
SB
20282012-07-14 Steven Bosscher <steven@gcc.gnu.org>
2029
2030 * config/t-darwin (crt3.0): Remove work-around for fixed PR26840.
2031
a20d08fd
UB
20322012-06-17 Uros Bizjak <ubizjak@gmail.com>
2033
2034 * config/i386/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Use
2035 __builtin_expect when checking for exceptions.
2036 * config/ia64/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Ditto.
2037
79261115
UB
20382012-06-13 Uros Bizjak <ubizjak@gmail.com>
2039
4a172156
UB
2040 * config/ia64/sfp-machine.h (__sfp_handle_exceptions): New
2041 function declaration.
2042 (FP_HANDLE_EXCEPTIONS): Use __sfp_handle_exceptions.
2043 (FP_RND_MASK): New.
2044 * config/ia64/sfp-exceptions.c: New.
2045 * config/ia64/t-softfp (LIB2ADD): Add sfp-exceptions.c.
79261115 2046
bb5c97d4
UB
20472012-06-13 Uros Bizjak <ubizjak@gmail.com>
2048
2049 * config/i386/32/sfp-machine.h (_FP_NANSIGN_S, _FP_NANSIGN_D,
2050 _FP_NANSIGN_E, _FP_NANSIGN_Q): Move ...
2051 * config/i386/64/sfp-machine: ... (delete here) ...
2052 * config/i386/sfp-machine.h: ... to here.
2053 (FP_EX_MASK): Remove.
2054 (FP_RND_MASK): New.
2055 (FP_INIT_ROUNDMODE): Declare asm as volatile.
2056
91fe5efb
ST
20572012-06-11 Sriraman Tallam <tmsriram@google.com>
2058
2059 * config/i386/libgcc-bsd.ver: Version symbol __cpu_indicator_init.
2060 * config/i386/libgcc-sol2.ver: Ditto.
2061 * config/i386/libgcc-glibc.ver: Ditto.
2062
67a218c5
RM
20632012-06-11 Roland McGrath <mcgrathr@google.com>
2064
2065 * gthr-posix.h [neither FreeBSD nor Solaris] (__gthread_active_p):
2066 If __GLIBC__ is defined, refer to __pthread_key_create instead of
2067 pthread_cancel.
2068
492fbea1
UB
20692012-06-09 Uros Bizjak <ubizjak@gmail.com>
2070
2071 * config/i386/32/sfp-machine.h (__gcc_CMPtype, CMPtype,
2072 _FP_KEEPNANFRACP, _FP_CHOOSENAN, FP_EX_INVALID, FP_EX_DENORM,
2073 FP_EX_DIVZERO, FP_EX_OVERFLOW, FP_EX_UNDERFLOW, FP_EX_INEXACT,
2074 FP_HANDLE_EXCEPTIONS, FP_RND_NEAREST, FP_RND_ZERO, FP_RND_PINF,
2075 FP_RND_MINF, _FP_DEXL_EX, FP_INIT_ROUNDMODE, FP_ROUNDMODE,
2076 __LITTLE_ENDIAN, __BIG_ENDIAN, strong_alias): Move ...
2077 * config/i386/64/sfp-machine: ... (delete here) ...
2078 * config/i386/sfp-machine.h: ... to here.
2079 (FP_EX_MASK): New.
2080 (__sfp_handle_exceptions): New function declaration.
2081 (FP_HANDLE_EXCEPTIONS): Use __sfp_handle_exceptions.
2082 * config/i386/sfp-exceptions.c: New.
2083 * config/i386/t-softfp: New.
2084 * config.host (i[34567]86-*-* and x86_64-*-* soft-fp targets): Add
2085 i386/t-softfp to tmake_file.
2086
7b4cf266
DM
20872012-06-03 David S. Miller <davem@davemloft.net>
2088
2089 * longlong.h [SPARC] (sub_ddmmss): Fix thinko in previous 64-bit
2090 change.
2091
0de0d5c6
DM
20922012-05-31 David S. Miller <davem@davemloft.net>
2093
2094 * longlong.h [SPARC] (umul_ppmm, udiv_qrnnd): Use hardware integer
2095 multiply and divide instructions on 32-bit when V9.
2096 (add_ssaaaa, sub_ddmmss): Convert to branchless code on 64-bit.
2097
d8c9d391
JM
20982012-05-29 Joseph Myers <joseph@codesourcery.com>
2099
2100 * config/arm/ieee754-df.S: Fix typos.
2101 * config/arm/ieee754-sf.S: Fix typos.
2102 * config/c6x/libunwind.S: Fix typos.
2103 * config/epiphany/udivsi3-float.c: Fix typos.
2104 * config/microblaze/muldi3_hard.S: Fix typos.
2105 * config/picochip/adddi3.S: Fix typos.
2106 * config/picochip/ashlsi3.S: Fix typos.
2107 * config/picochip/ashrsi3.S: Fix typos.
2108 * config/picochip/clzsi2.S: Fix typos.
2109 * config/picochip/cmpsi2.S: Fix typos.
2110 * config/picochip/divmod15.S: Fix typos.
2111 * config/picochip/divmodhi4.S: Fix typos.
2112 * config/picochip/divmodsi4.S: Fix typos.
2113 * config/picochip/longjmp.S: Fix typos.
2114 * config/picochip/lshrsi3.S: Fix typos.
2115 * config/picochip/parityhi2.S: Fix typos.
2116 * config/picochip/popcounthi2.S: Fix typos.
2117 * config/picochip/setjmp.S: Fix typos.
2118 * config/picochip/subdi3.S: Fix typos.
2119 * config/picochip/ucmpsi2.S: Fix typos.
2120 * config/picochip/udivmodhi4.S: Fix typos.
2121 * config/picochip/udivmodsi4.S: Fix typos.
2122 * config/spu/divv2df3.c: Fix typos.
2123 * config/spu/mfc_multi_tag_release.c: Fix typos.
2124 * config/spu/mfc_tag_release.c: Fix typos.
2125 * configure.ac: Fix typos.
2126 * configure: Regenerate.
2127
31a18a7e
ILT
21282012-05-25 Ian Lance Taylor <iant@google.com>
2129
2130 * config/i386/morestack.S (__morestack_non_split): Check whether
2131 caller is varargs and needs %bp to hold the stack frame on return.
2132
c5768510
OH
21332012-05-25 Olivier Hainque <hainque@adacore.com>
2134
2135 * config/rs6000/vxworks/tramp.S (trampoline_setup): Use a longcall
2136 sequence in the non pic case on VxWorks.
2137
7c7c339b
OH
21382012-05-24 Olivier Hainque <hainque@adacore.com>
2139
73fb7630 2140 * Makefile.in: Move dependency on install-unwind_h from
7c7c339b
OH
2141 "install-leaf" to "install".
2142
fdc1b7d3
OH
21432012-05-24 Olivier Hainque <hainque@adacore.com>
2144
2145 * Makefile.in (clean): Remove libgcc_tm.stamp as well.
2146 Use a separate command for stamp removals.
2147
07ba94b9
AP
21482012-05-21 Andrew Pinski <apinski@cavium.com>
2149
2150 PR bootstrap/53183
2151 * configure.ac: Define the default includes to being none.
2152 * configure: Regenerate.
2153
4677d2eb
OH
21542012-05-16 Olivier Hainque <hainque@adacore.com>
2155
2156 * Makefile.in (install-unwind_h): Rename into ...
2157 (install-unwind_h-forbuild): New target.
2158 (all): Use it instead of the former install-unwind_h.
2159 (install-unwind_h): Reinstate, copy to user install destination
2160 for include files, not to the internal gcc object directory one.
2161 (install-leaf): Depend on it.
2162
7d67c380
OH
21632012-05-15 Olivier Hainque <hainque@adacore.com>
2164
2165 * config/rs6000/aix-unwind.h (*_REGNO): New, set of useful
2166 register numbers. LR_REGNO replaces R_LR.
2167 (ucontext_for): New, helper for ...
2168 (ppc_aix_fallback_frame_state): New, implementation for aix 5.2
2169 and 5.3 of ...
2170 (MD_FALLBACK_FRAME_STATE_FOR): Define for 32bit configurations.
2171
aca06c90
RO
21722012-05-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2173
2174 * config.host (i[34567]86-*-linux*, x86_64-*-linux*)
2175 (i[34567]86-*-kfreebsd*-gnu, x86_64-*-kfreebsd*-gnu)
2176 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-gnu*): Move
2177 i386/t-cpuinfo ...
2178 (i[34567]86-*-*, x86_64-*-*): ... here.
2179
2180 * config/i386/libgcc-bsd.ver (GCC_4.8.0): New version.
2181 * config/i386/libgcc-sol2.ver (GCC_4.8.0): New version.
2182
2183 * config/i386/i386-cpuinfo.c: Rename to ...
2184 * config/i386/cpuinfo.c: ... this.
2185 * config/i386/t-cpuinfo (LIB2ADD): Reflect this.
2186
2187 * configure.ac (AC_CONFIG_HEADER): Call for auto-target.h.
2188 (libgcc_cv_init_priority): New test.
2189 * configure: Regenerate.
2190 * config.in: New file.
2191 * Makefile.in (clean): Rename config.h to auto-target.h.
2192 (config.h): Likewise.
2193 (stamp-h): Likewise.
2194
2195 * config/i386/cpuinfo.c (auto-target.h): Include.
2196 (CONSTRUCTOR_PRIORITY): Define.
2197 (__cpu_indicator_init): Use it.
2198
0d03ac1b
L
21992012-05-09 H.J. Lu <hongjiu.lu@intel.com>
2200
2201 * longlong.h: Use a URL instead of an FSF postal address.
2202 Replace spaces with tab.
2203
4a172156 22042012-05-08 Teresa Johnson <tejohnson@google.com>
4e8ee9cb
TJ
2205
2206 * libgcov.c (gcov_clear, __gcov_reset): New functions.
2207 (__gcov_dump): Ditto.
2208 (gcov_dump_complete): New global variable.
2209 (gcov_exit): Export hidden to enable use in L_gcov_dump.
2210 (__gcov_flush): Outline functionality now in gcov_clear.
2211 * Makefile.in (L_gcov_reset, L_gcov_dump): Define.
2212
e4bb767e
AJ
22132012-04-28 Aurelien Jarno <aurelien@aurel32.net>
2214
31a18a7e
ILT
2215 * config.host (mips64*-*-linux*, mipsisa64*-*-linux*): Remove.
2216 (mips*-*-linux*): Include mips/t-tpbit when long double is
2217 16 bytes long.
e4bb767e 2218
5ddecff9
ST
22192012-04-25 Sriraman Tallam <tmsriram@google.com>
2220
2221 * config/i386/i386-cpuinfo.c (FEATURE_AVX2): New enum value.
2222 (get_available_features): New argument. Check for AVX2.
2223 (__cpu_indicator_init): Modify call to get_available_features.
2224
b427dd7a
AM
22252012-04-25 Alan Modra <amodra@gmail.com>
2226
2227 * config/rs6000/crtsavevr.S: New file.
2228 * config/rs6000/crtrestvr.S: New file.
2229 * config/rs6000/t-savresfgpr: Build the above.
2230 * config/rs6000/t-netbsd: Likewise.
2231
ad491329
ST
22322012-04-24 Sriraman Tallam <tmsriram@google.com>
2233
2234 * libgcc/config/i386/i386-cpuinfo.c: Set __cpu_vendor always.
2235
792317cc
ST
22362012-04-24 Sriraman Tallam <tmsriram@google.com>
2237
2238 * libgcc/config/i386/i386-cpuinfo.c: New file.
2239 * libgcc/config/i386/t-cpuinfo: New file.
2240 * libgcc/config.host: Include t-cpuinfo.
2241 * libgcc/config/i386/libgcc-glibc.ver: Version symbol __cpu_model.
2242
e1be98a4
CF
22432012-04-24 Chao-ying Fu <fu@mips.com>
2244
2245 * unwind-dw2-fde-dip.c: Define USE_PT_GNU_EH_FRAME for BIONIC.
2246
1bde7dab
TS
22472012-04-20 Thomas Schwinge <thomas@codesourcery.com>
2248
2249 struct siginfo vs. siginfo_t
2250
2251 * config/alpha/linux-unwind.h (alpha_fallback_frame_state): Use
2252 siginfo_t instead of struct siginfo.
2253 * config/bfin/linux-unwind.h (bfin_fallback_frame_state): Likewise.
2254 * config/i386/linux-unwind.h (x86_fallback_frame_state): Likewise.
2255 * config/ia64/linux-unwind.h (ia64_fallback_frame_state)
2256 (ia64_handle_unwabi): Likewise.
2257 * config/mips/linux-unwind.h (mips_fallback_frame_state): Likewise.
2258 * config/pa/linux-unwind.h (pa32_fallback_frame_state): Likewise.
2259 * config/sh/linux-unwind.h (shmedia_fallback_frame_state)
2260 (sh_fallback_frame_state): Likewise.
2261 * config/tilepro/linux-unwind.h (tile_fallback_frame_state): Likewise.
2262 * config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Likewise.
2263
24590f66
L
22642012-04-02 H.J. Lu <hongjiu.lu@intel.com>
2265
2266 * config/i386/linux-unwind.h (RT_SIGRETURN_SYSCALL): Update x32
2267 system call number.
2268
9a9dcce8
EB
22692012-03-31 Eric Botcazou <ebotcazou@adacore.com>
2270
2271 * config/ia64/unwind-ia64.c (uw_install_context): Manually save LC
2272 if it hasn't been previously saved.
2273
6401aaf5
L
22742012-03-29 H.J. Lu <hongjiu.lu@intel.com>
2275
2276 * config/i386/linux-unwind.h (x86_64_fallback_frame_state): Define
2277 only for glibc.
2278
7fd6378e
GJL
22792012-03-28 Georg-Johann Lay <avr@gjlay.de>
2280
2281 PR target/52737
2282 * config/avr/lib1funcs.S: Use __AVR_HAVE_SPH__ for SP_H checks
2283 instead of __AVR_HAVE_8BIT_SP__.
2284
9e916de7
TG
22852012-03-26 Tristan Gingold <gingold@adacore.com>
2286
2287 * config/ia64/unwind-ia64.h: Declare unw_word and unw_sword.
2288 (unw_table_entry): Use unw_word instead of unsigned long.
2289 (_Unwind_FindTableEntry): Likewise.
2290 * config/ia64/fde-glibc.c (_Unwind_FindTableEntry): Likewise.
2291 * config/ia64/fde-vms.c (vms_unwtable_entry): Likewise.
2292 (_Unwind_FindTableEntry): Likewise.
2293 * config/ia64/unwind-ia64.c (unw_reg_info, unw_reg_state)
2294 (unw_labeled_state, unw_state_record, unw_stack, _Uwind_Context)
2295 (set_reg, alloc_spill_area, finish_prologue, ia64_rse_slot_num)
2296 (ia64_rse_is_rnat_slot, ia64_rse_rnat_addr, ia64_rse_num_regs)
2297 (ia64_rse_skip_regs, ia64_copy_rbs, unw_access_gr)
2298 (uw_frame_state_for, uw_update_reg_address, uw_update_context)
2299 (uw_init_context_1, uw_install_context): Likewise.
2300 (unw_word): Move to unwind-ia64.h
2301
4b12e93d
TG
23022012-03-26 Tristan Gingold <gingold@adacore.com>
2303
2304 * config/vms/vms-ucrt0.c: Update copyright years.
2305 Add a sanity check.
2306 (___gcc_main_flags): Declare.
2307 (__main): Check flags to remap argv and exit code.
2308 * config.host (*-*-*vms*): Adjust extra_parts.
2309 * config/vms/t-vms (vcrt0.o, pcrt0.o): Remove.
2310 (crt0.o): Add.
2311
06ea7371
RE
23122012-03-22 Richard Earnshaw <rearnsha@arm.com>
2313
2314 * arm/lib1funcs.asm (ctzsi2): New function.
2315 * arm/t-elf (LIB1ASMFUNCS): Add _ctzsi2.
2316 * arm/t-linux (LIB1ASMFUNCS): Likewise.
2317 * arm/t-strongarm-elf (LIB1ASMFUNCS): Likewise.
2318 * arm/t-symbian (LIB1ASMFUNCS): Likewise.
2319 * arm/t-vxworks (LIB1ASMFUNCS): Likewise.
2320 * arm/t-wince-pe (LIB1ASMFUNCS): Likewise.
2321
d82ad50d
AT
23222012-03-21 Andreas Tobler <andreast@fgznet.ch>
2323
2324 * config.host: Add bits to support powerpc64-*-freebsd*.
2325 * config/rs6000/freebsd-unwind.h: New file.
2326 * config/rs6000/t-freebsd64: New file.
2327
b260a8c0
RG
23282012-03-20 Richard Guenther <rguenther@suse.de>
2329
2330 PR gcov-profile/52627
2331 * libgcov.c (init_mx): Fix mutex name.
2332
86286a8a
TG
23332012-03-16 Tristan Gingold <gingold@adacore.com>
2334
2335 * config/ia64/vms-unwind.h: Remove ulong (and replace
2336 it by unw_reg where used). Define unw_reg with __int64.
2337
7888f266
RO
23382012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2339
2340 * config/i386/sol2-unwind.h (x86_fallback_frame_state): Remove
2341 Solaris 8 handling.
2342 * config/sparc/sol2-unwind.h (sparc64_is_sighandler): Remove
2343 Solaris 8 handling.
2344 (sparc_is_sighandler): Likewise.
2345
f155bc64
L
23462012-03-13 H.J. Lu <hongjiu.lu@intel.com>
2347
2348 * unwind-dw2.c (_Unwind_SetGRValue): Assert DWARF register size
2349 <= saved reg size.
2350
d47657bd
RO
23512012-03-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2352
2353 * config/arm/crtn.S: Fix typo.
2354
5bef73a1
RG
23552012-03-13 Richard Guenther <rguenther@suse.de>
2356
2357 * libgcov.c: Remove stdio.h include and NULL un-define.
2358
9c4271f3
RG
23592012-03-13 Richard Guenther <rguenther@suse.de>
2360
2361 PR target/52569
2362 * unwind-dw2-fde.c: Make avoid-include-gthr.h hacks work again.
2363
c6d10e7c
RG
23642012-03-13 Richard Guenther <rguenther@suse.de>
2365
2366 * gthr-single.h (__GTHREAD_MUTEX_INIT_FUNCTION): Fix definition.
2367
074a385f
RG
23682012-03-13 Richard Guenther <rguenther@suse.de>
2369
2370 * gthr-posix.h: Remove duplicate __GTHREAD_MUTEX_INIT_FUNCTION
2371 and __gthread_mutex_init_function definitions.
2372
c4bc5c25
RO
23732012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2374
2375 * config.host (mips*-*-openbsd*): Remove.
2376
5c30094f
RO
23772012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2378
2379 * config.host: Remove alpha*-dec-osf5.1* handling.
2380 * config/alpha/gthr-posix.c: Remove.
2381 * config/alpha/libgcc-osf5.ver: Remove.
2382 * config/alpha/osf5-unwind.h: Remove.
2383 * config/alpha/t-osf-pthread: Remove.
2384 * config/alpha/t-slibgcc-osf: Remove.
2385 * config/t-crtfm (crtfastmath.o): Remove -frandom-seed.
2386 * gthr-posix.h [!_REENTRANT && __osf__] (_REENTRANT): Don't define.
2387 [__osf__ && _PTHREAD_USE_MANGLED_NAMES_]: Remove.
2388 * mkmap-flat.awk: Remove osf_export handling.
2389
33e3e24d
RG
23902012-03-12 Richard Guenther <rguenther@suse.de>
2391
2392 * gthr.h (__GTHREAD_MUTEX_INIT_FUNCTION): Adjust specification.
2393 * gthr-posix.h (__GTHREAD_MUTEX_INIT_FUNCTION): Define.
2394 (__gthread_mutex_init_function): New function.
2395 * gthr-single.h (__GTHREAD_MUTEX_INIT_FUNCTION): Define.
2396
2397 PR gcov/49484
2398 * libgcov.c: Include gthr.h.
2399 (__gcov_flush_mx): New global variable.
2400 (init_mx, init_mx_once): New functions.
2401 (__gcov_flush): Protect self with a mutex.
2402 (__gcov_fork): Re-initialize mutex after forking.
2403 * unwind-dw2-fde.c: Change condition under which to use
2404 __GTHREAD_MUTEX_INIT_FUNCTION.
2405
d8aba32a
TG
24062012-03-12 Tristan Gingold <gingold@adacore.com>
2407
2408 * config/alpha/t-vms: Define HOST_LIBGCC2_CFLAGS.
2409 * config/ia64/t-vms: Likewise.
2410
75ffafdc
MH
24112012-03-11 Michael Hope <michael.hope@linaro.org>
2412
4a172156
UB
2413 * longlong.h [ARM] (add_ssaaaa, sub_ddmmss, umul_ppmm): Enable
2414 for Thumb-2.
75ffafdc 2415
ef6c2c53
WL
24162012-03-07 Walter Lee <walt@tilera.com>
2417
2418 * config/tilepro/atomic.c: Rename "atomic_" prefix to
2419 "arch_atomic_".
2420 (atomic_xor): Rename and move definition to
2421 config/tilepro/atomic.h.
2422 (atomic_nand): Ditto.
2423 * config/tilepro/atomic.h: Rename "atomic_" prefix to
2424 "arch_atomic_".
2425 (arch_atomic_xor): Move from config/tilepro/atomic.c.
2426 (arch_atomic_nand): Ditto.
2427
4e30d980
GJL
24282012-03-07 Georg-Johann Lay <avr@gjlay.de>
2429
2430 PR target/52507
2431 * config/avr/lib1funcs.S (__movmemx_hi): Fix loop label in RAM-part.
2432
61108225
GJL
24332012-03-07 Georg-Johann Lay <avr@gjlay.de>
2434
2435 PR target/52505
2436 * config/avr/lib1funcs.S (__xload_1): Don't read unintentionally
2437 from RAM.
2438
b30e10ab
GJL
24392012-03-07 Georg-Johann Lay <avr@gjlay.de>
2440
2441 PR target/52461
2442 PR target/52508
2443 * config/avr/lib1funcs.S (__do_copy_data): Clear RAMPZ after usage
2444 if RAMPZ affects reading from RAM.
2445 (__tablejump_elpm__): Ditto.
2446 (.xload): Ditto.
2447 (__movmemx_hi): Ditto.
2448 (__do_global_ctors): Right condition for RAMPZ usage is "have ELPM".
2449 (__do_global_dtors): Ditto.
2450 (__xload_1, __xload_2, __xload_3, __xload_4): Ditto.
2451 (__movmemx_hi): Ditto.
2452
8993fde4
RH
24532012-03-05 Richard Henderson <rth@redhat.com>
2454
2455 * longlong.h [ARM] (umul_ppmm): Use umull for arm3m and later.
2456 [ARM] (count_trailing_zeros): Use the builtin.
2457
b7633ee3
KT
24582012-03-01 Kai Tietz <ktietz@redhat.com>
2459
2460 * soft-fp: Imported from glibc upstream.
2461
fbd3340c
KT
24622012-02-28 Kai Tietz <ktietz@redhat.com>
2463
2464 * config/i386/sfp-machine.h (_FP_STRUCT_LAYOUT): Define it
2465 for mingw-targets as attribute gcc_struct.
2466
e9e053eb
ILT
24672012-02-28 Ian Lance Taylor <iant@google.com>
2468
2469 * generic-morestack.c (__splitstack_releasecontext): Correct call
2470 to __morestack_release_segments.
2471
d80c632e
ST
24722012-02-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
2473
2474 PR target/52390
2475 * generic-morestack.c (__generic_morestack_set_initial_sp): Test
2476 for __linux__ when removing signals from __morestack_fullmask.
2477
0253a8b1
GJL
24782012-02-23 Georg-Johann Lay <avr@gjlay.de>
2479
2480 PR target/52261
2481 * config/avr/lib1funcs.S (__AVR__XMEGA__): Fix tippo to __AVR_XMEGA__.
2482
e10e461e
UW
24832012-02-23 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
2484
2485 * config/ia64/crtbegin.S: Use HAVE_INITFINI_ARRAY_SUPPORT
2486 instead of HAVE_INITFINI_ARRAY.
2487 * config/ia64/crtend.S: Likewise.
2488
0c0c6398
KT
24892012-02-20 Kai Tietz <ktietz@redhat.com>
2490
d7470374
KT
2491 PR libstdc++/52300
2492 * gthr.h (GTHREAD_USE_WEAK): Define as zero for mingw.
2493
0c0c6398
KT
2494 * config.host (i686-*-mingw*): Set md_unwind_header only for dw2-mode
2495 to w32-unwind.h header.
2496
78c27266
RS
24972012-02-19 Richard Sandiford <rdsandiford@googlemail.com>
2498
2499 * config.host (mips64*-*-linux*, mipsisa64*-*-linux*)
2500 (mips*-*-linux*): Remove t-slibgcc-libgcc.
2501 * config/mips/t-mips16 (LIB1ASMFUNCS): Remove __mips16_rdhwr.
2502 * config/mips/mips16.S (__mips16_rdhwr): Delete.
2503
5adeb246
RS
25042012-02-19 Richard Sandiford <rdsandiford@googlemail.com>
2505
2506 * config/mips/mips16.S (CALL_STUB_RET): Add CFI information.
2507
672ed313
IS
25082012-02-15 Iain Sandoe <iains@gcc.gnu.org>
2509
2510 PR libitm/52220
2511 * config/darwin-crt-tm.c: Correct typo.
e9e053eb 2512
e948a1fb
IS
25132012-02-15 Iain Sandoe <iains@gcc.gnu.org>
2514 Patrick Marlier <patrick.marlier@gmail.com>
2515
2516 PR libitm/52220
2517 * config/darwin-crt-tm.c: Generate dummy functions.
2518
6017aed3
IS
25192012-02-15 Iain Sandoe <iains@gcc.gnu.org>
2520 Patrick Marlier <patrick.marlier@gmail.com>
2521
2522 PR libitm/52042
2523 * config/darwin-crt-tm.c (getTMCloneTable): New function.
2524 (__doTMRegistrations): Call it.
e9e053eb 2525 (__doTMdeRegistrations): Likewise.
6017aed3 2526
2da8c1ad
GJL
25272012-01-15 Georg-Johann Lay <avr@gjlay.de>
2528 Anatoly Sokolov <aesok@post.ru>
2529 Eric Weddington <eric.weddington@atmel.com>
2530
2531 PR target/52261
2532 * config/avr/lib1funcs.S (__prologue_saves__): Handle AVR_XMEGA
2533 (__epilogue_restores__): Ditto.
2534
0f952eb4
EB
25352012-02-15 Eric Botcazou <ebotcazou@adacore.com>
2536
2537 PR target/51921
2538 PR target/52205
2539 * config/sparc/sol2-unwind.h (sparc64_is_sighandler): Add support for
2540 Solaris 11 and slightly reformat.
2541 (sparc_is_sighandler): Likewise.
2542
dd552284
WL
25432012-02-14 Walter Lee <walt@tilera.com>
2544
2545 * config.host: Handle tilegx and tilepro.
2546 * config/tilegx/sfp-machine.h: New file.
2547 * config/tilegx/sfp-machine32.h: New file.
2548 * config/tilegx/sfp-machine64.h: New file.
2549 * config/tilegx/t-crtstuff: New file.
2550 * config/tilegx/t-softfp: New file.
2551 * config/tilegx/t-tilegx: New file.
2552 * config/tilepro/atomic.c: New file.
2553 * config/tilepro/atomic.h: New file.
2554 * config/tilepro/linux-unwind.h: New file.
2555 * config/tilepro/sfp-machine.h: New file.
2556 * config/tilepro/softdivide.c: New file.
2557 * config/tilepro/softmpy.S: New file.
2558 * config/tilepro/t-crtstuff: New file.
2559 * config/tilepro/t-tilepro: New file.
2560
b59cbd50
JW
25612012-02-07 Jonathan Wakely <jwakely.gcc@gmail.com>
2562
2563 PR libstdc++/51296
2564 PR libstdc++/51906
2565 * gthr-posix.h: Allow static initializer macros to be disabled.
2566 (__gthrw_pthread_cond_init): Define weak reference unconditionally.
2567
6caf807f
CLT
25682012-02-05 Chung-Lin Tang <cltang@codesourcery.com>
2569
2570 * config.host (mips64*-*-linux*, mipsisa64*-*-linux*, mips*-*-linux*):
2571 Add t-slibgcc-libgcc to tmake_file.
2572 * config/mips/libgcc-mips16.ver: Revert previous patch.
2573 * config/mips/mips16.S (__mips16_rdhwr): Hide.
2574
b25364a0
S
25752012-02-02 Sumanth G <sumanth.gundapaneni@kpitcummins.com>
2576 Jayant R Sonar <jayant.sonar@kpitcummins.com>
2577
2578 * config.host: Add National Semiconductor CR16 target (cr16-*-*).
2579 * config/cr16/crti.S: New file.
2580 * config/cr16/crtlibid.S: New file.
2581 * config/cr16/crtn.S: New file.
2582 * config/cr16/lib1funcs.S: New file.
2583 * config/cr16/t-cr16: New file.
2584 * config/cr16/t-crtlibid: New file.
2585 * config/cr16/unwind-dw2.h: New file.
2586 * config/cr16/unwind-cr16.c: New file.
2587 * config/cr16/divmodhi3.c: New file.
2588
8ef03aa7
AM
25892012-01-25 Alan Modra <amodra@gmail.com>
2590
2591 * config/rs6000/t-linux64: Delete. Move..
2592 * config/rs6000/t-ppc64-fp: ..softfp_wrap defines to here..
2593 * config/rs6000/t-linux: ..and libgcc flags to here.
2594
daecebc8
DR
25952012-01-22 Douglas B Rupp <rupp@gnat.com>
2596
2597 * config.host (i[34567]86-*-interix3*):
8ef03aa7 2598 Change triplet to i[34567]86-*-interix[3-9]*.
daecebc8
DR
2599 * configure: Regenerate.
2600
ddaf8125
RS
26012012-01-15 Chung-Lin Tang <cltang@codesourcery.com>
2602 Richard Sandiford <rdsandiford@googlemail.com>
2603
2604 * config/mips/libgcc-mips16.ver (__mips16_rdhwr): Add.
2605 * config/mips/mips16.S (__mips16_rdhwr): New function.
2606 * config/mips/t-mips16 (LIB1ASMFUNCS): Add _m16rdhwr.
2607
2cd8b32c
NS
26082012-01-11 Nathan Sidwell <nathan@acm.org>
2609
2610 * libgcov.c (__gcov_init): Ignore objects with no functions.
2611
cba300dd
GJL
26122012-01-10 Georg-Johann Lay <avr@gjlay.de>
2613
2614 PR target/49868
2615 Extend __pgmx semantics to linearize memory.
2616 * config/avr/t-avr (LIB1ASMFUNCS): Add _xload_1, _movmemx.
2617 * config/avr/lib1funcs.S (__xload_1): New function.
2618 (__movmemx_qi, __movmemx_hi): New functions.
2619 (__xload_2, __xload_3, __xload_4): Rewrite to fit new __pgmx
2620 semantics.
9ffaf4bc 2621
3d137660
EB
26222012-01-09 Eric Botcazou <ebotcazou@adacore.com>
2623
2624 * config/sparc/sol2-unwind.h (sparc64_is_sighandler): Check that the
2625 purported sigacthandler address isn't null before dereferencing it.
2626 (sparc_is_sighandler): Likewise.
2627
bf4db96c
EB
26282012-01-09 Eric Botcazou <ebotcazou@adacore.com>
2629
2630 PR ada/41929
2631 * config/sparc/sol2-unwind.h (sparc64_is_sighandler): Remove SAVPC and
2632 add CFA. Revert back to old code for Solaris 8+ multi-threaded.
2633 (sparc_is_sighandler): Likewise.
2634 (MD_FALLBACK_FRAME_STATE_FOR): Adjust call to IS_SIGHANDLER.
2635
1ab3568b
TG
26362012-01-06 Tristan Gingold <gingold@adacore.com>
2637
2638 * config/ia64/t-ia64 (LIB1ASMFUNCS): Move backward
2639 compatibility thunks...
2640 (CUSTOM_CRTSTUFF, crtbegin.o, crtend.o)
2641 (crtbeginS.o, crtendS.o): ... and these to ...
2642 * config/ia64/t-ia64-elf: ... this new file.
2643 * config.host (ia64*-*-elf*, ia64*-*-freebsd*, ia64*-*-linux*)
2644 (ia64*-*-hpux*): Add ia64/t-ia64-elf in tmake_file.
2645
925b0ed8
AK
26462012-01-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
2647
2648 * configure: Regenerate.
2649 * config/s390/t-crtstuff: Remove -fPIC.
2650
a99ad737
JW
26512012-01-02 Jonathan Wakely <jwakely.gcc@gmail.com>
2652
2653 PR bootstrap/51006
2654 * enable-execute-stack-mprotect.c (getpagesize): Do not define
2655 for NetBSD.
2656
884f56d1
GJL
26572012-01-02 Georg-Johann Lay <avr@gjlay.de>
2658
2659 PR target/51345
2660 * config/avr/lib1funcs.S: Remove FIXME comments.
2661 (SPEED_DIV): Depend on __AVR_HAVE_8BIT_SP__.
2662
8c57e547
GJL
26632012-01-02 Georg-Johann Lay <avr@gjlay.de>
2664
2665 Implement light-weight DImode support.
2666 * config/avr/t-avr (LIB1ASMFUNCS): Add _adddi3, _adddi3_s8,
2667 _subdi3, _cmpdi2, _cmpdi2_s8, _rotldi3.
2668 * config/avr/lib1funcs.S (__adddi3, __adddi3_s8, __subdi3,
2669 __cmpdi2, __cmpdi2_s8, __rotldi3): New functions.
2670
04dbc287
NS
26712011-12-30 Nathan Sidwell <nathan@acm.org>
2672
2673 * libgcov.c (gcov_crc32): Remove global var.
2674 (free_fn_data): New function.
2675 (buffer_fn_data): Pass in filename, more robust error recovery.
2676 (crc32_unsigned): New function.
2677 (gcov_exit): More robust detection of new program. More robust
2678 error recovery.
2679 (__gcov_init): Do not update program's crc here.
2680
8e1d97d4
TG
26812011-12-21 Tristan Gingold <gingold@adacore.com>
2682
2683 * config/ia64/fde-vms.c (UNW_IVMS_MODE): Define.
2684
9ffaf4bc
ILT
26852011-12-21 Ian Lance Taylor <iant@google.com>
2686
2687 * config/i386/morestack.S: Simplify CFI opcodes throughout.
2688
a0c8d0c1
ILT
26892011-12-20 Ian Lance Taylor <iant@google.com>
2690
2691 * config/i386/morestack.S (__morestack_non_split): If there is
2692 enough stack space already, don't split. Ask for more stack space
2693 than we required.
2694
69048898
SDJ
26952011-12-20 Sergio Durigan Junior <sergiodj@redhat.com>
2696
2697 * unwind-arm-common.inc: Include `tconfig.h', `tsystem.h' and
2698 `sys/sdt.h'.
2699 (_Unwind_DebugHook): New function.
2700 (uw_restore_core_regs): New define.
2701 (unwind_phase2): Use uw_restore_core_regs instead of
2702 restore_core_regs.
2703 (unwind_phase2_forced): Likewise.
2704 (__gnu_Unwind_Resume): Likewise.
2705
1bb4b6a3
UB
27062011-12-20 Uros Bizjak <ubizjak@gmail.com>
2707
2708 * config/alpha/linux-unwind.h: Update copyright years.
2709 (MD_FROB_UPDATE_CONTEXT): New define.
2710 (alpha_frob_update_context): New function.
2711
eb028768
RS
27122011-12-17 Richard Sandiford <rdsandiford@googlemail.com>
2713
2714 * config.host (mips*-sde-elf*, mipsisa64sr71k-*-elf*): Add to
2715 tmake_file rather replacing it.
2716
6a2045bf
IS
27172011-12-15 Iain Sandoe <iains@gcc.gnu.org>
2718
2719 * config/rs6000/darwin-world.S (toplevel): Make it clear that this
1bb4b6a3 2720 function is not used for PPC64.
6a2045bf
IS
2721 (save_world): Amend comments. Update the VRsave mask to reflect the
2722 saved regs.
2723 (rest_world): Update comments, do not clobber r10, do not use r8.
2724 (eh_rest_world_r10): Amend comments, do not use r8.
2725 (rest_world_eh_r7r8): Rename as local Lrest_world_eh_r7, since r8 is
2726 no longer used, move restore of CR and target address to the end of
2727 the routine.
2728
a13780a6
L
27292011-12-14 H.J. Lu <hongjiu.lu@intel.com>
2730
2731 * generic-morestack.c (__generic_morestack_set_initial_sp): Check
2732 __GLIBC__ instead of __linux__ when using __SIGRTMIN.
2733
d7288dfb
GJL
27342011-12-14 Georg-Johann Lay <avr@gjlay.de>
2735
2736 PR target/49313
2737 * config/avr/t-avr (LIB1ASMSRC): Add _mulpsi3, _mulsqipsi3.
2738 * config/avr/lib1funcs.S (__mulpsi3, __mulsqipsi3): New functions.
2739
8d2c862d
EB
27402011-12-11 Eric Botcazou <ebotcazou@adacore.com>
2741
2742 * config/sparc/sol2-unwind.h: Use #ifdef directive consistently.
2743
3447cae6
GJL
27442011-12-09 Georg-Johann Lay <avr@gjlay.de>
2745
2746 PR target/49313
2747 * config/avr/t-avr (LIB1ASMFUNCS): Add _muldi3.
2748 * config/avr/lib1funcs.S (__muldi3): New function.
2749
806fc6aa
AP
27502011-12-06 Andrew Pinski <apinski@cavium.com>
2751
2752 * crtstuff.c (__do_global_dtors_aux_fini_array_entry): Align to the
2753 size of func_ptr.
2754 (__frame_dummy_init_array_entry): Likewise.
2755
28c5e6b5
GJL
27562011-12-06 Georg-Johann Lay <avr@gjlay.de>
2757
2758 Forward-port from gcc-4_6-branch r181936 2011-12-02.
2759
2760 PR target/51345
2761 PR target/51002
2762 * config/avr/lib1funcs.S (__prologue_saves__,
2763 __epilogue_restores__, __divdi3_moddi3): Enclose parts using
2764 __SP_H__ in !defined (__AVR_HAVE_8BIT_SP__). Add FIXME comments.
2765
8f90394a
IS
27662011-12-04 Iain Sandoe <iains@gcc.gnu.org>
2767
2768 * config/rs6000/t-darwin64 (LIB2ADD): Add fp and gp save routines.
2769
06dd33ac
JDA
27702011-11-30 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
2771
2772 PR other/51272
2773 * config/pa/stublib.c (_ITM_registerTMCloneTable): New stub.
2774 (_ITM_deregisterTMCloneTable): Likewise.
2775 (__register_frame_info): Fix unused warning.
2776 (__deregister_frame_info, __cxa_finalize, _Jv_RegisterClasses,
2777 pthread_default_stacksize_np): Likewise.
2778 * config/pa/t-stublib (LIBGCCSTUB_OBJS): Add new objects and rules.
1bb4b6a3 2779
85b8555e
DD
27802011-11-29 DJ Delorie <dj@redhat.com>
2781
2782 * config.host (rl78-*-elf): New case.
2783 * config/rl78: New directory for the Renesas RL78.
2784
4d5ae4ea
BS
27852011-11-29 Bernd Schmidt <bernds@codesourcery.com>
2786
2787 * config.host (tic6x-*-uclinux): Append to extra_parts. Fix
2788 formatting.
2789
f9c55897
RO
27902011-11-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2791
2792 PR other/51022
2793 * config/rs6000/t-savresfgpr: New file.
2794 * config/rs6000/t-ppccomm (LIB2ADD_ST): Remove all but
2795 $(srcdir)/config/rs6000/eabi.S.
2796 * config/rs6000/t-ppccomm-ldbl: Remove.
2797 * config.host (powerpc-*-freebsd*): Add rs6000/t-savresfgpr to
2798 tmake_file.
2799 (powerpc-*-eabispe*): Likewise.
2800 (powerpc-*-eabi*): Likewise.
2801 (powerpc-*-linux*, powerpc64-*-linux*): Likewise.
2802 (powerpc-wrs-vxworks, powerpc-wrs-vxworksae): Add rs6000/t-ppccomm
2803 to tmake_file, remove rs6000/t-ppccomm-ldbl.
2804 (powerpc-*-eabisimaltivec*): Remove rs6000/t-ppccomm-ldbl from
2805 tmake_file.
2806 (powerpc-*-eabisim*): Likewise.
2807 (powerpc-*-elf*): Likewise.
2808 (powerpc-*-eabialtivec*): Likewise.
2809 (powerpc-xilinx-eabi*): Likewise.
2810 (powerpc-*-rtems*): Likewise.
2811 (powerpcle-*-elf*): Likewise.
2812 (powerpcle-*-eabisim*): Likewise.
2813 (powerpcle-*-eabi*): Likewise.
2814
a01207c4
ILT
28152011-11-27 Ian Lance Taylor <iant@google.com>
2816
2817 * generic-morestack.c (__splitstack_find): Check for NULL old
2818 stack value.
2819 (__splitstack_resetcontext): New function.
2820 (__splitstack_releasecontext): New function.
2821 * libgcc-std.ver.in: Add new functions to GCC_4.7.0.
2822
2b0b8ab2
IS
28232011-11-27 Iain Sandoe <iains@gcc.gnu.org>
2824
2825 * config/darwin-crt-tm.c: Correct comments, use correct licence.
2826
c1d8101c
IS
28272011-11-27 Iain Sandoe <iains@gcc.gnu.org>
2828
2829 * config/darwin-crt-tm.c: Remove dummy _ITM_ functions.
2830
8b281334
RH
28312011-11-26 Richard Henderson <rth@redhat.com>
2832
2833 * config/m68k/linux-atomic.c: New file.
2834 * config/m68k/t-linux: New file.
2835 * config.host (m68k-uclinux, m68k-linux): Use it.
2836
7546aa9d
RH
28372011-11-26 Richard Henderson <rth@redhat.com>
2838
2839 * crtstuff.c (__TMC_LIST__): Mark used not unused.
2840 (__TMC_END__): Only declare if hidden is available; in the definition,
2841 if hidden is unavailable add a null record.
2842 (deregister_tm_clones, register_tm_clones): New.
2843 (__do_global_dtors_aux, frame_dummy): Use them.
2844 (__do_global_dtors, __do_global_ctors_1): Likewise.
2845
e2362f5d
IS
28462011-11-22 Iain Sandoe <iains@gcc.gnu.org>
2847
2848 * config/darwin-crt-tm.c: New file.
2849 * config.host (darwin): Build crttms.o crttme.o to provide
2850 startup and shutdown for tm clones.
2851 * config/t-darwin (crttms.o): New build rule.
2852 (crttme.o): Likewise.
2853
6685dd96
HPN
28542011-11-21 Hans-Peter Nilsson <hp@axis.com>
2855
2856 * Makefile.in ($(srcdir)/emutls.c): Explain why it's in LIB2ADDEH
2857 et al.
2858
b0dc7e4c
RH
28592011-11-21 Richard Henderson <rth@redhat.com>
2860
2861 * crtstuff.c (USE_TM_CLONE_REGISTRY): Default to 1 on ELF.
2862 (__TMC_LIST__, __TMC_END__): New.
2863 (__do_global_dtors_aux): Call _ITM_deregisterTMCloneTable.
2864 (__do_global_dtors): Likewise.
2865 (frame_dummy): Call _ITM_registerTMCloneTable.
2866 (__do_global_ctors_1): Likewise.
2867
d4b4b542
RO
28682011-11-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2869
2870 * config.host (iq2000*-*-elf*): Add iq2000/t-iq2000 to tmake_file.
2871 (powerpc-*-netbsd*): Add rs6000/t-netbsd to tmake_file.
2872 (powerpc-wrs-vxworks, powerpc-wrs-vxworksae): Add to tmake_file.
2873 (powerpc-*-lynxos*): Add rs6000/t-lynx to tmake_file.
2874 * config/i386/t-darwin64: Remove.
2875 * config/sh/t-netbsd (LIB2ADD): Remove.
2876
989bdb74
GJL
28772011-11-21 Georg-Johann Lay <avr@gjlay.de>
2878
2879 PR target/49313
2880 * config/avr/t-avr (LIB2FUNCS_EXCLUDE): Add _moddi3, _umoddi3.
2881 (LIB1ASMFUNCS): Add _divdi3, _udivdi3, _udivmod64, _negdi2.
2882 * config/avr/lib1funcs.S (wmov): New assembler macro.
2883 (__umoddi3, __udivdi3, __udivdi3_umoddi3): New functions.
2884 (__moddi3, __divdi3, __divdi3_moddi3): New functions.
2885 (__udivmod64): New function.
2886 (__negdi2): New function.
2887
515a0cfc
GP
28882011-11-21 Gerald Pfeifer <gerald@pfeifer.com>
2889
2890 * config.host (*-*-freebsd[12], *-*-freebsd[12].*,
2891 *-*-freebsd*aout*): Remove.
2892
0115d17f
HPN
28932011-11-20 Hans-Peter Nilsson <hp@axis.com>
2894
2895 * static-object.mk (c_flags-$o): Save c_flags.
2896 ($(base)$(objext)): Use it.
2897
93aeb62b
SE
28982011-11-18 Steve Ellcey <sje@cup.hp.com>
2899
2900 * Makefile.in (c_flags): Set to -fno-exceptions to build libunwind.
2901
7bc6df2c
GJL
29022011-11-18 Georg-Johann Lay <avr@gjlay.de>
2903
2904 PR target/49868
2905 * config/avr/t-avr (LIB1ASMFUNCS): Add _xload_2 _xload_3 _xload_4.
2906 * config/avr/lib1funcs.S (__xload_2, __xload_3, __xload_4):
2907 New functions.
2908
425d737b
MGD
29092011-11-16 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
2910
2911 * config/arm/lib1funcs.asm (udivsi3): Add support for divide
2912 functions.
1bb4b6a3 2913 (aeabi_uidivmod): Likewise.
425d737b
MGD
2914 (umodsi3): Likewise.
2915 (divsi3): Likewise.
2916 (aeabi_idivmod): Likewise.
2917 (modsi3): Likewise.
2918
f2a176dc
TG
29192011-11-16 Tristan Gingold <gingold@adacore.com>
2920
2921 * config/alpha/qrnnd.S: Use specific pseudos for VMS.
2922
7c209481
GJL
29232011-11-15 Georg-Johann Lay <avr@gjlay.de>
2924
2925 PR target/49868
2926 * config/avr/t-avr (LIB1ASMFUNCS): Add _load_3, _load_4.
2927 * config/avr/lib1funcs.S (__load_3, __load_4, __xload_2): New functions.
2928
9dfd5832
JDA
29292011-11-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
2930
2931 * config.host (hppa*64*-*-hpux11*): Remove pa/t-stublib64 from
2932 tmake_file list.
2933 * config/pa/t-stublib: Merge rules from config/pa/t-stublib64.
2934 * config/pa/t-stublib64: Delete.
2935
f77dca5d
RH
29362011-11-12 Richard Henderson <rth@redhat.com>
2937
2938 * config/rs6000/linux-unwind.h (frob_update_context): Properly
2939 cast the pointer argument to _Unwind_SetGRPtr.
2940
902828f0
RO
29412011-11-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2942
2943 * config/spu/t-elf (LIB2ADD): Use LIB2FUNCS_EXCLUDE instead.
2944
e14304ef
ILT
29452011-11-09 Ian Lance Taylor <iant@google.com>
2946
2947 * generic-morestack.c: Include <string.h>.
2948 (uintptr_type): Define.
2949 (struct initial_sp): Add dont_block_signals field. Reduce size of
2950 extra array by 1.
2951 (allocate_segment): Set prev field to NULL. Don't set
2952 __morestack_current_segment or __morestack_segments.
2953 (__generic_morestack): Update current->prev and *pp after calling
2954 allocate_segment.
2955 (__morestack_block_signals): Don't do anything if
2956 dont_block_signals is set.
2957 (__morestack_unblock_signals): Likewise.
2958 (__generic_findstack): Check for initial_sp == NULL. Add casts to
2959 uintptr_type.
2960 (__splitstack_block_signals): New function.
2961 (enum __splitstack_content_offsets): Define.
2962 (__splitstack_getcontext, __splitstack_setcontext): New functions.
2963 (__splitstack_makecontext): New function.
2964 (__splitstack_block_signals_context): New function.
2965 (__splitstack_find_context): New function.
2966 * config/i386/morestack.S (__morestack_get_guard): New function.
2967 (__morestack_set_guard, __morestack_make_guard): New functions.
2968 * libgcc-std.ver.in: Add new functions to GCC_4.7.0.
2969
e3d871e4
RO
29702011-11-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2971
2972 * config.host (i[34567]86-*-cygwin*): Move i386/t-mingw-pthread ...
2973 (i[34567]86-*-mingw*): ... here.
2974 (x86_64-*-mingw*): ... here.
2975
e55cef40
RO
29762011-11-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2977
2978 * config/c6x/t-elf (LIB2ADD): Add instead of assigning.
2979
5366b186
NS
29802011-11-07 Nathan Sidwell <nathan@acm.org>
2981
2982 * libgcov.c (struct gcov_fn_buffer): New struct.
2983 (buffer_fn_data): New helper.
2984 (gcov_exit): Rework for new gcov data structures.
2985
74155a6f
GJL
29862011-11-07 Georg-Johann Lay <avr@gjlay.de>
2987
2988 PR target/49313
2989 * config/avr/lib1funcs.S (__divmodhi4, __divmodsi4): Tweak speed.
2990
200feb07
RO
29912011-11-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2992
2993 * config.host (tmake_file): Correct comment.
2994 (bfin*-elf*): Remove bfin/t-elf from tmake_file, add
2995 t-libgcc-pic.
2996 (bfin*-uclinux*): Likewise.
2997 (bfin*-linux-uclibc*): Likewise.
2998 (xstormy16-*-elf): Add stormy16/t-stormy16 to tmake_file.
2999
3000 * config/arm/t-elf (HOST_LIBGCC2_CFLAGS): Append instead of
3001 assigning.
3002 * config/arm/t-strongarm-elf (HOST_LIBGCC2_CFLAGS): Likewise.
3003 * config/avr/t-avr (HOST_LIBGCC2_CFLAGS): Likewise.
3004 * config/c6x/t-elf (HOST_LIBGCC2_CFLAGS): Likewise.
3005 * config/h8300/t-h8300 (HOST_LIBGCC2_CFLAGS): Likewise.
3006 * config/lm32/t-elf (HOST_LIBGCC2_CFLAGS): Likewise.
3007 * config/m32r/t-m32r (HOST_LIBGCC2_CFLAGS): Likewise.
3008 * config/mcore/t-mcore (HOST_LIBGCC2_CFLAGS): Likewise.
3009 * config/mips/t-elf (HOST_LIBGCC2_CFLAGS): Likewise.
3010 * config/mmix/t-mmix (HOST_LIBGCC2_CFLAGS): Likewise.
3011 * config/pdp11/t-pdp11 (HOST_LIBGCC2_CFLAGS): Likewise.
3012 * config/picochip/t-picochip (HOST_LIBGCC2_CFLAGS): Likewise.
3013 * config/stormy16/t-stormy16 (HOST_LIBGCC2_CFLAGS): Likewise.
3014 * config/t-openbsd-thread (HOST_LIBGCC2_CFLAGS): Likewise.
3015
3016 * config/bfin/t-elf: Remove.
3017 * config/t-vxworks (HOST_LIBGCC2_CFLAGS): Remove.
3018
c9cd1a07
RO
30192011-11-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3020
3021 * config.host (*-*-rtems*): Add t-rtems to tmake_file.
3022 (i[34567]86-*-rtems*): Remove t-rtems from tmake_file.
3023 (lm32-*-elf*, lm32-*-rtems*): Split into ...
3024 (lm32-*-elf*): ... this.
3025 (lm32-*-rtems*): ... and this.
3026 Add to tmake_file.
3027 (m32r-*-rtems*): Add to tmake_file.
3028 (moxie-*-rtems*): Likewise.
3029 (sparc-*-rtems*): Likewise.
3030 Remove t-rtems from tmake_file.
3031 (sparc64-*-rtems*): Likewise.
3032 * config/t-rtems (HOST_LIBGCC2_CFLAGS): Use LIBGCC2_INCLUDES
3033 instead.
3034
9fbcc75d
RO
30352011-11-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3036
3037 PR bootstrap/50982
3038 * config/gthr-posix.h: Move ...
3039 * gthr-posix.h: ... here.
3040 * config/gthr-lynx.h: Reflect this.
3041 * config/gthr-vxworks.h: Likewise.
3042 * config/rs6000/gthr-aix.h: Likewise.
3043 * configure.ac (target_thread_file): Likewise.
3044 * configure: Regenerate.
3045
76644b68
SH
30462011-11-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
3047
3048 * config.host (arm*-*-rtemseabi*): New target.
3049
5e490f2a
JDA
30502011-11-06 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3051
3052 PR other/50991
3053 * Makefile.in: Make EXTRA_PARTS depend on libgcc_tm.h instead of
3054 extra-parts.
3055
feeeff5c
JR
30562011-11-05 Joern Rennecke <joern.rennecke@embecosm.com>
3057
3058 * config.host (epiphany-*-elf*): New configuration.
3059 * config/epiphany: New Directory.
3060
d618bb2c
RC
30612011-11-05 Ralf Corsépius <ralf.corsepius@rtems.org>
3062
3063 * config.host (avr-*-rtems*): Add config/avr/t-rtems.
3064 * config/avr/t-rtems: New.
3065 Filter out _exit from LIB1ASMFUNCS.
3066
1bb6f778
DM
30672011-11-04 David S. Miller <davem@davemloft.net>
3068
3069 * configure.ac: Test for 64-bit addresses on !x86 using __LP64__.
3070 * configure: Rebuild.
3071
9a7f7422
AK
30722011-11-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
3073
3074 * config/s390/t-crtstuff: Add -fPIC to CRTSTUFF_T_CFLAGS_S
3075 variable.
3076
e4fe948a
GJL
30772011-11-04 Georg-Johann Lay <avr@gjlay.de>
3078
3079 PR target/50931
3080 * config/t-avr (LIB1ASMFUNCS): Add _divmodpsi4, _udivmodpsi4.
3081 * config/lib1funcs.S (__udivmodpsi4, __divmodpsi4): New functions.
3082
7084e037
JS
30832011-11-04 Joel Sherrill <joel.sherrill@oarcorp.com>
3084
3085 PR target/50989
3086 * config.host (sparc-*-rtems*): Add sparc/t-softmul.
3087
1a032034
RO
30882011-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3089
3090 * config/c6x/t-elf (LIB2ADDEH): Set.
3091 * config/c6x/t-c6x-elf: Remove.
3092
d385f772
RO
30932011-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3094
3095 * config/i386/sol2-ci.S: Rename to ...
3096 * config/i386/crti.S: ... this.
3097 * config/i386/sol2-cn.S: Rename to ...
3098 * config/i386/crtn.S: ... this.
3099 * config/sparc/sol2-ci.S: Rename to ...
3100 * config/sparc/crti.S: ... this.
3101 * config/sparc/sol2-cn.S: Rename to ...
3102 * config/sparc/crtn.S: ... this.
3103 * config/t-sol2 (CUSTOM_CRTIN): Remove.
3104 (crti.o, crtn.o): Remove.
3105
1ba878a9
TG
31062011-11-04 Tristan Gingold <gingold@adacore.com>
3107
3108 * config/ia64/fde-vms.c: Do not include md-unwind-support.h
3109
02750c15
KK
31102011-11-04 Kaz Kojima <kkojima@gcc.gnu.org>
3111
3112 * config/sh/t-sh: Use $(gcc_compile) instead of $(compile).
3113
bf86b067
HPN
31142011-11-03 Hans-Peter Nilsson <hp@axis.com>
3115
3116 * config.host (crisv32-*-none, cris-*-none): Remove.
3117 (crisv32-*-elf): Append to tmake_file, don't just set it.
3118 (cris-*-elf): Add missing t-fdpbit to tmake_file.
3119
d0bc53bd
RO
31202011-11-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3121
3122 * config/rs6000/t-ppccomm (ecrti$(objext)): Use $<.
3123 (ecrtn$(objext)): Likewise.
3124 (ncrti$(objext)): Likewise.
3125 (ncrtn$(objext)): Likewise.
3126
036da830
AS
31272011-11-03 Andreas Schwab <schwab@redhat.com>
3128
3129 * config/ia64/t-ia64 (crtbeginS.o): Fix whitespace damage.
3130
d2a7d041
DM
31312011-11-02 David S. Miller <davem@davemloft.net>
3132
3133 * configure.ac: Set host_address on sparc too.
3134 * configure: Regenerate.
3135 * config.host: Add sparc/t-linux64 and sparc/t-softmul conditionally
3136 based upon host_address.
3137 * config/sparc/t-linux64: Set CRTSTUFF_T_CFLAGS unconditionally.
3138
af8ed618
JM
31392011-11-02 Jason Merrill <jason@redhat.com>
3140
3141 * config/rs6000/t-ppccomm: Add missing \.
3142
5d1c8e77
RO
31432011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3144
3145 * gthr-single.h, gthr.h: New files.
3146 * config/gthr-lynx.h, config/gthr-posix.h., config/gthr-rtems.h,
3147 config/gthr-vxworks.h, config/i386/gthr-win32.h,
3148 config/mips/gthr-mipssde.h, config/pa/gthr-dce.h,
3149 config/rs6000/gthr-aix.h, config/s390/gthr-tpf.h: New files.
3150 * config/i386/gthr-win32.c: Include "gthr-win32.h".
3151 * configure.ac (thread_header): New variable.
3152 Set it depending on target_thread_file.
3153 (gthr-default.h): Link from $thread_header.
3154 * configure: Regenerate.
3155 * Makefile.in (LIBGCC2_CFLAGS): Remove $(GTHREAD_FLAGS).
3156
852b75ed
RO
31572011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3158
3159 * configure.ac (tm_file_): New variable.
3160 Determine from tm_file.
3161 (tm_file, tm_defines): Substitute.
3162 * configure: Regenerate.
3163 * mkheader.sh: New file.
3164 * Makefile.in (clean): Remove libgcc_tm.h.
3165 ($(objects)): Depend on libgcc_tm.h.
3166 (libgcc_tm_defines, libgcc_tm_file): New variables.
3167 (libgcc_tm.h, libgcc_tm.stamp): New targets.
3168 ($(libgcc-objects), $(libgcc-s-objects), $(libgcc-eh-objects))
3169 ($(libgcov-objects), $(libunwind-objects), $(libunwind-s-objects))
3170 ($(extra-parts)): Depend on libgcc_tm.h.
3171 * config.host (tm_defines, tm_file): New variable.
3172 (arm*-*-linux*): Set tm_file for arm*-*-linux-*eabi.
3173 (arm*-*-uclinux*): Set tm_file for arm*-*-uclinux*eabi.
3174 (arm*-*-eabi*, arm*-*-symbianelf*): Set tm_file.
3175 (avr-*-rtems*): Likewise.
3176 (avr-*-*): Likewise.
3177 (frv-*-elf): Likewise.
3178 (frv-*-*linux*): Likewise.
3179 (h8300-*-rtems*): Likewise.
3180 (h8300-*-elf*): Likewise.
3181 (i[34567]86-*-darwin*): Likewise.
3182 (x86_64-*-darwin*): Likewise.
3183 (rx-*-elf): Likewise.
3184 (tic6x-*-uclinux): Likewise.
3185 (tic6x-*-elf): Likewise.
3186 (i[34567]86-*-linux*, x86_64-*-linux*): Likewise.
3187 * config/alpha/gthr-posix.c: Include libgcc_tm.h.
3188 * config/i386/cygming-crtbegin.c: Likewise.
3189 * config/i386/cygming-crtend.c: Likewise.
3190 * config/ia64/fde-vms.c: Likewise.
3191 * config/ia64/unwind-ia64.c: Likewise.
3192 * config/libbid/bid_gcc_intrinsics.h: Likewise.
3193 * config/rs6000/darwin-fallback.c: Likewise.
3194 * config/stormy16/lib2funcs.c: Likewise.
3195 * config/xtensa/unwind-dw2-xtensa.c: Likewise.
3196 * crtstuff.c: Likewise.
3197 * dfp-bit.h: Likewise.
3198 * emutls.c: Likewise.
3199 * fixed-bit.c: Likewise.
3200 * fp-bit.c: Likewise.
3201 * generic-morestack-thread.c: Likewise.
3202 * generic-morestack.c: Likewise.
3203 * libgcc2.c: Likewise.
3204 * libgcov.c: Likewise.
3205 * unwind-dw2-fde-dip.c: Likewise.
3206 * unwind-dw2-fde.c: Likewise.
3207 * unwind-dw2.c: Likewise.
3208 * unwind-sjlj.c: Likewise.
3209
f9989b51
RO
32102011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3211
3212 * configure.ac: Include ../config/picflag.m4.
3213 (GCC_PICFLAG): Call it.
3214 Substitute.
3215 * configure: Regenerate.
3216 * Makefile.in (gcc_srcdir): Remove.
3217 (LIBGCC2_DEBUG_CFLAGS, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES)
3218 (HOST_LIBGCC2_CFLAGS, PICFLAG, LIB2FUNCS_ST, LIB2FUNCS_EXCLUDE)
3219 (LIB2_DIVMOD_FUNCS, LIB2ADD, LIB2ADD_ST): Set.
3220 ($(lib2funcs-o), $(lib2funcs-s-o), $(lib2-divmod-o))
3221 ($(lib2-divmod-s-o)): Use $(srcdir) to refer to libgcc2.c.
3222 Use $<.
3223 Remove comment.
3224 * libgcc2.c, libgcc2.h, gbl-ctors.h, longlong.h: New files.
3225 * siditi-object.mk ($o$(objext), $(o)_s$(objext)): Use $(srcdir)
3226 to refer to libgcc2.c.
3227 Use $<.
3228 * config/darwin-64.c: New file.
3229 * config/darwin-crt3.c: Remove comment.
3230 * config/divmod.c, config/floatunsidf.c, config/floatunsisf.c,
3231 config/floatunsitf.c, config/floatunsixf.c, config/udivmod.c,
3232 config/udivmodsi4.c: New files.
3233 * config/memcmp.c, config/memcpy.c, config/memmove.c,
3234 config/memset.c: New files.
3235 * config/t-crtstuff-pic (CRTSTUFF_T_CFLAGS_S): Use $(PICFLAG).
3236 * config/t-darwin (HOST_LIBGCC2_CFLAGS): Set.
3237 * config/t-freebsd-thread, config/t-libgcc-pic: New files.
3238 * config/t-libunwind (HOST_LIBGCC2_CFLAGS): Set.
3239 * config/t-openbsd-thread: New file.
3240 * config/t-sol2 (HOST_LIBGCC2_CFLAGS): Remove.
3241 * config/t-vxworks, config/vxlib-tls.c, config/vxlib.c: New files.
3242 * config/alpha/gthr-posix.c, config/alpha/qrnnd.S: New files.
3243 * config/alpha/t-alpha (LIB2ADD): Use $(srcdir) to refer to
3244 qrnnd.S.
3245 Adapt filename.
3246 * config/alpha/t-osf-pthread (LIB2ADD): Use $(srcdir)/config/alpha
3247 to refer to gthr-posix.c.
3248 * config/alpha/t-vms (LIB2ADD): Set.
3249 * config/alpha/vms-gcc_shell_handler.c: New file.
3250 * config/arm/bpabi.c, config/arm/fp16.c,
3251 config/arm/linux-atomic.c, config/arm/linux-atomic-64bit.c,
3252 config/arm/unaligned-funcs.c: New files.
3253 * config/arm/t-bpabi (LIB2ADD, LIB2ADD_ST): Set.
3254 * config/arm/t-elf (HOST_LIBGCC2_CFLAGS): Set.
3255 * config/arm/t-linux: Likewise.
3256 * config/arm/t-linux-eabi (LIB2ADD_ST): Add.
3257 * config/arm/t-netbsd: New file.
3258 * config/arm/t-strongarm-elf (HOST_LIBGCC2_CFLAGS): Set.
3259 * config/arm/t-symbian (LIB2ADD_ST): Set.
3260 * config/avr/t-avr (LIB2FUNCS_EXCLUDE, HOST_LIBGCC2_CFLAGS): Set.
3261 * config/bfin/t-crtstuff (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
3262 * config/bfin/t-elf: New file.
3263 * config/c6x/eqd.c, config/c6x/eqf.c, config/c6x/ged.c,
3264 config/c6x/gef.c, config/c6x/gtd.c, config/c6x/gtf.c,
3265 config/c6x/led.c, config/c6x/lef.c, config/c6x/ltd.c,
3266 config/c6x/ltf.c: New files.
3267 * config/c6x/t-elf (LIB2FUNCS_EXCLUDE, LIB2ADD)
3268 (HOST_LIBGCC2_CFLAGS): Set.
3269 * config/c6x/t-uclinux (HOST_LIBGCC2_CFLAGS): Set.
3270 (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
3271 * config/cris/arit.c, config/cris/mulsi3.S, config/cris/t-cris:
3272 New files.
3273 * config/cris/t-elfmulti (LIB2ADD_ST): Set.
3274 * config/cris/t-linux (HOST_LIBGCC2_CFLAGS): Remove.
3275 * config/frv/cmovd.c, config/frv/cmovh.c, config/frv/cmovw.c,
3276 config/frv/modi.c, config/frv/uitod.c, config/frv/uitof.c,
3277 config/frv/ulltod.c, config/frv/ulltof.c, config/frv/umodi.c: New
3278 files.
3279 * config/frv/t-frv (LIB2ADD): Set.
3280 * config/frv/t-linux (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
3281 * config/h8300/clzhi2.c, config/h8300/ctzhi2.c,
3282 config/h8300/fixunssfsi.c, config/h8300/parityhi2.c,
3283 config/h8300/popcounthi2.c: New files.
3284 * config/h8300/t-h8300 (LIB2ADD, HOST_LIBGCC2_CFLAGS): Set.
3285 * config/i386/gthr-win32.c: New file.
3286 * config/i386/t-cygming (LIBGCC2_INCLUDES): Set.
3287 * config/i386/t-cygwin: Likewise.
3288 * config/i386/t-darwin, config/i386/t-darwin64,
3289 config/i386/t-gthr-win32, config/i386/t-interix: New files.
3290 * config/i386/t-nto (HOST_LIBGCC2_CFLAGS): Set.
3291 (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
3292 * config/i386/t-sol2 (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
3293 * config/ia64/quadlib.c: New file.
3294 * config/ia64/t-hpux (LIB2ADD): Set.
3295 * config/ia64/t-ia64: Add comment.
3296 * config/iq2000/lib2funcs.c, config/iq2000/t-iq2000: New files.
3297 * config/lm32/t-uclinux (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
3298 (HOST_LIBGCC2_CFLAGS): Append, remove -fPIC.
3299 * config/m32c/lib2funcs.c, config/m32c/trapv.c: New files.
3300 * config/m32c/t-m32c (LIB2ADD): Set.
3301 * config/m32r/t-linux (HOST_LIBGCC2_CFLAGS): Set.
3302 * config/m32r/t-m32r: Likewise.
3303 * config/m68k/fpgnulib.c: New file.
3304 * config/m68k/t-floatlib (LIB2ADD): Set.
3305 (xfgnulib.c): New target.
3306 * config/mcore/t-mcore (HOST_LIBGCC2_CFLAGS): Set.
3307 * config/mep/lib2funcs.c, config/mep/tramp.c: New files.
3308 * config/mep/t-mep (LIB2ADD): Set.
3309 * config/microblaze/divsi3.asm: Rename to divsi3.S.
3310 * config/microblaze/moddi3.asm: Rename to moddi3.S.
3311 * config/microblaze/modsi3.asm: Rename to modsi3.S.
3312 * config/microblaze/muldi3_hard.asm: Rename to hard.S.
3313 * config/microblaze/mulsi3.asm: Rename to mulsi3.S.
3314 * config/microblaze/stack_overflow_exit.asm: Rename to exit.S.
3315 * config/microblaze/udivsi3.asm: Rename to udivsi3.S.
3316 * config/microblaze/umodsi3.asm: Rename to umodsi3.S.
3317 * config/microblaze/t-microblaze (LIB2ADD): Reflect this.
3318 * config/mips/t-elf, config/mips/t-vr, config/mips/vr4120-div.S:
3319 New files.
3320 * config/mips/t-mips (LIB2_SIDITI_CONV_FUNCS): Set.
3321 * config/mmix/t-mmix (HOST_LIBGCC2_CFLAGS): Set.
3322 * config/pa/fptr.c, config/pa/lib2funcs.S,
3323 config/pa/linux-atomic.c, config/pa/quadlib.c: New files.
3324 * config/pa/t-linux (HOST_LIBGCC2_CFLAGS): Set.
3325 (LIB2ADD, LIB2ADD_ST): Set.
3326 * config/pa/t-hpux, config/pa/t-hpux10, config/pa/t-pa64: New files.
3327 * config/pa/t-linux (HOST_LIBGCC2_CFLAGS, LIB2ADD, LIB2ADD_ST):
3328 Set.
3329 * config/pa/t-linux64 (LIB2ADD_ST, HOST_LIBGCC2_CFLAGS): Set.
3330 * config/pdp11/t-pdp11: New file.
3331 * config/picochip/libgccExtras/adddi3.S,
3332 config/picochip/libgccExtras/ashlsi3.S,
3333 config/picochip/libgccExtras/ashrsi3.S,
3334 config/picochip/libgccExtras/clzsi2.S,
3335 config/picochip/libgccExtras/cmpsi2.S,
3336 config/picochip/libgccExtras/divmod15.S,
3337 config/picochip/libgccExtras/divmodhi4.S,
3338 config/picochip/libgccExtras/divmodsi4.S,
3339 config/picochip/libgccExtras/lshrsi3.S,
3340 config/picochip/libgccExtras/parityhi2.S,
3341 config/picochip/libgccExtras/popcounthi2.S,
3342 config/picochip/libgccExtras/subdi3.S,
3343 config/picochip/libgccExtras/ucmpsi2.S,
3344 config/picochip/libgccExtras/udivmodhi4.S,
3345 config/picochip/libgccExtras/udivmodsi4.S: New files.
3346 * config/picochip/t-picochip (LIB2ADD, HOST_LIBGCC2_CFLAGS)
3347 (LIBGCC2_DEBUG_CFLAGS, RANLIB_FOR_TARGET): Set.
3348 * config/rs6000/crtresfpr.S, config/rs6000/crtresgpr.S,
3349 config/rs6000/crtresxfpr.S, config/rs6000/crtresxgpr.S,
3350 config/rs6000/crtsavfpr.S, config/rs6000/crtsavgpr.S)
3351 config/rs6000/darwin-asm.h, config/rs6000/darwin-fpsave.S,
3352 config/rs6000/darwin-gpsave.S, config/rs6000/darwin-tramp.S,
3353 config/rs6000/darwin-vecsave.S, config/rs6000/darwin-world.S: New
3354 files.
3355 * config/rs6000/t-darwin (LIB2ADD, LIB2ADD_ST)
3356 (HOST_LIBGCC2_CFLAGS): Set.
3357 * config/rs6000/t-darwin64: New file.
3358 * config/rs6000/t-linux64 (HOST_LIBGCC2_CFLAGS): Set.
3359 * config/rs6000/t-lynx, config/rs6000/t-netbsd: New files.
3360 * config/rs6000/t-ppccomm (LIB2ADD): Add
3361 $(srcdir)/config/rs6000/tramp.S.
3362 (LIB2ADD_ST): Use $(srcdir)/config/rs6000 to refer to sources.
3363 Add $(srcdir)/config/rs6000/eabi.S.
3364 (crtsavfpr.S, crtresfpr.S, crtsavgpr.S, crtresgpr.S, crtresxfpr.S)
3365 (crtresxgpr.S, e500crtres32gpr.S, e500crtres64gpr.S)
3366 (e500crtres64gprctr.S, e500crtrest32gpr.S, e500crtrest64gpr.S)
3367 (e500crtresx32gpr.S, e500crtresx64gpr.S, e500crtsav32gpr.S)
3368 (e500crtsav64gpr.S, e500crtsav64gprctr.S, e500crtsavg32gpr.S)
3369 (e500crtsavg64gpr.S, e500crtsavg64gprctr.S): Remove.
3370 * config/rs6000/tramp.S: New file.
3371 * config/s390/t-tpf: Remove.
3372 * config/sh/linux-atomic.S: New file.
3373 * config/sh/t-linux (LIB2ADD): Set.
3374 (HOST_LIBGCC2_CFLAGS): Append, remove -fpic.
3375 * config/sh/t-netbsd (LIB2ADD, HOST_LIBGCC2_CFLAGS): Set.
3376 * config/sh/t-sh (unwind-dw2-Os-4-200.o): Use $(srcdir) to refer
3377 to unwind-dw2.c.
3378 (HOST_LIBGCC2_CFLAGS): Set.
3379 * config/sparc/t-sol2 (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
3380 * config/spu/divmodti4.c, config/spu/divv2df3.c,
3381 config/spu/float_disf.c, config/spu/float_unsdidf.c,
3382 config/spu/float_unsdisf.c, config/spu/float_unssidf.c,
3383 config/spu/mfc_multi_tag_release.c,
3384 config/spu/mfc_multi_tag_reserve.c, config/spu/mfc_tag_release.c,
3385 config/spu/mfc_tag_reserve.c, config/spu/mfc_tag_table.c,
3386 config/spu/multi3.c: New files.
3387 * config/spu/t-elf (LIB2ADD, LIB2ADD_ST, LIB2_SIDITI_CONV_FUNCS)
3388 (HOST_LIBGCC2_CFLAGS): Set.
3389 * config/stormy16/ashlsi3.c, config/stormy16/ashrsi3.c,
3390 config/stormy16/clzhi2.c, config/stormy16/cmpsi2.c,
3391 config/stormy16/ctzhi2.c, config/stormy16/divsi3.c,
3392 config/stormy16/ffshi2.c, config/stormy16/lib2.c,
3393 config/stormy16/lshrsi3.c, config/stormy16/modsi3.c,
3394 config/stormy16/parityhi2.c, config/stormy16/popcounthi2.c,
3395 config/stormy16/t-stormy16, config/stormy16/ucmpsi2.c,
3396 config/stormy16/udivmodsi4.c, config/stormy16/udivsi3.c,
3397 config/stormy16/umodsi3.c: New files.
3398 * config/xtensa/lib2funcs.S: New file.
3399 * config/xtensa/t-elf (HOST_LIBGCC2_CFLAGS): Set.
3400 * config/xtensa/t-xtensa (LIB2ADD): Set.
3401 * config.host (*-*-darwin*): Add t-libgcc-pic to tmake_file.
3402 (*-*-freebsd*): Add t-freebsd, t-libgcc-pic to tmake_file.
3403 Add t-freebsd-thread to tmake_file for posix threads.
3404 (*-*-linux*, frv-*-*linux*, *-*-kfreebsd*-gnu, *-*-knetbsd*-gnu)
3405 (*-*-gnu*, *-*-kopensolaris*-gnu): Add t-libgcc-pic to tmake_file.
3406 (*-*-lynxos*): Likewise.
3407 (*-*-netbsd*): Likewise.
3408 (*-*-openbsd*): Likewise.
3409 Add t-openbsd-thread to tmake_file for posix threads.
3410 (*-*-solaris2*): Add t-libgcc-pic to tmake_file.
3411 (*-*-vxworks*): Set tmake_file.
3412 (alpha*-*-linux*): Add alpha/t-alpha, alpha/t-ieee to tmake_file.
3413 (alpha*-*-freebsd*): Likewise.
3414 (alpha*-*-netbsd*): Likewise.
3415 (alpha*-*-openbsd*): Likewise.
3416 (alpha*-dec-osf5.1*): Remove qrnnd.o, gthr-posix.o from extra_parts.
3417 (alpha64-dec-*vms*): Add alpha/t-alpha, alpha/t-ieee to tmake_file.
3418 (alpha*-dec-*vms*): Likewise.
3419 (arm*-*-netbsdelf*): Add arm/t-netbsd to tmake_file.
3420 (bfin*-elf*): Add bfin/t-elf to tmake_file.
3421 (bfin*-uclinux*): Likewise.
3422 (bfin*-linux-uclibc*): Likewise.
3423 (crisv32-*-elf): Add cris/t-cris to tmake_file.
3424 (crisv32-*-none): Likewise.
3425 (cris-*-elf): Likewise.
3426 (cris-*-none): Likewise.
3427 (cris-*-linux*, crisv32-*-linux*): Likewise.
3428 (hppa[12]*-*-hpux10*): Add pa/t-hpux pa/t-hpux10, t-libgcc-pic to
3429 tmake_file.
3430 (hppa*64*-*-hpux11*): Add pa/t-hpux, pa/t-pa64, t-libgcc-pic to
3431 tmake_file.
3432 (hppa[12]*-*-hpux11*): Add pa/t-hpux, t-libgcc-pic to tmake_file.
3433 (i[34567]86-*-elf*): Add t-libgcc-pic to tmake_file.
3434 (x86_64-*-elf*): Likewise.
3435 (i[34567]86-*-nto-qnx*): Likewise.
3436 (i[34567]86-*-mingw*): Add i386/t-gthr-win32 to tmake_file for
3437 win32 threads.
3438 (x86_64-*-mingw*): Likewise.
3439 (i[34567]86-*-interix3*): Add i386/t-interix to tmake_file.
3440 (lm32-*-uclinux*): Add t-libgcc-pic to tmake_file.
3441 (mipsisa32-*-elf*, mipsisa32el-*-elf*, mipsisa32r2-*-elf*)
3442 (mipsisa32r2el-*-elf*, mipsisa64-*-elf*, mipsisa64el-*-elf*)
3443 (mipsisa64r2-*-elf*, mipsisa64r2el-*-elf*): Add mips/t-elf to
3444 tmake_file.
3445 (mipsisa64sr71k-*-elf*): Likewise.
3446 (mipsisa64sb1-*-elf*, mipsisa64sb1el-*-elf*): Likewise.
3447 (mips-*-elf*, mipsel-*-elf*): Likewise.
3448 (mips64-*-elf*, mips64el-*-elf*): Likewise.
3449 (mips64orion-*-elf*, mips64orionel-*-elf*): Likewise.
3450 (mips*-*-rtems*): Likewise.
3451 (mips64vr-*-elf*, mips64vrel-*-elf*): Add mips/t-elf, mips/t-vr
3452 to tmake_file.
3453 (pdp11-*-*): Add pdp11/t-pdp11 to tmake_file.
3454 (powerpc64-*-darwin*): Add rs6000/t-darwin64 to tmake_file.
3455 (s390x-ibm-tpf*): Add t-libgcc-pic to tmake_file.
3456 (spu-*-elf*): Likewise.
3457 (tic6x-*-uclinux): Add t-libgcc-pic to tmake_file.
3458
45b86625
RO
34592011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3460
3461 * Makefile.in ($(lib1asmfuncs-o), $(lib1asmfuncs-s-o)): Use
3462 $(srcdir) to refer to $(LIB1ASMSRC).
3463 Use $<.
3464 * config/arm/bpabi-v6m.S, config/arm/bpabi.S,
3465 config/arm/ieee754-df.S, config/arm/ieee754-sf.S,
3466 config/arm/lib1funcs.S: New files.
3467 * config/arm/libunwind.S [!__symbian__]: Use lib1funcs.S.
3468 * config/arm/t-arm: New file.
3469 * config/arm/t-bpabi (LIB1ASMFUNCS): Set.
3470 * config/arm/t-elf, config/arm/t-linux, config/arm/t-linux-eabi,
3471 config/arm/t-strongarm-elf: New files.
3472 * config/arm/t-symbian (LIB1ASMFUNCS): Set.
3473 * config/arm/t-vxworks, config/arm/t-wince-pe: New files.
3474 * config/avr/lib1funcs.S: New file.
3475 * config/avr/t-avr (LIB1ASMSRC, LIB1ASMFUNCS): Set.
3476 * config/bfin/lib1funcs.S, config/bfin/t-bfin: New files.
3477 * config/c6x/lib1funcs.S: New file.
3478 * config/c6x/t-elf (LIB1ASMSRC, LIB1ASMFUNCS): Set.
3479 * config/fr30/lib1funcs.S, config/fr30/t-fr30: New files.
3480 * config/frv/lib1funcs.S: New file.
3481 * config/frv/t-frv (LIB1ASMSRC, LIB1ASMFUNCS): Set.
3482 * config/h8300/lib1funcs.S, config/h8300/t-h8300: New files.
3483 * config/i386/cygwin.S, config/i386/t-chkstk: New files.
3484 * config/ia64/__divxf3.asm: Rename to ...
3485 * config/ia64/__divxf3.S: ... this.
3486 Adapt lib1funcs.asm filename.
3487 * config/ia64/_fixtfdi.asm: Rename to ...
3488 * config/ia64/_fixtfdi.S: ... this.
3489 Adapt lib1funcs.asm filename.
3490 * config/ia64/_fixunstfdi.asm: Rename to ...
3491 * config/ia64/_fixunstfdi.S: ... this.
3492 Adapt lib1funcs.asm filename.
3493 * config/ia64/_floatditf.asm: Rename to ...
3494 * config/ia64/_floatditf.S: ... this.
3495 Adapt lib1funcs.asm filename.
3496 * config/ia64/lib1funcs.S: New file.
3497 * config/ia64/t-hpux (LIB1ASMFUNCS): Set.
3498 * config/ia64/t-ia64 (LIB1ASMSRC, LIB1ASMFUNCS): Set.
3499 * config/ia64/t-softfp-compat (libgcc1-tf-compats): Adapt suffix.
3500 * config/m32c/lib1funcs.S, config/m32c/t-m32c: New files.
3501 * config/m68k/lb1sf68.S, config/m68k/t-floatlib: New files.
3502 * config/mcore/lib1funcs.S, config/mcore/t-mcore: New files.
3503 * config/mep/lib1funcs.S: New file.
3504 * config/mep/t-mep (LIB1ASMSRC, LIB1ASMFUNCS): Set.
3505 * config/mips/mips16.S: New file.
3506 * config/mips/t-mips16 (LIB1ASMSRC, LIB1ASMFUNCS): Set.
3507 * config/pa/milli64.S: New file.
3508 * config/pa/t-linux, config/pa/t-linux64: New files.
3509 * config/picochip/lib1funcs.S: New file.
3510 * config/picochip/t-picochip (LIB1ASMSRC, LIB1ASMFUNCS): Set.
3511 * config/sh/lib1funcs.S, config/sh/lib1funcs.h: New files.
3512 * config/sh/t-linux (LIB1ASMFUNCS_CACHE): Set.
3513 * config/sh/t-netbsd: New file.
3514 * config/sh/t-sh (LIB1ASMSRC, LIB1ASMFUNCS, LIB1ASMFUNCS_CACHE): Set.
3515 Use $(srcdir) to refer to lib1funcs.S, adapt filename.
3516 * config/sh/t-sh64: New file.
3517 * config/sparc/lb1spc.S: New file.
3518 * config/sparc/t-softmul (LIB1ASMSRC): Adapt sparc/lb1spc.asm
3519 filename.
3520 * config/v850/lib1funcs.S, config/v850/t-v850: New files.
3521 * config/vax/lib1funcs.S, config/vax/t-linux: New files.
3522 * config/xtensa/ieee754-df.S, config/xtensa/ieee754-sf.S,
3523 config/xtensa/lib1funcs.S: New files.
3524 * config/xtensa/t-xtensa (LIB1ASMSRC, LIB1ASMFUNCS): Set.
3525 * config.host (arm-wrs-vxworks): Add arm/t-arm, arm/t-vxworks to
3526 tmake_file.
3527 (arm*-*-freebsd*): Add arm/t-arm, arm/t-strongarm-elf to tmake_file.
3528 (arm*-*-netbsdelf*): Add arm/t-arm to tmake_file.
3529 (arm*-*-linux*): Likewise.
3530 Add arm/t-elf, arm/t-bpabi, arm/t-linux-eabi to tmake_file for
3531 arm*-*-linux-*eabi, add arm/t-linux otherwise.
3532 (arm*-*-uclinux*): Add arm/t-arm, arm/t-elf to tmake_file.
3533 (arm*-*-ecos-elf): Likewise.
3534 (arm*-*-eabi*, arm*-*-symbianelf*): Likewise.
3535 (arm*-*-rtems*): Likewise.
3536 (arm*-*-elf): Likewise.
3537 (arm*-wince-pe*): Add arm/t-arm, arm/t-wince-pe to tmake_file.
3538 (avr-*-rtems*): Add to tmake_file, add avr/t-avr.
3539 (bfin*-elf*): Add bfin/t-bfin to tmake_file.
3540 (bfin*-uclinux*): Likewise.
3541 (bfin*-linux-uclibc*): Likewise.
3542 (bfin*-rtems*): Likewise.
3543 (bfin*-*): Likewise.
3544 (fido-*-elf): Merge into m68k-*-elf*.
3545 (fr30-*-elf)): Add fr30/t-fr30 to tmake_file.
3546 (frv-*-*linux*): Add frv/t-frv to tmake_file.
3547 (h8300-*-rtems*): Add h8300/t-h8300 to tmake_file.
3548 (h8300-*-elf*): Likewise.
3549 (hppa*64*-*-linux*): Add pa/t-linux, pa/t-linux64 to tmake_file.
3550 (hppa*-*-linux*): Add pa/t-linux to tmake_file.
3551 (i[34567]86-*-cygwin*): Add i386/t-chkstk to tmake_file.
3552 (i[34567]86-*-mingw*): Likewise.
3553 (x86_64-*-mingw*): Likewise.
3554 (i[34567]86-*-interix3*): Likewise.
3555 (ia64*-*-hpux*): Add ia64/t-ia64, ia64/t-hpux to tmake_file.
3556 (ia64-hp-*vms*): Add ia64/t-ia64 to tmake_file.
3557 (m68k-*-elf*): Also handle fido-*-elf.
3558 Add m68k/t-floatlib to tmake_file.
3559 (m68k-*-uclinux*): Add m68k/t-floatlib to tmake_file.
3560 (m68k-*-linux*): Likewise.
3561 (m68k-*-rtems*): Likewise.
3562 (mcore-*-elf): Add mcore/t-mcore to tmake_file.
3563 (sh-*-elf*, sh[12346l]*-*-elf*): Add sh/t-sh64 to tmake_file for
3564 sh64*-*-*.
3565 (sh-*-linux*, sh[2346lbe]*-*-linux*): Add sh/t-sh to tmake_file.
3566 Add sh/t-sh64 to tmake_file for sh64*-*-linux*.
3567 (sh-*-netbsdelf*, shl*-*-netbsdelf*, sh5-*-netbsd*)
3568 (sh5l*-*-netbsd*, sh64-*-netbsd*, sh64l*-*-netbsd*): Add sh/t-sh,
3569 sh/t-netbsd to tmake_file.
3570 Add sh/t-sh64 to tmake_file for sh5*-*-netbsd*, sh64*-netbsd*.
3571 (sh-*-rtems*): Add sh/t-sh to tmake_file.
3572 (sh-wrs-vxworks): Likewise.
3573 (sparc-*-linux*): Add sparc/t-softmul to tmake_file except for
3574 *-leon[3-9]*.
3575 (v850*-*-*): Add v850/t-v850 to tmake_file.
3576 (vax-*-linux*): Add vax/t-linux to tmake_file.
3577 (m32c-*-elf*, m32c-*-rtems*): Add m32c/t-m32c to tmake_file.
3578
5f73c6cc
RO
35792011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3580
3581 * crtstuff.c: New file.
3582 * Makefile.in (CRTSTUFF_CFLAGS): Define.
3583 (CRTSTUFF_T_CFLAGS): Define.
3584 (extra-parts, INSTALL_PARTS): Remove conditional assignments.
3585 (crtbegin$(objext), crtend$(objext), crtbeginS$(objext))
3586 (crtendS$(objext), crtbeginT.o): Use $(srcdir) to refer to
3587 crtstuff.c.
3588 Use $<.
3589 (crtbeginT.o): Use $(objext).
3590 [!CUSTOM_CRTIN] (crti$(objext), crtn$(objext)): New rules.
3591 (libgcc-extra-parts): Don't compare EXTRA_PARTS, GCC_EXTRA_PARTS.
3592 (gcc-extra-parts): Remove.
3593 * config.host (*-*-freebsd*): Add t-crtstuff-pic to tmake_file.
3594 Set extra_parts.
3595 (*-*-linux*, frv-*-*linux*, *-*-kfreebsd*-gnu, *-*-knetbsd*-gnu,
3596 *-*-gnu*): Also handle *-*-kopensolaris*-gnu.
3597 Add t-crtstuff-pic to tmake_file.
3598 (*-*-lynxos*): New case.
3599 Set tmake_file, extra_parts.
3600 (*-*-netbsd*): Add t-crtstuff-pic to tmake_file.
3601 Set extra_parts for *-*-netbsd*1.[7-9]*, *-*-netbsd[2-9]*,
3602 *-*-netbsdelf[2-9]*.
3603 (*-*-openbsd*): Add t-crtstuff-pic to tmake_file.
3604 (*-*-rtems*): Set extra_parts.
3605 (*-*-solaris2*): Remove t-crtin from tmake_file for Solaris < 10.
3606 (*-*-uclinux*): New case.
3607 Set extra_parts.
3608 (*-*-vms*): New case.
3609 Set tmake_file, extra_parts.
3610 (*-*-elf): Set extra_parts.
3611 (alpha*-*-freebsd*): Add crtbeginT.o to extra_parts.
3612 (alpha64-dec-*vms*): Append to tmake_file, remove vms/t-vms,
3613 vms/t-vms64.
3614 Set extra_parts.
3615 (alpha*-dec-*vms*): Append to tmake_file, remove vms/t-vms.
3616 Set extra_parts.
3617 (arm*-*-freebsd*): Add t-crtin to tmake_file.
3618 Add crtbegin.o, crtend.o, crti.o, crtn.o to extra_parts.
3619 (arm-wrs-vxworks): Append to tmake_file.
3620 Set extra_parts.
3621 (arm*-*-uclinux*): Set extra_parts.
3622 (arm*-*-ecos-elf): Likewise.
3623 (arm*-*-eabi*, arm*-*-symbianelf*): Set extra_parts for
3624 arm*-*-eabi*.
3625 (arm*-*-rtems*): Set extra_parts.
3626 (arm*-*-elf): Likewise.
3627 (avr-*-rtems*): Clear extra_parts.
3628 (bfin*-elf*): Add bfin/t-crtlibid, bfin/t-crtstuff to extra_parts.
3629 Set extra_parts.
3630 (bfin*-uclinux*): Likewise.
3631 (bfin*-linux-uclibc*): Add bfin/t-crtstuff to tmake_file.
3632 (bfin*-rtems*): Append to tmake_file.
3633 Set extra_parts.
3634 (bfin*-*): Likewise.
3635 (crisv32-*-elf, crisv32-*-none, cris-*-elf, cris-*-none): Split into ...
3636 (crisv32-*-elf): ... this.
3637 (crisv32-*-none): ... this.
3638 (cris-*-elf, cris-*-none): New cases.
3639 Add cris/t-elfmulti to tmake_file.
3640 (fr30-*-elf): Append to tmake_file.
3641 Set extra_parts.
3642 (frv-*-elf): Append to tmake_file, add frv/t-frv.
3643 Set extra_parts.
3644 (h8300-*-rtems*): Append to tmake_file.
3645 Set extra_parts.
3646 (h8300-*-elf*): Likewise.
3647 (hppa*64*-*-hpux11*): Add pa/t-stublib, pa/t-stublib64 to tmake_file.
3648 Set extra_parts.
3649 (hppa[12]*-*-hpux11*): Add pa/t-stublib to tmake_file.
3650 Set extra_parts.
3651 (i[34567]86-*-elf*): Add i386/t-crtstuff, t-crtstuff-pic to tmake_file.
3652 (x86_64-*-elf*): Likewise.
3653 (i[34567]86-*-freebsd*): Add i386/t-crtstuff to tmake_file.
3654 (x86_64-*-freebsd*): Likewise.
3655 (x86_64-*-netbsd*): Likewise.
3656 (i[34567]86-*-linux*): Likewise.
3657 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-knetbsd*-gnu)
3658 (i[34567]86-*-gnu*, i[34567]86-*-kopensolaris*-gnu): Likewise.
3659 (x86_64-*-linux*): Likewise.
3660 (x86_64-*-kfreebsd*-gnu, x86_64-*-knetbsd*-gnu): Likewise.
3661 (i[34567]86-*-lynxos*): Add t-crtstuff-pic, i386/t-crtstuff to
3662 tmake_file.
3663 Set extra_parts.
3664 (i[34567]86-*-nto-qnx*): Set tmake_file, extra_parts.
3665 (i[34567]86-*-rtems*): Append to tmake_file, remove t-crtin.
3666 Append to extra_parts, remove crtbegin.o, crtend.o.
3667 (ia64*-*-elf*): Append to extra_parts, remove crtbegin.o, crtend.o.
3668 (ia64*-*-freebsd*): Append to extra_parts, remove crtbegin.o,
3669 crtend.o, crtbeginS.o, crtendS.o.
3670 (ia64*-*-linux*): Comment extra_parts.
3671 (ia64-hp-*vms*): Append to tmake_file, remove vms/t-vms, vms/t-vms64.
3672 Set extra_parts.
3673 (iq2000*-*-elf*): Clear extra_parts.
3674 (lm32-*-elf*, lm32-*-rtems*): Add t-crtin to tmake_file.
3675 (lm32-*-uclinux*): Add to extra_parts, remove crtbegin.o, crtend.o
3676 (m32r-*-elf*, m32r-*-rtems*): Split off ...
3677 (m32r-*-rtems*): ... this.
3678 Add m32r/t-m32r to tmake_file.
3679 (m68k-*-elf*): Add t-crtin to tmake_file.
3680 (m68k-*-rtems*): Add crti.o, crtn.o to extra_parts.
3681 (mcore-*-elf): Likewise.
3682 (microblaze*-*-*): Set extra_parts.
3683 (mips*-sde-elf*): New case.
3684 Set tmake_file, extra_parts.
3685 (mipsisa32-*-elf*, mipsisa32el-*-elf*, mipsisa32r2-*-elf*)
3686 (mipsisa32r2el-*-elf*, mipsisa64-*-elf*, mipsisa64el-*-elf*)
3687 (mipsisa64r2-*-elf*, mipsisa64r2el-*-elf*): Add mips/t-crtstuff to
3688 tmake_file.
3689 Set extra_parts.
3690 (mipsisa64sr71k-*-elf*): Likewise.
3691 (mipsisa64sb1-*-elf*, mipsisa64sb1el-*-elf*): Likewise.
3692 (mips-*-elf*, mipsel-*-elf*): Likewise.
3693 (mips64-*-elf*, mips64el-*-elf*): Likewise.
3694 (mips64vr-*-elf*, mips64vrel-*-elf*): Likewise.
3695 (mips64orion-*-elf*, mips64orionel-*-elf*): Likewise.
3696 (mips*-*-rtems*): Likewise.
3697 (mipstx39-*-elf*, mipstx39el-*-elf*): Likewise.
3698 (moxie-*-*): Split into ...
3699 (moxie-*-elf, moxie-*-uclinux*): ... this.
3700 Add to extra_parts, remove crtbegin.o, crtend.o.
3701 (moxie-*-rtems*): New case.
3702 Set tmake_file.
3703 Clear extra_parts.
3704 (powerpc-*-freebsd*): Add rs6000/t-crtstuff to tmake_file.
3705 Set extra_parts.
3706 (powerpc-*-netbsd*): Add rs6000/t-netbsd to tmake_file.
3707 (powerpc-*-eabispe*): Add rs6000/t-crtstuff, t-crtstuff-pic to
3708 tmake_file.
3709 Set extra_parts.
3710 (powerpc-*-eabisimaltivec*): Add to tmake_file, add rs6000/t-ppccomm,
3711 rs6000/t-crtstuff, t-crtstuff-pic to tmake_file.
3712 Set extra_parts.
3713 (powerpc-*-eabisim*): Likewise.
3714 (powerpc-*-elf*): Likewise.
3715 (powerpc-*-eabialtivec*): Likewise.
3716 (powerpc-xilinx-eabi*): Likewise.
3717 (powerpc-*-eabi*): Likewise.
3718 (powerpc-*-rtems*): Likewise.
3719 (powerpc-*-linux*, powerpc64-*-linux*): Add rs6000/t-crtstuff to
3720 tmake_file.
3721 Set extra_parts.
3722 (powerpc-*-lynxos*): Add to tmake_file.
3723 (powerpcle-*-elf*): Add to tmake_file, add rs6000/t-ppccomm,
3724 rs6000/t-crtstuff, t-crtstuff-pic.
3725 Set extra_parts.
3726 (powerpcle-*-eabisim*): Likewise.
3727 (powerpcle-*-eabi*): Likewise.
3728 (rx-*-elf): Remove extra_parts.
3729 (s390x-ibm-tpf*): Set extra_parts.
3730 (score-*-elf): Set extra_parts.
3731 (sh-*-elf*, sh[12346l]*-*-elf*, sh-*-linux*)
3732 (sh[2346lbe]*-*-linux*, sh-*-netbsdelf*, shl*-*-netbsdelf*)
3733 (sh5-*-netbsd*, sh5l*-*-netbsd*, sh64-*-netbsd*)
3734 (sh64l*-*-netbsd*): Split into ...
3735 (sh-*-elf*, sh[12346l]*-*-elf*): ... this.
3736 Add t-crtstuff-pic to tmake_file.
3737 Set extra_parts.
3738 (sh-*-rtems*): Add to tmake_file, add t-crtstuff-pic.
3739 Set extra_parts.
3740 (sh-wrs-vxworks): Add to tmake_file, add t-crtstuff-pic.
3741 (sparc-*-elf*): Remove t-crtin from tmake_file.
3742 Add to extra_parts, remove crtbegin.o, crtend.o.
3743 (sparc-*-linux*): Add sparc/t-linux64 to tmake_file.
3744 (sparc64-*-linux*): Likewise.
3745 (sparc-*-rtems*): Remove sparc/t-elf from tmake_file.
3746 Add to extra_parts, remove crtbegin.o, crtend.o.
3747 (sparc64-*-elf*): Remove t-crtin from tmake_file.
3748 Add to extra_parts, remove crtbegin.o, crtend.o.
3749 (sparc64-*-rtems*): Remove t-crtin from tmake_file.
3750 Add to extra_parts, remove crtbegin.o, crtend.o.
3751 (sparc64-*-freebsd*, ultrasparc-*-freebsd*): Add to extra_parts.
3752 (sparc64-*-linux*): Add sparc/t-linux64 to tmake_file.
3753 (spu-*-elf*): Add to tmake_file, add spu/t-elf.
3754 Set extra_parts.
3755 (tic6x-*-uclinux): Add c6x/t-uxlinux, t-crtstuff-pic to tmake_file.
3756 Set extra_parts.
3757 (tic6x-*-*): Change to ...
3758 (tic6x-*-elf): ... this.
3759 Set extra_parts.
3760 (xtensa*-*-elf*): Add to tmake_file, add xtensa/t-elf.
3761 Set extra_parts.
3762 (am33_2.0-*-linux*): Add comment.
3763 (mep*-*-*): Add mep/t-mep to tmake_file.
3764 Set extra_parts.
3765 * config/alpha/t-vms: New file.
3766 * config/alpha/vms-dwarf2.S, config/alpha/vms-dwarf2eh.S: New files.
3767 * config/arm/crti.S, config/arm/crtn.S: New files.
3768 * config/bfin/crti.S, config/bfin/crtn.S: New files.
3769 * config/bfin/crtlibid.S: New file.
3770 * config/bfin/t-crtlibid, config/bfin/t-crtstuff: New files.
3771 * config/c6x/crti.S, config/c6x/crtn.S: New files.
3772 * config/c6x/t-elf (CUSTOM_CRTIN): Set.
3773 (crti.o, crtin.o): New rules.
3774 (CRTSTUFF_T_CFLAGS, CRTSTUFF_T_CFLAGS_S): Set.
3775 * config/c6x/t-uclinux: New file.
3776 * config/cris/t-elfmulti: New file.
3777 * config/cris/t-linux (CRTSTUFF_T_CFLAGS_S): Set.
3778 * config/fr30/crti.S, config/fr30/crtn.S: New files.
3779 * config/frv/frvbegin.c, config/frv/frvend.c: New files.
3780 * config/frv/t-frv: New file.
3781 * config/frv/t-linux (CRTSTUFF_T_CFLAGS): Set.
3782 * config/h8300/crti.S, config/h8300/crtn.S: New files.
3783 * config/i386/cygming-crtbegin.c, config/i386/cygming-crtend.c:
3784 New files.
3785 * config/i386/t-cygming (crtbegin.o, crtend.o): Use $(srcdir) to
3786 refer to cygming-crtbegin.c, cygming-crtend.c.
3787 Use $<.
3788 * config/i386/t-nto: New file.
3789 * config/ia64/crtbegin.S, config/ia64/crtend.S: New files.
3790 * config/ia64/crti.S, config/ia64/crtn.S: New files.
3791 * config/ia64/t-ia64 (crtbegin.o, crtend.o, crtbeginS.o,
3792 crtendS.o): Use $(srcdir) to refer to crtbegin.S, crtend.S.
3793 Use .S extension.
3794 Use $<.
3795 * config/ia64/t-vms (CRTSTUFF_T_CFLAGS, CRTSTUFF_T_CFLAGS_S): Set.
3796 (crtinitS.o): New rule.
3797 * config/ia64/vms-crtinit.S: New file.
3798 * config/lm32/t-elf ($(T)crti.o, $(T)crtn.o): Remove.
3799 * config/m32r/initfini.c: New file.
3800 * config/m32r/t-linux, config/m32r/t-m32r: New files.
3801 * config/m68k/crti.S, config/m68k/crtn.S: New files.
3802 * config/mcore/crti.S, config/mcore/crtn.S: New files.
3803 * config/mep/t-mep: New file.
3804 * config/microblaze/crti.S, config/microblaze/crtn.S: New files.
3805 * config/microblaze/t-microblaze (MULTILIB_OPTIONS): Remove.
3806 * config/mips/crti.S, config/mips/crtn.S: New files.
3807 * config/mips/t-crtstuff: New file.
3808 * config/mmix/crti.S, config/mmix/crtn.S: New files.
3809 * config/mmix/t-mmix (CRTSTUFF_T_CFLAGS): Set.
3810 (CUSTOM_CRTIN): Set.
3811 ($(T)crti.o, $(T)crtn.o): Remove $(T),
3812 dependencies.
3813 Use $(srcdir) to refer to crti.S, crtn.S.
3814 Use .S extension, $<.
3815 * config/moxie/crti.asm: Rename to ...
3816 * config/moxie/crti.S: ... this.
3817 * config/moxie/crtn.asm: Rename to ...
3818 * config/moxie/crtn.S: ... this.
3819 * config/moxie/t-moxie: Remove.
3820 * config/pa/stublib.c: New file.
3821 * config/pa/t-stublib, config/pa/t-stublib64: New files.
3822 * config/rs6000/eabi-ci.S, config/rs6000/eabi-cn.S: New files.
3823 * config/rs6000/sol-ci.S, config/rs6000/sol-cn.S: New files.
3824 * config/rs6000/t-crtstuff: New file.
3825 * config/rs6000/t-ppccomm (EXTRA_PARTS): Remove.
3826 (ecrti.S, ecrtn.S, ncrti.S, ncrtn.S): Remove.
3827 (ecrti$(objext)): Depend on $(srcdir)/config/rs6000/eabi-ci.S.
3828 Make output file explicit.
3829 (ecrtn$(objext)): Depend on $(srcdir)/config/rs6000/eabi-cn.S.
3830 Make output file explicit.
3831 (ncrti$(objext): Depend on $(srcdir)/config/rs6000/sol-ci.S.
3832 Make output file explicit.
3833 (ncrtn$(objext)): Depend on $(srcdir)/config/rs6000/sol-cn.S.
3834 Make output file explicit.
3835 * config/score/crti.S, config/score/crtn.S: New files.
3836 * config/sh/crt1.S, config/sh/crti.S, config/sh/crtn.S: New files.
3837 * config/sh/lib1funcs-4-300.S, config/sh/lib1funcs-Os-4-200.S: New
3838 files.
3839 * config/sh/t-sh, config/sh/t-superh: New files.
3840 * config/sparc/t-linux64: New file.
3841 * config/spu/cache.S, config/spu/cachemgr.c: New files.
3842 * config/spu/t-elf (CRTSTUFF_T_CFLAGS): Set.
3843 (cachemgr.o, cachemgr_nonatomic.o, libgcc_%.a, cache8k.o)
3844 (cache16k.o, cache32k.o, cache64k.o, cache128k.o): New rules.
3845 * config/t-crtin: Remove.
3846 * config/t-crtstuff-pic: New file.
3847 * config/t-sol2 (CUSTOM_CRTIN): Set.
3848 (crti.o, crtn.o): New rules.
3849 * config/vms/t-vms: New file.
3850 * config/vms/vms-ucrt0.c: New file.
3851 * config/xtensa/t-elf: New file.
3852
b040f2be
RO
38532011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3854
3855 * Makefile.in (SHLIB_NM_FLAGS): Set.
3856 * mkmap-flat.awk, mkmap-symver.awk: New files.
3857 * configure.ac (libgcc_cv_lib_sjlj_exceptions): Check for SjLj
3858 exceptions.
3859 * configure: Regenerate.
3860 * config/libgcc-glibc.ver: New file.
3861 * config/libgcc-libsystem.ver: New file.
3862 * config/t-libunwind (SHLIB_LC): Set.
3863 * config/t-linux: New file.
3864 * config/t-slibgcc (INSTALL_SHLIB): New.
3865 (SHLIB_INSTALL): Use it.
3866 * config/t-slibgcc-darwin (SHLIB_MKMAP): Use $(srcdir) to refer
3867 to mkmap-symver.awk.
3868 (SHLIB_MAPFILES): Don't append, adapt pathname.
3869 (SHLIB_VERPFX): Set.
3870 * config/t-slibgcc-elf-ver (SHLIB_MKMAP): Use $(srcdir) to refer
3871 to mkmap-symver.awk.
3872 * config/t-slibgcc-gld-nover, config/t-slibgcc-hpux,
3873 config/t-slibgcc-libgcc, config/t-slibgcc-vms: New files.
3874 * config/alpha/libgcc-alpha-ldbl.ver, config/alpha/t-linux: New files.
3875 * config/alpha/t-slibgcc-osf (SHLIB_MKMAP): Use $(srcdir) to refer
3876 to mkmap-flat.awk.
3877 * config/arm/t-bpabi (SHLIB_MAPFILES): Set.
3878 * config/bfin/libgcc-glibc.ver, config/bfin/t-linux: New files.
3879 * config/c6x/libgcc-eabi.ver, config/c6x/t-elf: New files.
3880 * config/cris/libgcc-glibc.ver, config/cris/t-linux: New files.
3881 * config/frv/libgcc-frv.ver, config/frv/t-linux: New files.
3882 * config/i386/libgcc-darwin.10.4.ver,
3883 config/i386/libgcc-darwin.10.5.ver, config/i386/libgcc-glibc.ver:
3884 New files.
3885 * config/i386/t-darwin: Remove.
3886 * config/i386/t-darwin64: Likewise.
3887 * config/i386/t-dw2-eh, config/i386/t-sjlj-eh: New files.
3888 * config/i386/t-slibgcc-cygming, config/i386/t-cygwin,
3889 config/i386/t-dlldir, config/i386/t-dlldir-x: New files.
3890 * config/i386/t-linux: New file.
3891 * config/i386/t-mingw32: New file.
3892 * config/ia64/libgcc-glibc.ver, config/ia64/libgcc-ia64.ver: New files.
3893 * config/ia64/t-glibc: Rename to ...
3894 * config/ia64/t-linux: ... this.
3895 (SHLIB_MAPFILES): Set.
3896 * config/ia64/t-glibc-libunwind: Rename to ...
3897 * config/ia64/t-linux-libunwind: ... this.
3898 * config/ia64/t-ia64 (SHLIB_MAPFILES): Set.
3899 * config/ia64/t-slibgcc-hpux: New file.
3900 * config/m32r/libgcc-glibc.ver, config/m32r/t-linux: New files.
3901 * config/m68k/t-slibgcc-elf-ver: New file.
3902 * config/mips/t-mips16 (SHLIB_MAPFILES): Set.
3903 * config/mips/t-slibgcc-irix (SHLIB_MKMAP): Use $(srcdir) to refer
3904 to mkmap-flat.awk.
3905 * config/pa/t-slibgcc-hpux: New file.
3906 * config/pa/t-slibgcc-dwarf-ver, config/pa/t-slibgcc-sjsj-ver: New
3907 files.
3908 * config/rs6000/libgcc-darwin.10.4.ver,
3909 config/rs6000/libgcc-darwin.10.5.ver: New files.
3910 * config/rs6000/libgcc-ppc-glibc.ver: Rename to
3911 config/rs6000/libgcc-glibc.ver.
3912 * config/rs6000/libgcc-ppc64.ver: Rename to
3913 config/rs6000/libgcc-ibm-ldouble.ver.
3914 * config/rs6000/t-darwin (SHLIB_VERPFX): Remove.
3915 * config/rs6000/t-ibm-ldouble (SHLIB_MAPFILES): Adapt filename.
3916 * config/rs6000/t-ldbl128: Rename to ...
3917 * config/rs6000/t-linux: ... this.
3918 (SHLIB_MAPFILES): Adapt filename.
3919 * config/rs6000/t-slibgcc-aix: New file.
3920 * config/sh/libgcc-excl.ver, config/sh/libgcc-glibc.ver: New files.
3921 * config/sh/t-linux (SHLIB_MAPFILES): Use $(srcdir) to refer to
3922 libgcc-excl.ver, libgcc-glibc.ver.
3923 (SHLIB_LINK, SHLIB_INSTALL): Remove.
3924 * config/sparc/libgcc-glibc.ver: New file.
3925 * config/sparc/t-linux: New file.
3926 * config/xtensa/libgcc-glibc.ver, config/xtensa/t-linux: New files.
3927 * config.host (*-*-freebsd*): Add t-slibgcc, t-slibgcc-gld,
3928 t-slibgcc-elf-ver to tmake_file.
3929 Add t-slibgcc-nolc-override to tmake_file for posix threads on
3930 *-*-freebsd[34].
3931 (*-*-linux*, frv-*-*linux*, *-*-kfreebsd*-gnu, *-*-knetbsd*-gnu,
3932 *-*-gnu*, *-*-kopensolaris*-gnu): Add t-slibgcc, t-slibgcc-gld,
3933 t-slibgcc-elf-ver, t-linux to tmake_file.
3934 (*-*-netbsd*): Add t-slibgcc, t-slibgcc-gld, t-slibgcc-elf-ver to
3935 tmake_file.
3936 (alpha*-*-linux*): Add alpha/t-linux to tmake_file.
3937 (alpha64-dec-*vms*): Add t-slibgcc-vms to tmake_file.
3938 (alpha*-dec-*vms*): Likewise.
3939 (arm*-*-freebsd*): Append to tmake_file.
3940 (arm*-*-netbsdelf*): Add t-slibgcc-gld-nover to tmake_file.
3941 (arm*-*-linux*): Add t-slibgcc-libgcc to tmake_file for
3942 arm*-*-linux-*eabi.
3943 (arm*-*-eabi*, arm*-*-symbianelf*): Add t-slibgcc-nolc-override to
3944 tmake_file for arm*-*-symbianelf*.
3945 (bfin*-linux-uclibc*): Append to tmake_file, add bfin/t-linux.
3946 (cris-*-linux*, crisv32-*-linux*): Append to tmake_file, add
3947 cris/t-linux.
3948 (frv-*-*linux*): Append to tmake_file, add frv/t-linux.
3949 (hppa*-*-linux*): Add t-slibgcc-libgcc, pa/t-slibgcc-sjlj-ver,
3950 pa/t-slibgcc-dwarf-ver to tmake_file.
3951 (hppa[12]*-*-hpux10*): Add t-slibgcc, pa/t-slibgcc-sjlj-ver,
3952 pa/t-slibgcc-dwarf-ver, t-slibgcc-hpux, pa/t-slibgcc-hpux to tmake_file.
3953 (hppa*64*-*-hpux11*): Likewise.
3954 (hppa[12]*-*-hpux11*): Likewise.
3955 (x86_64-*-darwin*): Don't override tmake_file, but only keep
3956 i386/t-crtpc, i386/t-crtfm.
3957 (i[34567]86-*-cygwin*): Set tmake_eh_file, tmake_dlldir_file.
3958 Prepend $tmake_eh_file, $tmake_dlldir_file, i386/t-slibgcc-cygming
3959 to tmake_file.
3960 Add i386/t-cygwin to tmake_file.
3961 Prepent i386/t-mingw-pthread to tmake_file for posix threads.
3962 (i[34567]86-*-mingw*): Set tmake_eh_file, tmake_dlldir_file.
3963 Prepend $tmake_eh_file, $tmake_dlldir_file, i386/t-slibgcc-cygming
3964 to tmake_file.
3965 Add i386/t-mingw32 to tmake_file.
3966 (x86_64-*-mingw*): Likewise.
3967 (ia64*-*-freebsd*): Append to tmake_file.
3968 (ia64*-*-linux*): Append to tmake_file.
3969 Replace ia64/t-glibc by ia64/t-linux.
3970 Replace ia64/t-glibc-libunwind by ia64/t-linux-libunwind if using
3971 system libunwind.
3972 (ia64*-*-hpux*): Add t-slibgcc, ia64/t-slibgcc-hpux,
3973 t-slibgcc-hpux to tmake_file.
3974 (ia64-hp-*vms*): Add t-slibgcc-vms to tmake_file.
3975 (m32r-*-linux*): Append to tmake_file, add m32r/t-linux.
3976 (m32rle-*-linux*): Likewise.
3977 (m68k-*-linux*)): Add m68k/t-slibgcc-elf-ver to tmake_file unless
3978 sjlj exceptions.
3979 (microblaze*-linux*): New case.
3980 Append to tmake_file, add t-slibgcc-nolc-override.
3981 (powerpc-*-freebsd*): Add t-slibgcc-libgcc to tmake_file.
3982 (powerpc-*-linux*, powerpc64-*-linux*): Likewise.
3983 Replace rs6000/t-ldbl128 by rs6000/t-linux in tmake_file.
3984 (rs6000-ibm-aix4.[3456789]*, powerpc-ibm-aix4.[3456789]*): Add
3985 rs6000/t-slibgcc-aix to tmake_file.
3986 (rs6000-ibm-aix5.1.*, powerpc-ibm-aix5.1.*): Likewise.
3987 (rs6000-ibm-aix[56789].*, powerpc-ibm-aix[56789].*): Likewise.
3988 (sh-*-elf*, sh[12346l]*-*-elf*, sh-*-linux*)
3989 (sh[2346lbe]*-*-linux*, sh-*-netbsdelf*, shl*-*-netbsdelf*)
3990 (sh5-*-netbsd*, sh5l*-*-netbsd*, sh64-*-netbsd*)
3991 (sh64l*-*-netbsd*): Add t-slibgcc-libgcc to tmake_file for
3992 sh*-*-linux*.
3993 (sparc-*-linux*): Append to tmake_file for *-leon*.
3994 Add sparc/t-linux to tmake_file for non-Leon targets.
3995 (sparc64-*-linux*): Add sparc/t-linux to tmake_file.
3996 (tic6x-*-uclinux): New case.
3997 Add t-slibgcc, t-slibgcc-gld, t-slibgcc-elf-ver to tmake_file.
3998 (tic6x-*-*): Add c6x/t-elf to tmake_file.
3999 (xtensa*-*-linux*): Append to tmake_file, add xtensa/t-linux.
4000 (am33_2.0-*-linux*): Append to tmake_file.
4001 (i[34567]86-*-linux*, x86_64-*-linux*, i[34567]86-*-kfreebsd*-gnu)
4002 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-gnu*): Also handle
4003 x86_64-*-kfreebsd*-gnu.
4004 Add i386/t-linux to tmake_file.
4005
18b4bd7b
ILT
40062011-10-28 Ian Lance Taylor <iant@google.com>
4007
4008 * config/i386/morestack.S: Correct CFI information to do proper
4009 returns throughout function. In 32-bit mode, save %ebx so that it
4010 is restored on unwind.
4011
5b2d9d90
BS
40122011-10-25 Bernd Schmidt <bernds@codesourcery.com>
4013
4014 * config/c6x/pr-support.c (__gnu_unwind_24bit): Correct logic for the
4015 case where B3 isn't the return register.
4016
0d53e346
BS
4017 * config/c6x/pr-support.c (pop_compact_frame, pop_frame): Correct
4018 logic for doubleword pops.
4019
cbffbd59
AT
40202011-10-25 Andreas Tobler <andreast@fgznet.ch>
4021
4022 * config/rs6000/t-freebsd: Add wildcard.
4023
56dc349e
PB
40242011-10-21 Paul Brook <paul@codesourcery.com>
4025
4026 * unwind-arm-common.inc: Handle ID3/4 unwinding data.
4027
1e06b07d
UB
40282011-10-16 Uros Bizjak <ubizjak@gmail.com>
4029 Eric Botcazou <ebotcazou@adacore.com>
4030
4031 PR target/50737
4032 * config/alpha/linux-unwind.h (alpha_fallback_frame_state): Set
4033 fs->signal_frame to 1.
4034
b5204884
ILT
40352011-10-07 Ian Lance Taylor <iant@google.com>
4036
4037 * generic-morestack-thread.c: #include <errno.h>.
4038
91a639a1
ILT
40392011-10-07 Ian Lance Taylor <iant@google.com>
4040
4041 PR target/46093
4042 * generic-morestack.c (__generic_morestack): Make sure the segment
4043 is large enough for both the stack frame and the copied
4044 parameters.
4045
cc49116d
RO
40462011-10-06 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4047
4048 PR bootstrap/49804
4049 * config.host: Add crtbegin.o, crtbeginS.o, crtend.o, crtendS.o to
4050 extra_parts.
4051
2996d8c3
NC
40522011-09-28 Nick Clifton <nickc@redhat.com>
4053
4054 * config/rx/rx-lib.h: Always restrict doubles to the SF type when
4055 64-bit doubles are not enabled.
4056 * config/rx/rx-abi.h: Fix extraneous renaming of the floatsisf
4057 and floatunsisf functions.
4058
1e874273 40592011-09-13 Paul Brook <paul@codesourcery.com>
2996d8c3 4060
1e874273
PB
4061 * config.host (tic6x-*-*): Add c6x/t-c6x-elf. Set unwind_header.
4062 * unwind-c.c (PERSONALITY_FUNCTION): Use UNWIND_POINTER_REG.
4063 * unwind-arm-common.inc: New file.
4064 * config/arm/unwind-arm.c: Use unwind-arm-common.inc.
4065 * config/arm/unwind-arm.h: Use unwind-arm-common.h.
4066 (_GLIBCXX_OVERRIDE_TTYPE_ENCODING): Define.
4067 * config/c6x/libunwind.S: New file.
4068 * config/c6x/pr-support.c: New file.
4069 * config/c6x/unwind-c6x.c: New file.
4070 * config/c6x/unwind-c6x.h: New file.
4071 * config/c6x/t-c6x-elf: New file.
4072
f70c879a
UB
40732011-08-23 Uros Bizjak <ubizjak@gmail.com>
4074
4075 * config/i386/64/sfp-machine.h (ASM_INVALID): New define.
4076 (ASM_DIVZERO): Ditto.
4077 (FP_HANLDE_EXCEPTIONS): Use ASM_INVALID and ASM_DIVZERO.
4078
c55b374b
RS
40792011-08-18 Richard Sandiford <richard.sandiford@linaro.org>
4080
4081 * config/arm/bpabi-lib.h (RENAME_LIBRARY_SET): Delete.
4082
1e138510
RS
40832011-08-17 Richard Sandiford <richard.sandiford@linaro.org>
4084
4085 PR target/50090
4086 * config/arm/bpabi-lib.h (RENAME_LIBRARY): Use a C-level alias
4087 instead of an assembly one.
4088
1563503d
PB
40892011-08-12 Paolo Bonzini <bonzini@gnu.org>
4090
4091 PR bootstrap/50047
4092 * Makefile.in (install-unwind_h): Create
4093 $(gcc_objdir)/include/unwind.h atomically.
4094
3627ac1a
RO
40952011-08-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4096
4097 * Makefile.in (install-unwind_h): Remove destination file first.
4098
c6412d86
RO
40992011-08-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4100
4101 * sync.c: New file.
4102 * config/mips/t-mips16: New file.
4103 * config.host (mips64*-*-linux*): Add mips/t-mips16 to tmake_file.
4104 (mips*-*-linux*): Likewise.
4105 (mips*-sde-elf*): Likewise.
4106 (mipsisa32-*-elf*): Join with mipsisa32r2-*-elf*,
4107 mipsisa64-*-elf*, mipsisa64r2-*-elf*.
4108 Add mips/t-mips16 to tmake_file.
4109 (mipsisa64sb1-*-elf*): Add mips/t-mips16 to tmake_file.
4110 (mips-*-elf*): Likewise.
4111 (mips64-*-elf*): Likewise.
4112 (mips64orion-*-elf*): Likewise.
4113 (mips*-*-rtems*): Likewise.
4114 (mipstx39-*-elf*): Likewise.
4115 * Makefile.in: Use SYNC instead of LIBGCC_SYNC.
4116 ($(libgcc-sync-size-funcs-o)): Use SYNC_CFLAGS instead of
4117 LIBGCC_SYNC_CFLAGS.
4118 Use $(srcdir) to refer to sync.c.
4119 Use $<.
4120 ($(libgcc-sync-funcs-o)): Likewise.
4121 ($(libgcc-sync-size-funcs-s-o)): Likewise.
4122 ($(libgcc-sync-funcs-s-o)): Likewise.
4123
3cb6e5bd
AS
41242011-08-09 Andreas Schwab <schwab@linux-m68k.org>
4125
4126 * config.host (ia64*-*-linux*): Move ia64/t-glibc after
4127 t-libunwind.
4128
cca2207a
L
41292011-08-08 H.J. Lu <hongjiu.lu@intel.com>
4130
4131 PR other/48007
4132 * config/i386/value-unwind.h: New.
4133
ed39fbad
RS
41342011-08-06 Richard Sandiford <rdsandiford@googlemail.com>
4135
4136 * config.host (*-*-darwin*, *-*-freebsd*, *-*-linux*, frv-*-*linux*)
4137 (*-*-kfreebsd*-gnu, *-*-knetbsd*-gnu, *-*-gnu*, *-*-kopensolaris*-gnu):
4138 Add to tmake_file rather than overriding it.
4139
aca0b0b3
RO
41402011-08-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4141
4142 * config/t-softfp: Remove.
4143 * soft-fp: Moved from ../gcc/config.
4144 * soft-fp/README: Remove t-softfp reference.
4145 * soft-fp/t-softfp: Move to config/t-softfp.
4146 (softfp_machine_header): Remove.
4147 (softfp_file_list): Remove config subdir.
4148 (soft-fp-objects): New variable.
4149 ($(soft-fp-objects)): Set INTERNAL_CFLAGS.
4150 (LIB2FUNCS_EXTRA): Add to LIB2ADD instead.
4151 (SFP_MACHINE, $(SFP_MACHINE)): Remove.
4152 * config/t-softfp-excl: New file.
4153 * config/t-softfp-sfdf: New file.
4154 * config/t-softfp-tf: New file.
4155 * config/no-sfp-machine.h: New file.
4156 * config/arm/sfp-machine.h: New file.
4157 * config/arm/t-softfp: New file.
4158 * config/c6x/sfp-machine.h: New file.
4159 * config/i386/32/t-fprules-softfp: Rename to ...
4160 * config/i386/32/t-softfp: ... this.
4161 (tifunctions, LIB2ADD): Remove.
4162 (softfp_int_modes): Override.
4163 * config/i386/64/t-softfp-compat (tf-functions): Remove config
4164 subdir.
4165 * config/i386/64/eqtf2.c: Likewise.
4166 * config/i386/64/getf2.c: Likewise.
4167 * config/i386/64/letf2.c: Likewise.
4168 * config/ia64/sft-machine.h: New file.
4169 * config/ia64/t-fprules-softfp: Rename to ...
4170 * config/ia64/t-softfp: ... this.
4171 * config/lm32/sfp-machine.h: New file.
4172 * config/moxie/t-moxie-softfp: Remove.
4173 * config/rs6000/ibm-ldouble-format: New file.
4174 * config/rs6000/ibm-ldouble.c: New file.
4175 * config/rs6000/libgcc-ppc-glibc.ver: New file
4176 * config/rs6000/libgcc-ppc64.ver: New file
4177 * config/rs6000/sfp-machine.h: New file.
4178 * config/rs6000/t-freebsd: New file.
4179 * config/rs6000/t-ibm-ldouble: New file.
4180 * config/rs6000/t-ldbl128: Use $(srcdir) to refer to
4181 libgcc-ppc-glibc.ver.
4182 * config/rs6000/t-linux64: New file.
4183 * config/rs6000/t-ppccomm (LIB2ADD): Add
4184 $(srcdir)/config/rs6000/ibm-ldouble.c.
4185 * config/rs6000/t-ppccomm-ldbl: New file.
4186 * config/score/sfp-machine.h: New file.
4187 * config.host (sfp_machine_header): Explain.
4188 (arm*-*-linux*): Add t-softfp-sfdf, t-softfp-excl, arm/t-softfp,
4189 t-softfp to tmake_file.
4190 (arm*-*-uclinux*): Likewise.
4191 (arm*-*-ecos-elf): Likewise.
4192 (arm*-*-eabi*, arm*-*-symbianelf*): Likewise.
4193 (arm*-*-rtems*): Likewise.
4194 (arm*-*-elf): Likewise.
4195 (ia64*-*-linux*): Replace ia64/t-fprules-softfp by ia64/t-softfp
4196 in tmake_file.
4197 Add t-softfp-tf, t-softfp-excl, t-softfp to tmake_file.
4198 (lm32-*-elf*, lm32-*-rtems*): Add t-softfp-sfdf, t-softfp to tmake_file.
4199 (lm32-*-uclinux*): Likewise.
4200 (moxie-*-*): Replace moxie/t-moxie-softfp by t-softfp-sfdf,
4201 t-softfp-excl, t-softfp.
4202 (powerpc-*-darwin*): Add rs6000/t-ibm-ldouble to tmake_file.
4203 (powerpc64-*-darwin*): Likewise.
4204 (powerpc-*-freebsd*): Add t-softfp-sfdf, t-softfp-excl, t-softfp
4205 to tmake_file.
4206 (powerpc-*-eabisimaltivec*): Add rs6000/t-ppccomm-ldbl to
4207 tmake_file.
4208 (powerpc-*-eabisim*): Likewise.
4209 (powerpc-*-elf*): Likewise.
4210 (powerpc-*-eabialtivec*): Likewise.
4211 (powerpc-xilinx-eabi*): Likewise.
4212 (powerpc-*-rtems*): Likewise.
4213 (powerpc-*-linux*, powerpc64-*-linux*): Add t-softfp-sfdf,
4214 t-softfp-excl, t-softfp to tmake_file.
4215 (powerpc-wrs-vxworks, powerpc-wrs-vxworksae): Add
4216 rs6000/t-ppccomm-ldbl to tmake_file.
4217 (powerpcle-*-elf*): Likewise.
4218 (powerpcle-*-eabisim*): Likewise.
4219 (powerpcle-*-eabi*): Likewise.
4220 (rs6000-ibm-aix4.[3456789]*, powerpc-ibm-aix4.[3456789]*): Add
4221 rs6000/t-ibm-ldouble to tmake_file.
4222 (rs6000-ibm-aix5.1.*, powerpc-ibm-aix5.1.*): Likewise.
4223 (rs6000-ibm-aix[56789].*, powerpc-ibm-aix[56789].*): Likewise.
4224 (score-*-elf): Add t-softfp-sfdf, t-softfp-excl, t-softfp to tmake_file.
4225 (tic6x-*-*): Likewise.
4226 (i[34567]86-*-darwin*, x86_64-*-darwin*,
4227 i[34567]86-*-kfreebsd*-gnu, x86_64-*-kfreebsd*-gnu,
4228 i[34567]86-*-linux*, x86_64-*-linux*, i[34567]86-*-gnu*,
4229 i[34567]86-*-solaris2*, x86_64-*-solaris2.1[0-9]*,
4230 i[34567]86-*-cygwin*, i[34567]86-*-mingw*, x86_64-*-mingw*,
4231 i[34567]86-*-freebsd*, x86_64-*-freebsd*): Add t-softfp-tf,
4232 t-softfp to tmake_file.
4233 * configure.ac (sfp_machine_header): Provide default if unset.
4234 Substitute.
4235 Link sfp-machine.h to config/$sfp_machine_header.
4236 * configure: Regenerate.
4237
569dc494
RO
42382011-08-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4239
4240 * Makefile.in (double_type_size, long_double_type_size): Set.
4241 Remove $(fpbit-in-libgcc) support.
4242 (FPBIT_FUNCS, DPBIT_FUNCS, TPBIT_FUNCS): New variables.
4243 (fpbit-src): New variable.
4244 ($(fpbit-o), $(fpbit-s-o)): Use $(fpbit-src) instead of $(FPBIT).
4245 Compile with -DFLOAT $(FPBIT_CFLAGS).
4246 Use $<.
4247 ($(dpbit-o), $(dpbit-s-o)): Use $(fpbit-src) instead of $(DPBIT).
4248 Compile with $(FPBIT_CFLAGS).
4249 Use $<.
4250 ($(tpbit-o), $(tpbit-s-o): Use $(fpbit-src) instead of $(TPBIT).
4251 Compile with -DFLOAT $(TPBIT_CFLAGS).
4252 Use $<.
4253 * configure.ac (double_type_size, long_double_type_size):
4254 Determine and substitute.
4255 * configure: Regenerate.
4256 * fp-bit.c, fp-bit.h: New files.
4257 * config/avr/avr-lib.h, config/h8300/h8300-lib.h: New files.
4258 * config/mips/t-irix6 (TPBIT, $(gcc_objdir)/tp-bit.c): Remove.
4259 * config/mips/t-mips: New file.
4260 * config/mips/t-sdemtk: New file.
4261 * config/rs6000/ppc64-fp.c: New file.
4262 * config/rs6000/t-darwin (LIB2ADD): Add
4263 $(srcdir)/config/rs6000/ppc64-fp.c.
4264 * config/rs6000/t-ppc64-fp: New file.
4265 * config/rx/rx-lib.h: New file.
4266 * config/rx/t-rx (FPBIT): Set to true.
4267 ($(gcc_objdir)/fp-bit.c): Remove.
4268 (DPBIT): Set to true only with -m64bit-doubles.
4269 ($(gcc_objdir)/dp-bit.c): Remove.
4270 * config/sparc/t-softfp: Remove.
4271 * config/spu/t-elf: New file.
4272 * config/t-fdpbit, config/t-fpbit: New files.
4273 * config.host (m32c*-*-*): Add t-fdpbit to tmake_file.
4274 (mips*-*-*): Likewise.
4275 (arm-wrs-vxworks): Likewise.
4276 (arm*-*-freebsd*): Likewise.
4277 (avr-*-rtems*): Add t-fpbit to tmake_file.
4278 (avr-*-*): Likewise.
4279 (bfin*-elf*): Add t-fdpbit to tmake_file.
4280 (bfin*-uclinux*): Likewise.
4281 (bfin*-linux-uclibc*): Likewise.
4282 (bfin*-rtems*): New case.
4283 Add t-fdpbit to tmake_file.
4284 (bfin*-*): Add t-fdpbit to tmake_file.
4285 (crisv32-*-elf): Likewise.
4286 (cris-*-linux*): Likewise.
4287 (fr30-*-elf): Likewise.
4288 (frv-*-elf, frv-*-*linux*): Likewise.
4289 (h8300-*-rtems*, h8300-*-elf*): Add t-fpbit to tmake_file.
4290 (iq2000*-*-elf*): Add t-fdpbit to tmake_file.
4291 (m32r-*-elf*): Likewise.
4292 (m32rle-*-elf*): Likewise.
4293 (m32r-*-linux*): Likewise.
4294 (m32rle-*-linux*): Likewise.
4295 (mcore-*-elf): Add t-fdpbit to tmake_file.
4296 (microblaze*-*-*): Likewise.
4297 (mips-sgi-irix6.5*): Add t-tpbit to tmake_file.
4298 (mips*-*-netbsd*): Add mips/t-mips to tmake_file.
4299 (mips64*-*-linux*): Also handle mipsisa64*-*-linux*.
4300 Fix typo.
4301 Add mips/t-tpbit to tmake-file.
4302 (mips*-*-linux*): Fix typo.
4303 (mips*-sde-elf*): New case
4304 Add mips/t-sdemtk unless using newlib.
4305 (mipsisa64sr71k-*-elf*): Add t-fdpbit to tmake_file.
4306 (mipsisa64sb1-*-elf*): Add mips/t-mips to tmake_file.
4307 (mn10300-*-*): Likewise.
4308 (pdp11-*-*): Likewise.
4309 (picochip-*-*): Add t-fpbit to tmake_file.
4310 (powerpc-*-eabisimaltivec*): Likewise.
4311 (powerpc-*-eabisim*): Likewise.
4312 (powerpc-*-elf*): Likewise.
4313 (powerpc-*-eabialtivec*): Likewise.
4314 (powerpc-xilinx-eabi*): New case.
4315 Add t-fdpbit to tmake_file.
4316 (powerpc-*-eabi*): Add t-fdpbit to tmake_file.
4317 (powerpc-*-rtems*): Likewise.
4318 (powerpc-*-linux*, powerpc64-*-linux*): Add rs6000/t-ppc64-fp to
4319 tmake_file.
4320 (powerpc-wrs-vxworks, powerpc-wrs-vxworksae): Add t-fdpbit to
4321 tmake_file.
4322 (powerpc-*-lynxos*): Likewise.
4323 (powerpcle-*-elf*): Likewise.
4324 (powerpcle-*-eabisim*): Likewise.
4325 (powerpcle-*-eabi*): Likewise.
4326 (rs6000-ibm-aix4.[3456789]*, powerpc-ibm-aix4.[3456789]*): Add
4327 t-fdpbit, rs6000/t-ppc64-fp to tmake_file.
4328 (rs6000-ibm-aix5.1.*, powerpc-ibm-aix5.1.*): Likewise.
4329 (rs6000-ibm-aix[56789].*, powerpc-ibm-aix[56789].*): Likewise.
4330 (rx-*-elf): Add t-fdpbit to tmake_file.
4331 (sh-*-elf*, sh[12346l]*-*-elf*, sh-*-linux*)
4332 (sh[2346lbe]*-*-linux*, sh-*-netbsdelf*, shl*-*-netbsdelf*)
4333 (sh5-*-netbsd*, sh5l*-*-netbsd*, sh64-*-netbsd*)
4334 (sh64l*-*-netbsd*): Add t-fdpbit to tmake_file except on
4335 sh*-*-netbsd*.
4336 (sh-*-rtems*): Add t-fdpbit to tmake_file.
4337 (sh-wrs-vxworks): Likewise.
4338 (sparc-*-elf*): Replace sparc/t-softfp by t-fdpbit in tmake_file.
4339 (sparc-*-linux*): Add t-fdpbit to tmake_file for *-leon*.
4340 (sparc-*-rtems*, sparc64-*-rtems*): Split off ...
4341 (sparc64-*-rtems*): ... new case.
4342 (sparc-*-rtems*): Add t-fdpbit to tmake_file.
4343 (spu-*-elf*): Likewise.
4344 Add spu/t-elf to tmake_file.
4345 (v850*-*-*): Add t-fdpbit to tmake_file.
4346 (xstormy16-*-elf): Likewise.
4347 (am33_2.0-*-linux*): Add t-fdpbit to tmake_file.
4348 (mep*-*-*): Likewise.
4349
201cdb74
RO
43502011-08-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4351
4352 * Makefile.in (LIB2ADDEH, LIB2ADDEHSTATIC, LIB2ADDEHSHARED): New
4353 variables.
4354 (LIBUNWIND, SHLIBUNWIND_LINK, SHLIBUNWIND_INSTALL): New variables.
4355 (LIB2ADDEH, LIB2ADDEHSTATIC, LIB2ADDEHSHARED): Add $(srcdir)/emutls.c.
4356 (install-unwind_h): New target.
4357 (all): Depend on it.
4358 * config.host (unwind_header): New variable.
4359 (*-*-freebsd*): Set tmake_file to t-eh-dw2-dip.
4360 (*-*-linux*, frv-*-*linux*, *-*-kfreebsd*-gnu, *-*-knetbsd*-gnu,
4361 *-*-gnu*): Likewise, also for *-*-kopensolaris*-gnu.
4362 (*-*-solaris2*): Add t-eh-dw2-dip to tmake_file.
4363 (arm*-*-linux*): Add arm/t-bpabi for arm*-*-linux-*eabi.
4364 Set unwind_header.
4365 (arm*-*-uclinux*): Add arm/t-bpabi for arm*-*-uclinux*eabi.
4366 Set unwind_header.
4367 (arm*-*-eabi*, arm*-*-symbianelf*): Add arm/t-bpabi for
4368 arm*-*-eabi*.
4369 Add arm/t-symbian to tmake_file for arm*-*-symbianelf*.
4370 Set unwind_header.
4371 (ia64*-*-elf*): Add ia64/t-eh-ia64 to tmake_file.
4372 (ia64*-*-freebsd*): Likewise.
4373 (ia64*-*-linux*): Add ia64/t-glibc, ia64/t-eh-ia64, t-libunwind to
4374 tmake_file.
4375 Add t-libunwind-elf, ia64/t-glibc-libunwind unless
4376 $with_system_libunwind.
4377 (ia64*-*-hpux*): Set tmake_file.
4378 (ia64-hp-*vms*): Add ia64/t-eh-ia64 to tmake_file.
4379 (picochip-*-*): Set tmake_file.
4380 (rs6000-ibm-aix4.[3456789]*, powerpc-ibm-aix4.[3456789]*): Set
4381 md_unwind_header.
4382 (rs6000-ibm-aix5.1.*, powerpc-ibm-aix5.1.*): Likewise.
4383 (rs6000-ibm-aix[56789].*, powerpc-ibm-aix[56789].*): Likewise.
4384 (s390x-ibm-tpf*): Add t-eh-dw2-dip to tmake_file.
4385 (xtensa*-*-elf*): Set tmake_file.
4386 (xtensa*-*-linux*): Likewise.
4387 * configure.ac: Include ../config/unwind_ipinfo.m4.
4388 Call GCC_CHECK_UNWIND_GETIPINFO.
4389 Link unwind.h to $unwind_header.
4390 * configure: Regenerate.
4391 * emutls.c, unwind-c.c, unwind-compat.c, unwind-compat.h,
4392 unwind-dw2-fde-compat.c, unwind-dw2-fde-dip.c, unwind-dw2-fde.c,
4393 unwind-dw2-fde.h, unwind-dw2.c, unwind-dw2.h, unwind-generic.h,
4394 unwind-pe.h, unwind-sjlj.c, unwind.inc: New files.
4395 * config/unwind-dw2-fde-darwin.c: New file.
4396 * config/arm/libunwind.S, config/arm/pr-support.c,
4397 config/arm/t-bpabi, config/arm/t-symbian, config/arm/unwind-arm.c,
4398 config/arm/unwind-arm.h,: New files.
4399 * config/ia64/fde-glibc.c, config/ia64/fde-vms.c,
4400 config/ia64/t-eh-ia64, config/ia64/t-glibc,
4401 config/ia64/t-glibc-libunwind, config/ia64/t-hpux,
4402 config/ia64/t-vms, config/ia64/unwind-ia64.c,
4403 config/ia64/unwind-ia64.h: New files.
4404 * config/picochip/t-picochip: New file.
4405 * config/rs6000/aix-unwind.h, config/rs6000/darwin-fallback.c: New
4406 files.
4407 * config/rs6000/t-darwin (LIB2ADDEH): Set.
4408 * config/s390/t-tpf (LIB2ADDEH): Remove.
4409 * config/t-darwin (LIB2ADDEH): Set.
4410 * config/t-eh-dw2-dip: New file.
4411 * config/t-libunwind, config/t-libunwind-elf: New files.
4412 * config/t-sol2 (LIB2ADDEH): Remove.
4413 * config/xtensa/t-xtensa: New file.
4414
40f2f11f
L
44152011-08-02 H.J. Lu <hongjiu.lu@intel.com>
4416
4417 * config/i386/linux-unwind.h (RT_SIGRETURN_SYSCALL): New.
4418 (x86_64_fallback_frame_state): Use RT_SIGRETURN_SYSCALL and
4419 long long to check rt_sigreturn syscall.
4420
bd15e32c
AM
44212011-08-02 Alan Modra <amodra@gmail.com>
4422
4423 * config/rs6000/linux-unwind.h (frob_update_context <__powerpc64__>):
4424 Restore for indirect call bcrtl from correct stack slot, and only
4425 if cfa+40 isn't valid.
4426
655b30bf
JB
44272011-08-01 Julian Brown <julian@codesourcery.com>
4428
4429 * config.host (arm*-*-linux*, arm*-*-uclinux*, arm*-*-eabi*)
4430 (arm*-*-symbianelf*): Add t-fixedpoint-gnu-prefix makefile fragment.
4431 * config/arm/bpabi-lib.h (LIBGCC2_FIXEDBIT_GNU_PREFIX): Define.
4432
247eb06f
JB
44332011-08-01 Julian Brown <julian@codesourcery.com>
4434
4435 * Makefile.in (LIBGCC_VER_FIXEDPOINT_GNU_PREFIX): New.
4436 (libgcc-std.ver.in): Use above.
4437 * fixed-bit.h (LIBGCC2_FIXEDBIT_GNU_PREFIX): Define, if
4438 LIBGCC2_GNU_PREFIX is defined. Use instead of LIBGCC2_GNU_PREFIX
4439 throughout file.
4440 * config/t-fixedpoint-gnu-prefix: New file.
4441 * config/t-gnu-prefix (LIBGCC_VER_FIXEDPOINT_GNU_PREFIX): Set.
4442 * libgcc-std.ver.in (fixed-point routines): Use __FIXPTPFX__
4443 instead of __PFX__.
4444
02a8fe00
L
44452011-07-28 H.J. Lu <hongjiu.lu@intel.com>
4446
4447 * config/i386/morestack.S (X86_64_SAVE_NEW_STACK_BOUNDARY): New.
4448 Use X86_64_SAVE_NEW_STACK_BOUNDARY to save the new stack boundary
4449 for x86-64. Properly check __x86_64__ and __LP64__.
4450
5fce9126
L
44512010-07-28 H.J. Lu <hongjiu.lu@intel.com>
4452
4453 * config/i386/64/sfp-machine.h (_FP_W_TYPE): Always use _WIN64
4454 version.
4455 (_FP_WS_TYPE): Likewise.
4456 (_FP_I_TYPE): Likewise.
4457
2374a88a
AM
44582011-07-28 Alan Modra <amodra@gmail.com>
4459
4460 * config/rs6000/linux-unwind.h (frob_update_context <__powerpc64__>):
4461 Leave r2 REG_UNSAVED if stopped on the instruction that saves r2
4462 in a plt call stub. Do restore r2 if stopped on bctrl.
4463
e44dbbe1
RO
44642011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4465
4466 * config.host (i[3456x]86-*-netware*): Remove.
4467 * config/i386/netware-crt0.c, config/i386/t-nwld,
4468 config/i386/t-slibgcc-nwld: Remove.
4469
bcead286
BS
44702011-07-15 Bernd Schmidt <bernds@codesourcery.com>
4471
4472 * config.host: Handle tic6x-*-*.
4473 * config/c6x/c6x-abi.h: New file.
4474
b3fe1584
RO
44752011-07-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4476
4477 * config/i386/crtprec.c: New file.
4478 * config/i386/t-crtpc: Use $(srcdir) to refer to crtprec.c.
4479 * config.host (i[34567]86-*-darwin*): Add i386/t-crtpc to tmake_file.
4480 Add crtprec32.o, crtprec64.o, crtprec80.o to extra_parts.
4481 (x86_64-*-darwin*): Likewise.
4482 (i[34567]86-*-solaris2*: Likewise.
4483
35d8090d
RO
44842011-07-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4485
4486 * config/alpha/crtfastmath.c: New file.
4487 * config/i386/crtfastmath.c: New file.
4488 * config/ia64/crtfastmath.c: New file.
4489 * config/mips/crtfastmath.c: New file.
4490 * config/sparc/crtfastmath.c: New file.
4491
4492 * config/t-crtfm (crtfastmath.o): Use $(srcdir) to refer to
4493 crtfastmath.c.
4494 Add -frandom-seed=gcc-crtfastmath.
4495 * config/alpha/t-crtfm: Remove.
4496 * config/i386/t-crtfm: Use $(srcdir) to refer to crtfastmath.c.
4497 * config/ia64/t-ia64 (crtfastmath.o): Remove.
4498
4499 * config.host (alpha*-*-linux*): Replace alpha/t-crtfm by t-crtfm.
4500 (alpha*-dec-osf5.1*): Likewise.
4501 (alpha*-*-freebsd*): Add t-crtfm to tmake_file.
4502 Add crtfastmath.o to extra_parts.
4503 (i[34567]86-*-darwin*): Add i386/t-crtfm to tmake_file.
4504 Add crtfastmath.o to extra_parts.
4505 (x86_64-*-darwin*): Likewise.
4506 (x86_64-*-mingw*): Likewise.
4507 (ia64*-*-elf*): Add t-crtfm to tmake_file.
4508 (ia64*-*-freebsd*): Likewise.
4509 (ia64*-*-linux*): Likewise.
4510 (sparc64-*-freebsd*): Add t-crtfm to tmake_file.
4511 Add crtfastmath.o to extra_parts.
4512
e141542e
RO
45132011-07-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4514
4515 * config/darwin-crt3.o: New file.
4516 * config/rs6000/darwin-crt2.c: New file.
4517 * config/t-darwin: New file.
4518 * config/rs6000/t-darwin (DARWIN_EXTRA_CRT_BUILD_CFLAGS): New variable.
4519 (crt2.o): New rule.
4520 * config.host (*-*-darwin*): Add crt3.o to extra_parts.
4521 (powerpc-*-darwin*): Add crt2.o to extra_parts.
4522 (powerpc64-*-darwin*): Likewise.
4523
2d1efe2d
RO
45242011-07-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4525
4526 * config/i386/netware-crt0.c: New file.
4527 * config/i386/t-nwld: Rename to ...
4528 * config/i386/t-slibgcc-nwld: ... this.
4529 * config/i386/t-nwld: New file.
4530 * config.host (i[3456x]86-*-netware*): Add i386/t-slibgcc-nwld to
4531 tmake_file.
4532 Add crt0.o, libgcc.def, libc.def, libcpre.def, posixpre.def to
4533 extra_parts.
4534
4a8bb046
RO
45352011-07-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4536
4537 * configure.ac (i?86-*-solaris2*): Use libgcc copy of
4538 i386/t-crtstuff.
4539 * configure: Regenerate.
4540
2d8d5935
RO
45412011-07-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4542
4543 * dfp-bit.c, dfp-bit.h: New files.
4544 * Makefile.in (D32PBIT_FUNCS, D64PBIT_FUNCS, D128PBIT_FUNCS): New
4545 variables.
4546 ($(d32pbit-o)): Use $(srcdir) to refer to dfp-bit.c
4547 ($(d64pbit-o)): Likewise.
4548 ($(d128pbit-o)): Likewise.
4549 * config/t-dfprules: New file.
4550 * config.host (i[34567]86-*-linux*): Add t-dfprules to tmake_file.
4551 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-knetbsd*-gnu,
4552 i[34567]86-*-gnu*, i[34567]86-*-kopensolaris*-gnu): Likewise.
4553 (x86_64-*-linux*): Likewise.
4554 (x86_64-*-kfreebsd*-gnu, x86_64-*-knetbsd*-gnu): Likewise.
4555 (i[34567]86-*-cygwin*): Likewise.
4556 (i[34567]86-*-mingw*, x86_64-*-mingw*): Likewise.
4557 (powerpc-*-linux*, powerpc64-*-linux*): Likewise.
4558
2c50b2c3
RO
45592011-07-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4560
4561 * Makfile.in (LIBGCOV): New variable.
4562 ($(libgcov-objects)): Use $(srcdir) to refer to libgcov.c.
4563 * libgcov.c: New file.
4564
a039d7c2
RO
45652011-07-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4566
4567 * fixed-bit.c, fixed-bit.h: New files.
4568 * fixed-obj.mk ($o$(objext), $(o)_s$(objext)): Use $(srcdir) to
4569 refer to fixed-bit.c.
4570
1e4b2746
JM
45712011-07-07 Joseph Myers <joseph@codesourcery.com>
4572
4573 * config.host (*local*): Remove.
4574
fbdd5d87
RO
45752011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4576
4577 PR target/39150
4578 * config.host (*-*-solaris2*): Handle x86_64-*-solaris2.1[0-9]*
4579 like i?86-*-solaris2.1[0-9]*.
4580 (i[34567]86-*-solaris2*): Also handle x86_64-*-solaris2.1[0-9]*.
4581 * configure.ac (i?86-*-solaris2*): Likewise.
4582 * configure: Regenerate.
4583
9e7714f4
TS
45842011-07-06 Thomas Schwinge <thomas@schwinge.name>
4585
4586 * config.host (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-knetbsd*-gnu)
4587 (i[34567]86-*-gnu*, i[34567]86-*-kopensolaris*-gnu): Remove
4588 md_unwind_header by splitting out of...
4589 (i[34567]86-*-linux*): ... this.
4590 * config.host (x86_64-*-kfreebsd*-gnu, x86_64-*-knetbsd*-gnu):
4591 Remove md_unwind_header by splitting out of...
4592 (x86_64-*-linux*): ... this.
4593
6dab9931
GJL
45942011-07-04 Georg-Johann Lay <avr@gjlay.de>
4595
4596 * config/avr/t-avr (intfuncs16): Add _clrsbXX2.
4597
4be46d19
NC
45982011-06-28 Nick Clifton <nickc@redhat.com>
4599
4600 * config.host: Recognize all V850 variants.
4601
1da9434b
UB
46022011-06-22 Uros Bizjak <ubizjak@gmail.com>
4603
4604 * enable-execute-stack-empty.c (__enable_execute_stack): Add prototype.
4605
e4d48a4d
RO
46062011-06-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4607
4608 * shared-object.mk (c_flags-$o): Save c_flags.
4609 ($(base)$(objext)): Use it.
4610 ($(base)_s$(objext)): Likewise.
4611
3801c801
BS
46122011-06-21 Bernd Schmidt <bernds@codesourcery.com>
4613
4614 * Makefile.in (lib2funcs): Add _clrsbsi2 and _clrsbdi2.
4615 * libgcc-std.ver.in (GCC_4.7.0): New section.
4616
0ad8bb3b 46172011-06-16 Georg-Johann Lay <avr@gjlay.de>
1da9434b 4618
0ad8bb3b
GJL
4619 PR target/49313
4620 PR target/29524
4621 * config/avr/t-avr: Fix line endings.
4622 (intfuncs16): Remove _ffsXX2, _clzXX2, _ctzXX2, _popcountXX2,
4623 _parityXX2.
4624
ea963999
OH
46252011-06-14 Olivier Hainque <hainque@adacore.com>
4626 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4627
4628 * config/mips/irix6-unwind.h: New file.
4629 * config.host (mips-sgi-irix6.5*): Set md_unwind_header.
4630
b11b0904
EB
46312011-06-10 Eric Botcazou <ebotcazou@adacore.com>
4632
4633 * config/sparc/linux-unwind.h (STACK_BIAS): Define.
4634 (sparc64_fallback_frame_state): Use it.
4635 (sparc64_frob_update_context): Further adjust context.
4636 * config/sparc/sol2-unwind.h (sparc64_frob_update_context): Likewise.
4637 * config/sparc/sol2-ci.S: Add TARGET_FLAT handling.
4638 * config/sparc/sol2-cn.S: Likewise.
4639
10e48e39
RO
46402011-06-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4641
4642 * enable-execute-stack-empty.c: New file.
4643 * enable-execute-stack-mprotect.c: New file.
4644 * config/i386/enable-execute-stack-mingw32.c: New file.
4645 * config.host (enable_execute_stack): New variable.
4646 Select appropriate variants.
4647 * configure.ac: Link enable-execute-stack.c to
4648 $enable_execute_stack.
4649 * configure: Regenerate.
4650 * Makefile.in (LIB2ADD): Add enable-execute-stack.c.
4651 (lib2funcs): Remove _enable_execute_stack.
4652
10c4cabc
DM
46532011-06-09 David S. Miller <davem@davemloft.net>
4654 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4655
4656 * config.host (sparc-*-linux*): Correct md_unwind_header
4657 filename.
4658 (s390x-ibm-tpf*): Fix typo.
4659
aa4203e7
RO
46602011-06-06 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4661
4662 * config.host (mips-sgi-irix6.5*): Add t-crtfm to tmake_file.
4663 Add crtfastmath.o to extra_parts.
4664 (mips64*-*-linux*, mips*-*-linux*): Use t-crtfm instead of
4665 mips/t-crtfm.
4666 * config/mips/t-crtfm: Remove.
4667
0defd786
JDA
46682011-06-04 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
4669
4670 * config.host (hppa*-*-linux*): Correct md_unwind_header name.
4671
82f247af
KK
46722011-06-04 Kaz Kojima <kkojima@gcc.gnu.org>
4673
4674 * config.host (sh*-*-linux*): Fix typo.
4675
58cd1d70
RO
46762011-06-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4677
4678 * config/alpha/linux-unwind.h: Move from ../gcc/config/alpha.
4679 * config/alpha/osf5-unwind.h: Move from ../gcc/config/alpha.
4680 * config/alpha/vms-unwind.h: Move from ../gcc/config/alpha.
4681 * config/bfin/linux-unwind.h: Move from ../gcc/config/bfin.
4682 * config/i386/linux-unwind.h: Move from ../gcc/config/i386.
4683 * config/i386/sol2-unwind.h: Move from ../gcc/config/i386.
4684 * config/i386/w32-unwind.h: Move from ../gcc/config/i386.
4685 Wrap in !__MINGW64__.
4686 * config/ia64/linux-unwind.h: Move from ../gcc/config/ia64.
4687 * config/ia64/vms-unwind.h: Move from ../gcc/config/ia64.
4688 * config/m68k/linux-unwind.h: Move from ../gcc/config/m68k.
4689 * config/mips/linux-unwind.h: Move from ../gcc/config/mips.
4690 * config/pa/hpux-unwind.h: Move from ../gcc/config/pa.
4691 * config/pa/linux-unwind.h: Move from ../gcc/config/pa.
4692 * config/rs6000/darwin-unwind.h: Move from ../gcc/config/rs6000.
4693 Wrap in !__LP64__.
4694 * config/rs6000/linux-unwind.h: Move from ../gcc/config/rs6000.
4695 * config/s390/linux-unwind.h: Move from ../gcc/config/s390.
4696 * config/s390/tpf-unwind.h: Move from ../gcc/config/s390.
4697 * config/sh/linux-unwind.h: Move from ../gcc/config/sh.
4698 * config/sparc/linux-unwind.h: Move from ../gcc/config/sparc.
4699 * config/sparc/sol2-unwind.h: Move from ../gcc/config/sparc.
4700 * config/xtensa/linux-unwind.h: Move from ../gcc/config/xtensa.
4701 * config/no-unwind.h: New file.
4702 * config.host (md_unwind_header): Document.
4703 Define.
4704 (alpha*-*-linux*, alpha*-dec-osf5.1*, alpha64-dec-*vms*,
4705 alpha*-dec-*vms*, bfin*-uclinux*, bfin*-linux-uclibc*,
4706 hppa*-*-linux*, hppa[12]*-*-hpux10*, hppa*64*-*-hpux11*,
4707 hppa[12]*-*-hpux11*): Set md_unwind_header.
4708 (i[34567]86-*-linux*): Handle i[34567]86-*-kopensolaris*-gnu.
4709 Set md_unwind_header.
4710 (x86_64-*-linux*, i[34567]86-*-solaris2*): Set md_unwind_header.
4711 (i[34567]86-*-cygwin*): Split from i[34567]86-*-mingw*.
4712 (i[34567]86-*-mingw*, ia64*-*-linux*, ia64-hp-*vms*,
4713 m68k-*-uclinux*, m68k-*-linux*, mips64*-*-linux*, mips*-*-linux*,
4714 powerpc-*-darwin*, powerpc-*-linux*, s390-*-linux*,
4715 s390x-*-linux*, s390x-ibm-tpf*, sh*-*-linux*, sparc-*-linux*,
4716 sparc*-*-solaris2*, sparc64-*-linux*, xtensa*-*-linux*): Set
4717 md_unwind_header.
4718 * configure.ac: Link md-unwind-support.h to $md_unwind_header.
4719 * configure: Regenerate.
4720
737346fa
RO
47212011-06-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4722
4723 * config.host (mips-sgi-irix[56]*): Restrict to mips-sgi-irix6.5*.
4724 Set tmake_file, extra_parts.
4725 * config/mips/irix-crti.S: Move from ../gcc/config/mips/irix-crti.asm.
4726 Remove O32 support.
4727 * config/mips/irix-crtn.S: Move from ../gcc/config/mips/irix-crtn.asm.
4728 Remove O32 support.
4729 * config/mips/t-irix6: New file.
4730 * config/mips/t-slibgcc-irix: New file.
4731
c192cee6
RO
47322011-06-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4733
4734 * config/s390/t-tpf (LIB2ADDEHDEP): Remove.
4735 * config/t-sol2 (LIB2ADDEH): Use gcc_srcdir, add emutls.c.
4736
ee33b5f0
RO
47372011-06-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4738
4739 * configure.ac (target_thread_file): Determine thread model.
4740 * configure: Regenerate.
4741 * config.host (alpha*-dec-osf5.1*): Set tmake_file, extra_parts.
4742 * config/alpha/t-alpha: New file.
4743 * config/alpha/t-crtfm: Use $<.
4744 * config/alpha/t-ieee: New file.
4745 * config/alpha/t-osf-pthread: New file.
4746 * config/alpha/t-slibgcc-osf: New file.
4747 * config/alpha/libgcc-osf5.ver: New file.
4748
0699e415
RO
47492011-06-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4750
4751 * config.host (i[34567]86-*-solaris2*): Add i386/t-crtfm to
4752 tmake_file.
4753 Add crtfastmath.o to extra_parts.
4754
a3fab9c2
RO
47552011-06-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4756
4757 * config/gmon-sol2.c: Reindent.
4758 Cleanup comments.
4759 Remove, correct casts.
4760 Use STDERR_FILENO, NULL.
4761 (BASEADDRESS): Remove.
4762 (minbrk): Remove.
4763 (errno, sbrk): Remove declarations.
4764 (monstartup) [hp300]: Remove.
4765 (mcount): Remove.
4766
ca24c5ad
RO
47672011-06-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4768
4769 * Makefile.in (cpu_type): Define.
4770 * config.host (i[34567]86-*-rtems*): Handle it.
4771 (i[34567]86-*-solaris2*): Move body ...
4772 (*-*-solaris2*): ... here.
4773 New case, generalize.
4774 (sparc-*-elf*): Handle it.
4775 (sparc-*-linux*, sparc64-*-linux*): Replace sparc/t-crtfm by t-crtfm.
4776 (sparc-*-rtems*, sparc64-*-rtems*); Handle it.
4777 (sparc64-*-solaris2*, sparcv9-*-solaris2*, sparc-*-solaris2*):
4778 Fold into ...
4779 (sparc*-*-solaris2*): ... this.
4780 New case.
4781 (sparc64-*-elf*): Handle it.
4782 * config/gmon-sol2.c: Move from ../gcc/config/sparc.
4783 Merge ../gcc/config/i386/gmon-sol2.c.
4784 * config/i386/sol2-c1.S: Move from ../gcc/config/i386/sol2-c1.asm.
4785 Use C comments.
4786 Merge ../gcc/config/i386/sol2-gc1.asm.
4787 * config/i386/sol2-ci.S: Move from ../gcc/config/i386/sol2-ci.asm.
4788 Use C comments.
4789 * config/i386/sol2-cn.S: Move from ../gcc/config/i386/sol2-cn.asm.
4790 Use C comments.
4791 * config/i386/t-crtfm (crtfastmath.o): Use $<.
4792 * config/i386/t-crtstuff: New file.
4793 * config/i386/t-softfp: New file.
4794 * config/i386/t-sol2 ($(T)gmon.o, $(T)gcrt1.o, $(T)crt1.o),
4795 $(T)crti.o, $(T)crtn.o): Remove.
4796 (gcrt1.o): New rule.
4797 (TARGET_LIBGCC2_CFLAGS): Remove.
4798 * config/sparc/sol2-c1.S: Move from ../gcc/config/sparc/sol2-c1.asm.
4799 * config/sparc/sol2-ci.S: Move from ../gcc/config/sparc/sol2-ci.asm.
4800 * config/sparc/sol2-cn.S: Move from ../gcc/config/sparc/sol2-cn.asm.
4801 * config/sparc/t-sol2: New file.
4802 * config/sparc/t-crtfm: Move to ...
4803 * config/t-crtfm: ... this.
4804 Use $(cpu_type), $<.
4805 * config/t-crtin: New file.
4806 * config/sparc/t-softfp: New file.
4807 * config/sparc/t-softmul: New file.
4808 * config/t-rtems: New file.
4809 * config/t-slibgcc: New file.
4810 * config/t-slibgcc-elf-ver: New file.
4811 * config/t-slibgcc-gld: New file.
4812 * config/t-slibgcc-sld: New file.
4813 * config/t-sol2: New file.
4814 * configure.ac: Include ../config/lib-ld.m4.
4815 Call AC_LIB_PROG_LD_GNU.
4816 Substitute cpu_type.
4817 * configure: Regenerate.
4818
ad5f3d7b
BS
48192011-05-27 Bernd Schmidt <bernds@codesourcery.com>
4820
4821 PR bootstrap/49173
4822 * config/t-slibgcc-darwin (SHLIB_MAPFILES): Look for
4823 libgcc-std.ver in the build directory.
4824 * config/s390/t-linux (SHLIB_MAPFILES): Likewise.
4825 * config/sh/t-linux (SHLIB_MAPFILES): Likewise.
4826
cdbf4541
BS
48272011-05-25 Bernd Schmidt <bernds@codesourcery.com>
4828
4829 * libgcc-std.ver.in: New file.
4830 * Makefile.in (LIBGCC_VER_GNU_PREFIX, LIBGCC_VER_SYMBOLS_PREFIX): New
4831 variables.
4832 (libgcc-std.ver): New rule.
4833 * config/t-gnu-prefix: New file.
4834
c8028650
RO
48352011-05-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4836
4837 * config/s390/t-tpf (LIB2ADDEH): Remove $(gcc_srcdir)/gthr-gnat.c.
4838
4a68b4ca
JM
48392011-05-10 Joseph Myers <joseph@codesourcery.com>
4840
4841 * config/i386/darwin-lib.h: New file.
4842
80cf2e08
JM
48432011-05-10 Joseph Myers <joseph@codesourcery.com>
4844
4845 * config/arm/symbian-lib.h: New.
4846
a3330c9d
CD
48472011-05-04 Chris Demetriou <cgd@google.com>
4848
4849 * config/i386/morestack.S (__i686.get_pc_thunk.bx): Rename to...
4850 (__x86.get_pc_thunk.bx): ...this.
4851 (__morestack): Adjust for rename, remove undef of __i686.
4852
6ace0756
CD
48532011-05-03 Chris Demetriou <cgd@google.com>
4854
4855 * config/i386/morestack.S (__i686.get_pc_thunk.bx): New.
4856
ebb9f8b0
JM
48572011-03-22 Joseph Myers <joseph@codesourcery.com>
4858
4859 * config.host (alpha*-*-gnu*, arc-*-elf*, arm*-*-netbsd*,
4860 arm-*-pe*, crx-*-elf, i[34567]86-*-netbsd*, i[34567]86-*-pe,
4861 m68hc11-*-*|m6811-*-*, m68hc12-*-*|m6812-*-*, mcore-*-pe*,
4862 powerpc64-*-gnu*, powerpc-*-gnu-gnualtivec*, powerpc-*-gnu*,
4863 sh-*-symbianelf* | sh[12346l]*-*-symbianelf*, vax-*-netbsd*):
4864 Remove cases.
4865
9cfa1499
AT
48662011-03-14 Andreas Tobler <andreast@fgznet.ch>
4867
4868 * config.host (cpu_type): Add FreeBSD PowerPC specific parts.
4869 Adjust copyright year.
4870
457186f6
ILT
48712011-03-07 Ian Lance Taylor <iant@google.com>
4872
4873 * generic-morestack.c (__splitstack_find): Adjust returned stack
4874 pointer to include all registers pushed by __morestack.
4875
58c741a6
DK
48762011-01-26 Dave Korn <dave.korn.cygwin@gmail.com>
4877
4878 PR target/40125
4879 * configure.ac: Call ACX_NONCANONICAL_TARGET.
4880 (toolexecdir): Calculate and AC_SUBST.
4881 (toolexeclibdir): Likewise.
4882 * Makefile.in (target_noncanonical): Import.
4883 (toolexecdir): Likewise.
4884 (toolexeclibdir): Likewise.
4885 * configure: Regenerate.
4886
26716c44
NF
48872010-12-13 Nathan Froyd <froydnj@codesourcery.com>
4888
4889 PR target/46040
4890 * config/arm/bpabi.h: Rename to...
4891 * config/arm/bpabi-lib.h: ...this.
4892
b595b1a1
RO
48932010-12-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4894
4895 * configure.ac: Use i386/t-crtstuff on i?86-*-solaris2* if
4896 appropriate.
4897 * configure: Regenerate.
4898
a3abe41c
NF
48992010-11-24 Nathan Froyd <froydnj@codesourcery.com>
4900
4901 * config/libbid/bid_conf.h (BID_BIG_ENDIAN): Define in terms of
4902 __FLOAT_WORD_ORDER__.
4903 * config/libbid/bid_gcc_intrinsics.h (LIBGCC2_FLOAT_WORDS_BIG_ENDIAN):
4904 Delete.
4905
455c8f48
RW
49062010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4907
4908 PR other/46202
4909 * Makefile.in (install-strip): New phony target.
4910
f3824a8b
ILT
49112010-11-07 Ian Lance Taylor <iant@google.com>
4912
4913 PR target/46089
4914 * config/i386/morestack.S (__morestack_large_model): New
4915 function.
4916
18ed6ee4
NF
49172010-10-23 Nathan Froyd <froydnj@codesourcery.com>
4918
4919 * config/libbid/bid_gcc_intrinsics.h (LIBGCC2_WORDS_BIG_ENDIAN):
4920 Delete.
4921 (LIBGCC2_FLOAT_WORDS_BIG_ENDIAN): Test __BYTE_ORDER__.
4922
8ac7fdcb
NF
49232010-10-14 Nathan Froyd <froydnj@codesourcery.com>
4924
4925 * config/arm/bpabi.h: New file.
4926 * config/frv/frv-abi.h: New file.
4927
cdb388c2
ILT
49282010-10-01 Ian Lance Taylor <iant@google.com>
4929
4930 * config/t-stack(LIB2ADD_ST): Set instead of LIB2ADD.
4931 * config/i386/t-stack-i386 (LIB2ADD_ST): Likewise.
4932
ef7c141c
L
49332010-10-01 H.J. Lu <hongjiu.lu@intel.com>
4934
4935 PR target/45858
4936 * config.host: Add the missing `$'.
4937
80920132
ME
49382010-09-30 Michael Eager <eager@eagercon.com>
4939
4940 * config.host: Add microblaze*-*-*.
4941 * config/microblaze/{divsi3.asm,divsi3_table.c,moddi3.asm,modsi3.asm,
4942 muldi3_hard.asm,mulsi3.asm,stack_overflow_exit.asm,t-microblaze,
4943 udivsi3.asm,umodsi3.asm}: New.
4944
6dace308
ILT
49452010-09-28 Ian Lance Taylor <iant@google.com>
4946
4947 * configure.ac: Adjust CFI test to test assembler directly rather
4948 than checking gcc preprocessor macro.
4949 * configure: Rebuild.
4950
b6110d6d
ILT
49512010-09-27 Ian Lance Taylor <iant@google.com>
4952
4953 * configure.ac: Test whether assembler supports CFI directives.
4954 * config.host: Only add t-stack and i386/t-stack-i386 to
4955 tmake_file if libgcc_cv_cfi is "yes".
4956 * configure: Rebuild.
4957
7458026b
ILT
49582010-09-27 Ian Lance Taylor <iant@google.com>
4959
4960 * generic-morestack.h: New file.
4961 * generic-morestack.c: New file.
4962 * generic-morestack-thread.c: New file.
4963 * config/i386/morestack.S: New file.
4964 * config/t-stack: New file.
4965 * config/i386/t-stack-i386: New file.
4966 * config.host (i[34567]86-*-linux* and friends): Add t-stack and
4967 i386/t-stack-i386 to tmake_file.
4968
5b50fc0c
IS
49692010-09-21 Iain Sandoe <iains@gcc.gnu.org>
4970
4971 * Makefile.in (libgcc-extra-parts): Check for static archives and
4972 invoke ranlib after installing them.
4973 (gcc-extra-parts): Likewise.
4974 (install-leaf): Likewise.
4975
b93cf342
L
49762010-09-14 H.J. Lu <hongjiu.lu@intel.com>
4977
4978 * configure: Regenerated.
4979
996b42ef
KT
49802010-09-10 Kai Tietz <kai.tietz@onevision.com>
4981
b93cf342 4982 * configure: Regenerated.
996b42ef 4983
be1c764e
GP
49842010-09-09 Gerald Pfeifer <gerald@pfeifer.com>
4985 Andrew Pinski <pinskia@gmail.com>
4986
1da9434b 4987 PR target/40959
be1c764e
GP
4988 * config.host (ia64*-*-freebsd*): Set extra_parts. Set tmake_file.
4989
cc0ae0ca
L
49902010-09-06 H.J. Lu <hongjiu.lu@intel.com>
4991
4992 PR target/45524
4993 * configure: Regenerated.
4994
84f47d20
AS
49952010-09-06 Andreas Schwab <schwab@redhat.com>
4996
4997 * configure: Regenerate.
4998
4159fb8d
UB
49992010-09-03 Uros Bizjak <ubizjak@gmail.com>
5000
5001 * config/i386/t-sol2 (__copysigntf3, __fabstf3): Disable for
5002 64bit targets.
5003 (__fixtfti, __fixunstfti, __floattitf, __floatuntitf): Enable only
5004 for 64bit targets.
5005
0df8fcc8
UB
50062010-09-03 Uros Bizjak <ubizjak@gmail.com>
5007 Iain Sandoe <iains@gcc.gnu.org>
5008
5009 PR target/45476
5010 * Makefile.in (sifuncs, difuncs, tifuncs): Filter out
5011 LIB2FUNCS_EXCLUDE functions.
5012
3c39bca6
AK
50132010-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
5014
5015 * configure.ac: Use the GCC_AC_ENABLE_DECIMAL_FLOAT macro.
5016 Include dfp.m4.
5017 * configure: Regenerate.
5018
d78552bd
UB
50192010-09-01 Uros Bizjak <ubizjak@gmail.com>
5020
5021 * config.host (i[34567]86-*-freebsd*, x86_64-*-freebsd*): Add
5022 i386/t-freebsd to tmake_file.
5023 * config/i386/t-freebsd: New file.
5024 * config/i386/libgcc-bsd.ver: New file.
5025
c5b79d4e
NF
50262010-07-23 Nathan Froyd <froydnj@codesourcery.com>
5027
5028 * config.host (powerpc*-eabispe*): Set tmake_file.
5029 (powerpc*-eabi*): Likewise.
5030 * config/rs6000/t-ppccomm (EXTRA_PARTS): Add crtbegin, crtend,
5031 crtbeginS, crtendS, crtbeginT.
5032
48b09a92
KH
50332010-06-12 Kazu Hirata <kazu@codesourcery.com>
5034
5035 * config.host (mips64*-*-linux*, mips*-*-linux*): Add mips/t-crtfm
5036 to tmake_file. Add crtfastmath.o to extra_parts.
5037 * config/mips/t-crtfm: New.
5038
a4389204
JS
50392010-05-19 Joel Sherrill <joel.sherrill@oarcorp.com>
5040
5041 * config.host (sparc64-*-rtems*): New target.
5042
ed104137
RO
50432010-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5044
5045 * config/i386/32/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Support Sun
5046 assembler syntax.
5047
3f56ef8b
TS
50482010-04-15 Thomas Schwinge <tschwinge@gnu.org>
5049
5050 * config.host <i[34567]86-*-gnu*>: Handle softfp as for Linux.
5051
8c200350
RO
50522010-04-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5053
5054 * config.host (alpha*-dec-osf[45]*): Removed alpha*-dec-osf4*,
5055 alpha-dec-osf5.0* support.
5056
80a61cb4 50572010-04-01 Ralf Corsépius <ralf.corsepius@rtems.org>
c1b14424
RC
5058
5059 * config.host: Add lm32-*-rtems*.
5060
f128db92
RO
50612010-03-31 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5062 Uros Bizjak <ubizjak@gmail.com>
5063
5064 PR target/39048
5065 * config.host (i[34567]86-*-solaris2): Handle 32-bit Solaris 2/x86
5066 like other remaining 32-bit x86 OSes.
5067 * config/i386/32/sfp-machine.h (FP_HANDLE_EXCEPTIONS): Support Sun
5068 assembler syntax.
5069 * config/i386/libgcc-sol2.ver: New file.
5070 * config/i386/t-sol2 (SHLIB_MAPFILES): Add it.
5071
368fabd5
JH
50722010-03-30 Jack Howarth <howarth@bromo.med.uc.edu>
5073
5074 PR c/43553
5075 * Makefile.in (INTERNAL_CFLAGS): Add @set_use_emutls@.
5076 * configure.ac: Use GCC_CHECK_EMUTLS to see if emulated TLS
5077 is used and substitute set_use_emutls.
5078 * configure: Regenerated.
5079
15baf7f8
TG
50802010-03-30 Tarik Graba <tarik.graba@telecom-paristech.fr>
5081
5082 * config/lm32/t-lm32: Remove misplaced MULTILIB_OPTIONS.
5083
7f5441df
RO
50842010-03-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5085
5086 PR target/38085
5087 * config/i386/t-sol2 ($(T)gmon.o): Use CFLAGS instead of
5088 MULTILIB_CFLAGS.
5089 ($(T)gcrt1.o): Likewise.
5090 ($(T)crt1.o): Likewise.
5091 ($(T)crti.o): Likewise.
5092 ($(T)crtn.o): Likewise.
5093
ef74edbd
RW
50942010-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5095
5096 PR other/42980
5097 * Makefile.in (install): Use $(MAKE) string in rule, for
5098 parallel make.
5099
e7c914db
HPN
51002010-02-22 Hans-Peter Nilsson <hp@bitrange.com>
5101
5102 Migrate from broken pre-libgcc legacy support to libgcc-centric rules.
5103 * config/mmix/t-mmix: New file.
5104 * config.host <mmix-knuth-mmixware> (extra_parts, tmake_file): Set.
5105
1bcb71c4
JH
51062010-02-02 Jack Howarth <howarth@bromo.med.uc.edu>
5107
5108 PR java/41991
5109 * config/t-slibgcc-darwin: Add libgcc-libsystem.ver to
5110 SHLIB_MAPFILES.
5111
e6e50811
AG
51122010-01-04 Anthony Green <green@moxielogic.com>
5113
5114 * config/moxie/crti.asm, config/moxie/crtn.asm,
5115 config/moxie/t-moxie-softfp, config/moxie/sfp-machine.h,
5116 config/moxie/t-moxie: New files.
5117 * config.host: Add t-moxie-softfp reference.
5118
ca8520ad
IS
51192009-11-18 Iain Sandoe <iain.sandoe@sandoe-acoustics.co.uk>
5120
5121 PR other/39888
5122 * config/t-slibgcc-darwin: Fix embedded rpaths for
5123 --enable-version-specific-runtime-libs, build extension stub
5124 libs exposing features available from current libgcc_s.
5125
aa4945c1
JB
51262009-11-11 Jon Beniston <jon@beniston.com>
5127
d78552bd
UB
5128 * config.host: Add lm32 targets.
5129 * config/lm32: New directory.
5130 * config/lm32/libgcc_lm32.h: New file.
5131 * config/lm32/_mulsi3.c: New file.
5132 * config/lm32/_udivmodsi4.c: New file.
5133 * config/lm32/_divsi3.c: New file.
5134 * config/lm32/_modsi3.c: New file.
5135 * config/lm32/_udivsi3.c: New file.
5136 * config/lm32/_umodsi3.c: New file.
5137 * config/lm32/_lshrsi3.S: New file.
5138 * config/lm32/_ashrsi3.S: New file.
5139 * config/lm32/_ashlsi3.S: New file.
5140 * config/lm32/crti.S: New file.
5141 * config/lm32/crtn.S: New file.
5142 * config/lm32/t-lm32: New file.
5143 * config/lm32/t-elf: New file.
5144 * config/lm32/t-uclinux: New file.
aa4945c1 5145
65a324b4
NC
51462009-10-26 Nick Clifton <nickc@redhat.com>
5147
5148 * config.host: Add support for RX target.
5149 * config/rx: New directory.
5150 * config/rx/rx-abi-functions.c: New file. Supplementary
5151 functions for libgcc to support the RX ABI.
5152 * config/rx/rx-abi.h: New file. Supplementary header file for
5153 libgcc RX ABI functions.
5154 * config/rx/t-rx: New file: Makefile fragment for building
5155 libgcc for the RX.
5156
dfb3b0e3
UB
51572009-10-09 Uros Bizjak <ubizjak@gmail.com>
5158
5159 * config/i386/32/sfp-machine.h (__FP_FRAC_SUB_4): Change operand
5160 constraint of y0 to "g".
5161
81dd9fd7
AK
51622009-10-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
5163
5164 * config.host: Include the s390 makefile fragments.
5165 * config/s390/32/_fixdfdi.c: New file.
5166 * config/s390/32/_fixsfdi.c: New file.
5167 * config/s390/32/_fixtfdi.c: New file.
5168 * config/s390/32/_fixunsdfdi.c: New file.
5169 * config/s390/32/_fixunssfdi.c: New file.
5170 * config/s390/32/_fixunstfdi.c: New file.
5171 * config/s390/32/t-floattodi: New file.
5172 * config/s390/libgcc-glibc.ver: New file.
5173 * config/s390/t-crtstuff: New file.
5174 * config/s390/t-linux: New file.
5175 * config/s390/t-tpf: New file.
5176
df58e648
RW
51772009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5178
5179 * configure.ac (AC_PREREQ): Bump to 2.64.
5180
79052be3
KK
51812009-08-22 Kaz Kojima <kkojima@gcc.gnu.org>
5182
5183 * config/sh/t-linux (HOST_LIBGCC2_CFLAGS): Add -mieee.
5184
5213506e
RW
51852009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5186
5187 * configure: Regenerate.
5188
a9a25daa
DR
51892009-08-09 Douglas B Rupp <rupp@gnat.com>
5190
5191 * config.host (ia64-hp-*vms*): New target.
5192 (alpha64-dec-*vms*,alpha*-dec-*vms*): Fix for config/vms and unify
5193 with ia64-hp-*vms*.
5194
6efbd53f
RW
51952009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5196
5197 * configure.ac: Add snippet for maintainer-mode.
5198 * configure: Regenerate.
5199 * Makefile.in (AUTOCONF, configure_deps): New variables.
5200 ($(srcdir)/configure)): New rule, active only with maintainer
5201 mode turned on.
5202
7acf4da6
DD
52032009-06-23 DJ Delorie <dj@redhat.com>
5204
5205 Add MeP port.
5206 * config.host: Add mep support.
5207
54f549af
KT
52082009-06-22 Kai Tietz <kai.tietz@onevision.com>
5209
34481f28 5210 * config.host: Add i386/${host_address}/t-fprules-softfp and
dfb3b0e3 5211 t-softfp to tmake_file for i[34567]86-*-mingw*, x86_64-*-mingw*.
34481f28
UB
5212
5213 * config/i386/64/_divtc3.c: Disable usage of .symver assembly symbol
5214 for mingw targets.
54f549af
KT
5215 * config/i386/64/_multc3.c: Likewise.
5216 * config/i386/64/_powitf2.c: Likewise.
5217 * config/i386/64/eqtf2.c: Likewise.
5218 * config/i386/64/getf2.c: Likewise.
5219 * config/i386/64/letf2.c: Likewise.
5220 * config/i386/64/letf2.c: Likewise.
34481f28
UB
5221 * config/i386/64/sfp-machine.h (_FP_W_TYPE): Define as
5222 unsigned long long for x64 mingw targets.
5223 (_FP_WS_TYPE): Define as signed long long for x64 mingw target.
5224 (_FP_I_TYPE): Define as long long for x64 mingw target.
54f549af 5225
fea96e25
MR
52262009-06-10 Maciej W. Rozycki <macro@linux-mips.org>
5227
5228 * config.host (vax-*-linux*): New.
5229
cceb575c
AG
52302009-05-31 Anthony Green <green@moxielogic.com>
5231
5232 * config.host: Add moxie support.
5233 * config/moxie/t-moxie: New file.
5234
e997fb9c
DB
52352009-05-29 David Billinghurst <billingd@gcc.gnu.org>
5236
5237 * config.host: Add i386/${host_address}/t-fprules-softfp and
dfb3b0e3 5238 t-softfp to tmake_file for i[34567]86-*-cygwin*.
e997fb9c 5239
532bfb0a
AJ
52402009-04-17 Aurelien Jarno <aurelien@aurel32.net>
5241
5242 * config.host: Add i386/${host_address}/t-fprules-softfp to
5243 tmake_file for i[34567]86-*-kfreebsd*-gnu, x86_64-*-kfreebsd*-gnu*.
5244
748086b7
JJ
52452009-04-09 Nick Clifton <nickc@redhat.com>
5246
5247 * config/ia64/tf-signs.c: Change copyright header to refer to
5248 version 3 of the GNU General Public License with version 3.1
5249 of the GCC Runtime Library Exception and to point readers at
5250 the COPYING3 and COPYING3.RUNTIME files and the FSF's license
5251 web page.
5252 * config/i386/32/tf-signs.c: Likewise.
5253 * config/libbid/_addsub_dd.c: Likewise.
5254 * config/libbid/_addsub_sd.c: Likewise.
5255 * config/libbid/_addsub_td.c: Likewise.
5256 * config/libbid/_dd_to_df.c: Likewise.
5257 * config/libbid/_dd_to_di.c: Likewise.
5258 * config/libbid/_dd_to_sd.c: Likewise.
5259 * config/libbid/_dd_to_sf.c: Likewise.
5260 * config/libbid/_dd_to_si.c: Likewise.
5261 * config/libbid/_dd_to_td.c: Likewise.
5262 * config/libbid/_dd_to_tf.c: Likewise.
5263 * config/libbid/_dd_to_udi.c: Likewise.
5264 * config/libbid/_dd_to_usi.c: Likewise.
5265 * config/libbid/_dd_to_xf.c: Likewise.
5266 * config/libbid/_df_to_dd.c: Likewise.
5267 * config/libbid/_df_to_sd.c: Likewise.
5268 * config/libbid/_df_to_td.c: Likewise.
5269 * config/libbid/_di_to_dd.c: Likewise.
5270 * config/libbid/_di_to_sd.c: Likewise.
5271 * config/libbid/_di_to_td.c: Likewise.
5272 * config/libbid/_div_dd.c: Likewise.
5273 * config/libbid/_div_sd.c: Likewise.
5274 * config/libbid/_div_td.c: Likewise.
5275 * config/libbid/_eq_dd.c: Likewise.
5276 * config/libbid/_eq_sd.c: Likewise.
5277 * config/libbid/_eq_td.c: Likewise.
5278 * config/libbid/_ge_dd.c: Likewise.
5279 * config/libbid/_ge_sd.c: Likewise.
5280 * config/libbid/_ge_td.c: Likewise.
5281 * config/libbid/_gt_dd.c: Likewise.
5282 * config/libbid/_gt_sd.c: Likewise.
5283 * config/libbid/_gt_td.c: Likewise.
5284 * config/libbid/_isinfd128.c: Likewise.
5285 * config/libbid/_isinfd32.c: Likewise.
5286 * config/libbid/_isinfd64.c: Likewise.
5287 * config/libbid/_le_dd.c: Likewise.
5288 * config/libbid/_le_sd.c: Likewise.
5289 * config/libbid/_le_td.c: Likewise.
5290 * config/libbid/_lt_dd.c: Likewise.
5291 * config/libbid/_lt_sd.c: Likewise.
5292 * config/libbid/_lt_td.c: Likewise.
5293 * config/libbid/_mul_dd.c: Likewise.
5294 * config/libbid/_mul_sd.c: Likewise.
5295 * config/libbid/_mul_td.c: Likewise.
5296 * config/libbid/_ne_dd.c: Likewise.
5297 * config/libbid/_ne_sd.c: Likewise.
5298 * config/libbid/_ne_td.c: Likewise.
5299 * config/libbid/_sd_to_dd.c: Likewise.
5300 * config/libbid/_sd_to_df.c: Likewise.
5301 * config/libbid/_sd_to_di.c: Likewise.
5302 * config/libbid/_sd_to_sf.c: Likewise.
5303 * config/libbid/_sd_to_si.c: Likewise.
5304 * config/libbid/_sd_to_td.c: Likewise.
5305 * config/libbid/_sd_to_tf.c: Likewise.
5306 * config/libbid/_sd_to_udi.c: Likewise.
5307 * config/libbid/_sd_to_usi.c: Likewise.
5308 * config/libbid/_sd_to_xf.c: Likewise.
5309 * config/libbid/_sf_to_dd.c: Likewise.
5310 * config/libbid/_sf_to_sd.c: Likewise.
5311 * config/libbid/_sf_to_td.c: Likewise.
5312 * config/libbid/_si_to_dd.c: Likewise.
5313 * config/libbid/_si_to_sd.c: Likewise.
5314 * config/libbid/_si_to_td.c: Likewise.
5315 * config/libbid/_td_to_dd.c: Likewise.
5316 * config/libbid/_td_to_df.c: Likewise.
5317 * config/libbid/_td_to_di.c: Likewise.
5318 * config/libbid/_td_to_sd.c: Likewise.
5319 * config/libbid/_td_to_sf.c: Likewise.
5320 * config/libbid/_td_to_si.c: Likewise.
5321 * config/libbid/_td_to_tf.c: Likewise.
5322 * config/libbid/_td_to_udi.c: Likewise.
5323 * config/libbid/_td_to_usi.c: Likewise.
5324 * config/libbid/_td_to_xf.c: Likewise.
5325 * config/libbid/_tf_to_dd.c: Likewise.
5326 * config/libbid/_tf_to_sd.c: Likewise.
5327 * config/libbid/_tf_to_td.c: Likewise.
5328 * config/libbid/_udi_to_dd.c: Likewise.
5329 * config/libbid/_udi_to_sd.c: Likewise.
5330 * config/libbid/_udi_to_td.c: Likewise.
5331 * config/libbid/_unord_dd.c: Likewise.
5332 * config/libbid/_unord_sd.c: Likewise.
5333 * config/libbid/_unord_td.c: Likewise.
5334 * config/libbid/_usi_to_dd.c: Likewise.
5335 * config/libbid/_usi_to_sd.c: Likewise.
5336 * config/libbid/_usi_to_td.c: Likewise.
5337 * config/libbid/_xf_to_dd.c: Likewise.
5338 * config/libbid/_xf_to_sd.c: Likewise.
5339 * config/libbid/_xf_to_td.c: Likewise.
5340 * config/libbid/bid128.c: Likewise.
5341 * config/libbid/bid128_2_str.h: Likewise.
5342 * config/libbid/bid128_2_str_macros.h: Likewise.
5343 * config/libbid/bid128_2_str_tables.c: Likewise.
5344 * config/libbid/bid128_add.c: Likewise.
5345 * config/libbid/bid128_compare.c: Likewise.
5346 * config/libbid/bid128_div.c: Likewise.
5347 * config/libbid/bid128_fma.c: Likewise.
5348 * config/libbid/bid128_logb.c: Likewise.
5349 * config/libbid/bid128_minmax.c: Likewise.
5350 * config/libbid/bid128_mul.c: Likewise.
5351 * config/libbid/bid128_next.c: Likewise.
5352 * config/libbid/bid128_noncomp.c: Likewise.
5353 * config/libbid/bid128_quantize.c: Likewise.
5354 * config/libbid/bid128_rem.c: Likewise.
5355 * config/libbid/bid128_round_integral.c: Likewise.
5356 * config/libbid/bid128_scalb.c: Likewise.
5357 * config/libbid/bid128_sqrt.c: Likewise.
5358 * config/libbid/bid128_string.c: Likewise.
5359 * config/libbid/bid128_to_int16.c: Likewise.
5360 * config/libbid/bid128_to_int32.c: Likewise.
5361 * config/libbid/bid128_to_int64.c: Likewise.
5362 * config/libbid/bid128_to_int8.c: Likewise.
5363 * config/libbid/bid128_to_uint16.c: Likewise.
5364 * config/libbid/bid128_to_uint32.c: Likewise.
5365 * config/libbid/bid128_to_uint64.c: Likewise.
5366 * config/libbid/bid128_to_uint8.c: Likewise.
5367 * config/libbid/bid32_to_bid128.c: Likewise.
5368 * config/libbid/bid32_to_bid64.c: Likewise.
5369 * config/libbid/bid64_add.c: Likewise.
5370 * config/libbid/bid64_compare.c: Likewise.
5371 * config/libbid/bid64_div.c: Likewise.
5372 * config/libbid/bid64_fma.c: Likewise.
5373 * config/libbid/bid64_logb.c: Likewise.
5374 * config/libbid/bid64_minmax.c: Likewise.
5375 * config/libbid/bid64_mul.c: Likewise.
5376 * config/libbid/bid64_next.c: Likewise.
5377 * config/libbid/bid64_noncomp.c: Likewise.
5378 * config/libbid/bid64_quantize.c: Likewise.
5379 * config/libbid/bid64_rem.c: Likewise.
5380 * config/libbid/bid64_round_integral.c: Likewise.
5381 * config/libbid/bid64_scalb.c: Likewise.
5382 * config/libbid/bid64_sqrt.c: Likewise.
5383 * config/libbid/bid64_string.c: Likewise.
5384 * config/libbid/bid64_to_bid128.c: Likewise.
5385 * config/libbid/bid64_to_int16.c: Likewise.
5386 * config/libbid/bid64_to_int32.c: Likewise.
5387 * config/libbid/bid64_to_int64.c: Likewise.
5388 * config/libbid/bid64_to_int8.c: Likewise.
5389 * config/libbid/bid64_to_uint16.c: Likewise.
5390 * config/libbid/bid64_to_uint32.c: Likewise.
5391 * config/libbid/bid64_to_uint64.c: Likewise.
5392 * config/libbid/bid64_to_uint8.c: Likewise.
5393 * config/libbid/bid_b2d.h: Likewise.
5394 * config/libbid/bid_binarydecimal.c: Likewise.
5395 * config/libbid/bid_conf.h: Likewise.
5396 * config/libbid/bid_convert_data.c: Likewise.
5397 * config/libbid/bid_decimal_data.c: Likewise.
5398 * config/libbid/bid_decimal_globals.c: Likewise.
5399 * config/libbid/bid_div_macros.h: Likewise.
5400 * config/libbid/bid_dpd.c: Likewise.
5401 * config/libbid/bid_flag_operations.c: Likewise.
5402 * config/libbid/bid_from_int.c: Likewise.
5403 * config/libbid/bid_functions.h: Likewise.
5404 * config/libbid/bid_gcc_intrinsics.h: Likewise.
5405 * config/libbid/bid_inline_add.h: Likewise.
5406 * config/libbid/bid_internal.h: Likewise.
5407 * config/libbid/bid_round.c: Likewise.
5408 * config/libbid/bid_sqrt_macros.h: Likewise.
5409
54102009-04-09 Jakub Jelinek <jakub@redhat.com>
5411
5412 * Makefile.in: Change copyright header to refer to version
5413 3 of the GNU General Public License and to point readers at the
5414 COPYING3 file and the FSF's license web page.
5415 * config.host: Likewise.
5416
633dd061
AM
54172009-04-07 Alan Modra <amodra@bigpond.net.au>
5418
5419 * config.host: Reorder and merge to match config.gcc change.
5420
457d1d00
AM
54212009-04-03 Alan Modra <amodra@bigpond.net.au>
5422
5423 * config.host (powerpc-*-linux*altivec*, powerpc-*-linux*spe): Delete.
5424
52c0e446
JM
54252009-03-28 Joseph Myers <joseph@codesourcery.com>
5426
5427 * config.host (arm-*-coff*, armel-*-coff*, arm-semi-aof,
5428 armel-semi-aof, h8300-*-*, i[34567]86-*-aout*, i[34567]86-*-coff*,
5429 m68k-*-aout*, m68k-*-coff*, pdp11-*-bsd, rs6000-ibm-aix4.[12]*,
5430 powerpc-ibm-aix4.[12]*, sh-*-*): Remove.
5431
ba181049
UB
54322009-02-12 Uros Bizjak <ubizjak@gmail.com>
5433
5434 * config.host (ia64*-*-linux*): Add t-softfp to tmake_file.
5435 * config/ia64/tf-signs.c (__copysigntf3, __fabstf2): Prototype.
5436
c252db20
L
54372009-02-12 H.J. Lu <hongjiu.lu@intel.com>
5438
ba181049
UB
5439 * config.host (ia64*-*-linux*): Add ia64/t-fprules-softfp and
5440 ia64/t-softfp-compat to tmake_file.
c252db20
L
5441
5442 * Makefile.in (gen-hide-list): Ignore .*_compat and .*@.*.
5443
5444 * config/ia64/__divxf3.asm: New.
5445 * config/ia64/_fixtfdi.asm: Likewise.
5446 * config/ia64/_fixunstfdi.asm: Likewise.
5447 * config/ia64/_floatditf.asm: Likewise.
5448 * config/ia64/t-fprules-softfp: Likewise.
5449 * config/ia64/t-softfp-compat: Likewise.
5450 * config/ia64/tf-signs.c: Likewise.
5451
c60535f9
BE
54522009-01-18 Ben Elliston <bje@au.ibm.com>
5453
5454 * config/i386/32/tf-signs.c (__copysigntf3, __fabstf2): Prototype.
5455
ce16861e
BE
54562009-01-16 Ben Elliston <bje@au.ibm.com>
5457
5458 * config.host (i[34567]86-*-linux*, x86_64-*-linux*): Add t-softfp
5459 to tmake_file.
5460
bcf4713b
BE
54612009-01-13 Ben Elliston <bje@au.ibm.com>
5462
5463 * config/t-softfp: New file.
5464 * config.host (powerpc64-*-linux*, powerpc64-*-gnu*): Add t-softfp.
5465 (powerpc-*-linux*spe*, powerpc-*-linux*): Likewise.
5466
2042cb04
JS
54672009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com>
5468
5469 * config.host: Add m32r*-*-rtems*.
5470
541ed00e
JS
54712008-12-01 Joel Sherrill <joel.sherrill@oarcorp.com>
5472
5473 * config.host: Add m32c*-*-rtems*.
5474
19523300
RO
54752008-11-20 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5476
5477 PR bootstrap/33100
5478 * configure.ac (i?86-*-solaris2.1[0-9]*): Only include
5479 i386/t-crtstuff if linker supports ZERO terminator unwind entries.
5480 * configure: Regenerate.
5481 * config.host (i[34567]86-*-solaris2*): Move i386/t-sol2 in
5482 tmake_file here from gcc/config.gcc.
5483 Move extra_parts here from gcc/config.gcc.
5484 * config/i386/t-sol2: Move here from gcc/config/i386.
5485 Use gcc_srcdir instead of srcdir.
5486
0a4a51c7
AN
54872008-11-18 Adam Nemet <anemet@caviumnetworks.com>
5488
5489 * config.host (mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*): New
5490 case.
5491
2a761e46
TS
54922008-11-09 Thomas Schwinge <tschwinge@gnu.org>
5493
5494 * config.host <t-tls>: Also enable for GNU/kFreeBSD and GNU/kNetBSD.
5495
c0451df7
TS
54962008-10-08 Thomas Schwinge <tschwinge@gnu.org>
5497
5498 * config.host: Fold `*-*-gnu*' cases into the Linux ones.
5499
358da97e
HS
55002008-09-03 Hari Sandanagobalane <hariharan@picochip.com>
5501
5502 Add picoChip port.
5503 * config.host: Add picochip-*-*.
5504
c660f132
BW
55052008-08-06 Bob Wilson <bob.wilson@acm.org>
5506
5507 * config.host: Match more processor names for Xtensa.
5508
d1349557
L
55092008-07-08 H.J. Lu <hongjiu.lu@intel.com>
5510
5511 * config/i386/64/t-softfp-compat: Update comments.
5512
dd7b73c0
L
55132008-07-07 H.J. Lu <hongjiu.lu@intel.com>
5514
5515 * config/i386/64/_divtc3-compat.c: Moved to ...
5516 * config/i386/64/_divtc3.c: Here.
5517
5518 * config/i386/64/_multc3-compat.c: Moved to ...
5519 * config/i386/64/_multc3.c: Here.
5520
5521 * config/i386/64/_powitf2-compat.c: Moved to ...
5522 * config/i386/64/_powitf2.c: Here.
5523
5524 * config/i386/64/t-softfp-compat (libgcc2-tf-compats): Add
5525 .c suffix instead of -compat.c.
5526
6e1fab3d
UB
55272008-07-05 Uros Bizjak <ubizjak@gmail.com>
5528
5529 * config/i386/32/sfp-machine.h (_FP_MUL_MEAT_S): Remove.
5530 (_FP_MUL_MEAT_D): Ditto.
5531 (_FP_DIV_MEAT_S): Ditto.
5532 (_FP_DIV_MEAT_D): Ditto.
5533
f92518d7
RS
55342008-07-03 Richard Sandiford <rdsandiford@googlemail.com>
5535
5536 * Makefile.in: Add support for __sync_* libgcc functions.
5537
d0aede14
L
55382008-07-03 H.J. Lu <hongjiu.lu@intel.com>
5539
5540 * shared-object.mk ($(base)_s$(objext)): Remove -DSHARED.
5541
c174f11c
L
55422008-07-02 H.J. Lu <hongjiu.lu@intel.com>
5543
5544 PR boostrap/36702
5545 * config.host: Only include 32bit t-fprules-softfp for Darwin/x86
5546 and Linux/x86. Include 64bit t-softfp-compat for Linux/x86.
5547
5548 * config/i386/64/t-fprules-softfp: Moved to ...
5549 * config/i386/64/t-softfp-compat: This. New.
5550
5f464fa2
UB
55512008-07-02 Uros Bizjak <ubizjak@gmail.com>
5552
5553 * config/i386/32/sfp-machine.h (FP_HANDLE_EXCEPTIONS) [FP_EX_INVALID]:
5554 Initialize f with 0.0.
5555
ff473280
L
55562008-07-02 H.J. Lu <hongjiu.lu@intel.com>
5557
5558 PR target/36669
5559 * shared-object.mk ($(base)_s$(objext)): Add -DSHARED.
5560
5561 * config/i386/64/_divtc3-compat.c: New.
5562 * config/i386/64/_multc3-compat.c: Likewise.
5563 * config/i386/64/_powitf2-compat.c: Likewise.
5564 * config/i386/64/eqtf2.c: Likewise.
5565 * config/i386/64/getf2.c: Likewise.
5566 * config/i386/64/letf2.c: Likewise.
5567 * config/i386/64/t-fprules-softfp: Likewise.
5568
55692008-07-02 H.J. Lu <hongjiu.lu@intel.com>
5570
5571 * config.host: Add i386/${host_address}/t-fprules-softfp to
5572 tmake_file for i[34567]86-*-darwin*, x86_64-*-darwin*,
dfb3b0e3 5573 i[34567]86-*-linux*, x86_64-*-linux*.
ff473280
L
5574
5575 * configure.ac: Set host_address to 64 or 32 for x86.
5576 * configure: Regenerated.
5577
5578 * Makefile.in (config.status): Also depend on
5579 $(srcdir)/config.host.
5580
5581 * config/i386/32/t-fprules-softfp: New.
5582 * config/i386/32/tf-signs.c: Likewise.
5583
5584 * config/i386/64/sfp-machine.h: New. Moved from gcc.
5585
55862008-07-02 H.J. Lu <hongjiu.lu@intel.com>
5587 Uros Bizjak <ubizjak@gmail.com>
5588
5589 * config/i386/32/sfp-machine.h: New.
5590
30551d99
NF
55912008-06-26 Nathan Froyd <froydnj@codesourcery.com>
5592
5593 * config/rs6000/t-ppccomm: Remove rules that conflict with
5594 auto-generated rules.
5595
18c04407
RW
55962008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5597
5598 * configure.ac: sinclude override.m4.
5599 * configure: Regenerate.
5600
10fbe77a
BRF
56012008-06-11 Bernhard Fischer <aldot@gcc.gnu.org>
5602
5603 * configure: Regenerate.
5604
bc6d4c3f
JM
56052008-06-10 Joseph Myers <joseph@codesourcery.com>
5606
5607 * Makefile.in (DECNUMINC): Remove
5608 -I$(MULTIBUILDTOP)../../libdecnumber.
5609 * gstdint.h: New.
5610
cd985f66
JM
56112008-06-07 Joseph Myers <joseph@codesourcery.com>
5612
5613 * config.host (strongarm*-*-*, ep9312*-*-*, xscale-*-*,
5614 parisc*-*-*, m680[012]0-*-*, *-*-linux*libc1*, *-*-linux*aout*,
5615 alpha*-*-unicosmk*, strongarm*-*-freebsd*, ep9312-*-elf,
5616 arm*-*-kaos*, cris-*-aout, parisc*64*-*-linux*, parisc*-*-linux*,
5617 hppa1.1-*-pro*, hppa1.1-*-osf*, hppa1.1-*-bsd*,
5618 i[34567]86-sequent-ptx4*, i[34567]86-sequent-sysv4*,
5619 i[34567]86-*-beoself*, i[34567]86-*-beos*, i[34567]86-*-sco3.2v5*,
5620 i[34567]86-*-sysv5*, i[34567]86-*-sysv4*, i[34567]86-*-uwin*,
5621 i[34567]86-*-kaos*, m68020-*-elf*, m68010-*-netbsdelf*,
5622 mips-wrs-windiss, mt-*-elf, powerpc-*-beos*, powerpc-*-chorusos*,
5623 powerpc-wrs-windiss*, powerpcle-*-sysv*, powerpc-*-kaos*,
5624 powerpcle-*-kaos*, sh*-*-kaos*, sparc-*-sysv4*, strongarm-*-elf*,
5625 strongarm-*-pe, strongarm-*-kaos*, vax-*-bsd*, vax-*-sysv*,
5626 vax-*-ultrix*, xscale-*-elf, xscale-*-coff): Remove.
5627
93fea8d3
AL
56282008-05-25 Arthur Loiret <arthur.loiret@u-psud.fr>
5629
5630 * config.host (sh2[lbe]*-*-linux*): Allow target.
5631
18724e30
NF
56322008-04-30 Nathan Froyd <froydnj@codesourcery.com>
5633
5634 * config/rs6000/t-ppccomm: Add build rules for new files.
5635 (LIB2ADD_ST): New variable.
5636
47583040
AH
56372008-04-07 Andy Hutchinson <hutchinsonandy@aim.com>
5638
5639 PR target/34210
5640 PR target/35508
5641 * config.host (avr-*-*): Add avr cpu_type and avr tmake_file.
5642 * config/t-avr: New file. Build 16bit libgcc functions.
5643
cf8e67fe
JJ
56442008-03-02 Jakub Jelinek <jakub@redhat.com>
5645
5646 PR target/35401
5647 * config/t-slibgcc-darwin: Make install-leaf dependent on
5648 install-darwin-libgcc-stubs instead of install.
5649
8d8da227
JM
56502008-01-25 Joseph Myers <joseph@codesourcery.com>
5651
5652 * config.host (tic4x-*-*, c4x-*-rtems*, tic4x-*-rtems*, c4x-*,
5653 tic4x-*, h8300-*-rtemscoff*, ns32k-*-netbsdelf*, ns32k-*-netbsd*,
5654 sh-*-rtemscoff*): Remove cases.
5655
edbf8b16
RS
56562007-12-27 Richard Sandiford <rsandifo@nildram.co.uk>
5657
5658 * Makefile.in (all): Use install-leaf rather than install.
5659 (install): Split most of the rule into...
5660 (install-leaf): ...this new one.
5661
89deeaff
EK
56622007-12-19 Etsushi Kato <ek.kato@gmail.com>
5663 Paolo Bonzini <bonzini@gnu.org>
5664
5665 PR target/30572
5f464fa2
UB
5666 * Makefile.in: Use @shlib_slibdir@ substitution to get
5667 correct install name on darwin.
89deeaff 5668 * config/t-slibgcc-darwin: Use @shlib_slibdir@ for -install_name.
dfb3b0e3 5669
4081d704
HPN
56702007-12-15 Hans-Peter Nilsson <hp@axis.com>
5671
5672 * config.host (crisv32-*-elf, crisv32-*-none): New, same as
5673 cris-*-elf and cris-*-none.
5674 (crisv32-*-linux*): Similar, as cris-*-linux*.
5675
f43e89a3
RIL
56762007-11-20 Rask Ingemann Lambertsen <rask@sygehus.dk>
5677
5678 * config.host (ia64*-*-elf*): Build ia64 specific libgcc parts.
5679
b4e9c2c6
L
56802007-10-27 H.J. Lu <hongjiu.lu@intel.com>
5681
5682 PR regression/33926
5683 * configure.ac: Replace have_cc_tls with gcc_cv_have_cc_tls.
5684 * configure: Regenerated.
5685
b2a00c89
L
56862007-09-27 H.J. Lu <hongjiu.lu@intel.com>
5687
5688 * Makefile.in (dfp-filenames): Replace decimal_globals,
5689 decimal_data, binarydecimal and convert_data with
5690 bid_decimal_globals, bid_decimal_data, bid_binarydecimal
5691 and bid_convert_data, respectively.
5692
8d2a9e0e
CF
56932007-09-17 Chao-ying Fu <fu@mips.com>
5694 Nigel Stephens <nigel@mips.com>
5695
5696 * fixed-obj.mk: New file to support fine-grain fixed-point functions.
5697 * Makefile.in (fixed_point): Define.
5698 Check if fixed_point is yes to build support functions.
5699 * configure.ac: Check for fixed_point support.
5700 * configure: Regenerated.
5701 * gen-fixed.sh: New file to generate lists of fixed-point labels,
5702 funcs, modes, from, to.
5703
2b53935d
JJ
57042007-09-11 Janis Johnson <janis187@us.ibm.com
5705
5706 * Makefile.in (dfp-filenames): Add bid128_noncomp.
5707
2533577f
JJ
57082007-09-10 Janis Johnson <janis187@us.ibm.com>
5709
5710 * Makefile.in (dfp-filenames): Remove decUtility, add
5711 decDouble, decPacked, decQuad, decSingle.
5712
3ae3dbd6
HK
57132007-08-27 Hans Kester <hans.kester@ellips.nl>
5714
5715 * config.host : Add x86_64-elf target.
5716
22867d02
L
57172007-07-06 H.J. Lu <hongjiu.lu@intel.com>
5718
5719 * configure.ac (set_have_cc_tls): Add a missing =.
5720 * configure: Regenerated.
5721
6f461e76
L
57222007-07-06 H.J. Lu <hongjiu.lu@intel.com>
5723
5724 * config.host (tmake_file): Add t-tls for i[34567]86-*-linux*
5725 and x86_64-*-linux*.
5726
5727 * config/t-tls: New file.
5728
dfb3b0e3 5729 * Makefile.in (INTERNAL_CFLAGS): Add @set_have_cc_tls@.
6f461e76
L
5730
5731 * configure.ac: Include ../config/enable.m4 and
5732 ../config/tls.m4. Use GCC_CHECK_CC_TLS to check if assembler
5733 supports TLS and substitute set_have_cc_tls.
5734 * configure: Regenerated.
5735
200359e8
L
57362007-07-04 H.J. Lu <hongjiu.lu@intel.com>
5737
5738 * Makefile.in: Use libbid for DFP when BID is enabled.
5739
76f5e200
DS
57402007-06-14 Danny Smith <dannysmith@users.sourceforge.net>
5741
5742 * config.host(*-cygwin* |*-mingw* ): Add crtbegin.o, crtend.o to
dfb3b0e3 5743 extra_parts. Add config/i386/t-cygming to tmake_file.
76f5e200
DS
5744 * config/i386/t-cygming: New file with rules for crtbegin.o, crtend.o.
5745
9bd196f0 57462007-05-29 Zuxy Meng <zuxy.meng@gmail.com>
200359e8 5747 Danny Smith <dannysmith@users.sourceforge.net>
9bd196f0
ZM
5748
5749 PR target/29498
5750 * config.host (i[34567]86-*-cygwin* | i[34567]86-*-mingw*) Add
5751 crtfastmath.o to extra_parts. Add i386/t-crtfm to tmake_file.
5752 * config/i386/t-crtfm: Compile crtfastmath.o with
5753 -minline-all-stringops.
5754
1910440e
RS
57552007-05-10 Richard Sandiford <richard@codesourcery.com>
5756
5757 * config.host (sparc-wrs-vxworks): New target.
5758
7d33c31d
KH
57592007-04-14 Kazu Hirata <kazu@codesourcery.com>
5760
5761 * config.host: Recognize fido.
5762
96fccd0d
JJ
57632007-04-04 Janis Johnson <janis187@us.ibm.com>
5764
5765 * configure: Check host, not target, for decimal float support.
5766
577565f9
UB
57672007-04-03 Uros Bizjak <ubizjak@gmail.com>
5768
5769 * config/i386/t-crtpc: New file.
5770 * config.host (i[34567]86-*-linux*): Add i386/t-crtpc to tm-file.
5f464fa2 5771 (x86_64-*-linux*): Ditto.
577565f9 5772
ccf8e764
RH
57732007-02-30 Kai Tietz <kai.tietz@onevision.com>
5774
5775 * config.host (x86_64-*-mingw*): New target.
5776
79b87c74
MM
57772007-03-23 Michael Meissner <michael.meissner@amd.com>
5778 H.J. Lu <hongjiu.lu@intel.com>
5779
5780 * Makefile.in (enable_decimal_float): New.
5781 (DECNUMINC): Add
5782 -I$(srcdir)/../libdecnumber/$(enable_decimal_float).
5783 (dec-objects): Move decimal32, decimal64 and decimal128 to ...
5784 (decbits-filenames): This.
5785 (decbits-objects): New.
5786 (libgcc-objects): Add $(decbits-objects).
5787
5788 * configure.ac: Support * --enable-decimal-float={no,yes,bid,dpd}.
5789 Substitute enable_decimal_float.
5790 * configure: Regenerated.
5791
8fce4e31
HPN
57922007-03-19 Hans-Peter Nilsson <hp@axis.com>
5793
5794 * config.host (cris-*-elf | cris-*-none): Set extra_parts.
5795
e8bb4597
BM
57962007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5797
5798 * Makefile.in (install-info): New dummy target.
5799
344189f9
BS
58002007-03-05 Bernd Schmidt <bernd.schmidt@analog.com>
5801
5802 * config.host (bfin*-linux-uclibc*): Set extra_parts.
5803
ac84c172
BM
58042007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5805
5806 * Makefile.in: Add install-html and install-pdf dummy
5807 targets.
5808
cd5c2357
RS
58092007-02-05 Roger Sayle <roger@eyesopen.com>
5810 Daniel Jacobowitz <dan@codesourcery.com>
5811
5812 * Makefile.in <LIBUNWIND>: Make libgcc_s.so depend on libunwind.so.
5813 (libgcc_s.so): Append -B./ to CFLAGS for $(SHLIB_LINK).
5814 (libunwind.so): Likewise for $(SHLIBUNWIND_LINK).
5815
d9a66f98
JJ
58162007-01-29 Janis Johnson <janis187@us.ibm.com>
5817
5818 * Makefile.in (dec-filenames): Add decExcept.
5819
9891ec5f
DJ
58202007-01-28 Daniel Jacobowitz <dan@codesourcery.com>
5821
5822 PR bootstrap/30469
5823 * Makefile.in (CFLAGS): Forcibly remove -fprofile-generate and
5824 -fprofile-use.
5825
d6efbf5a
DJ
58262007-01-25 Daniel Jacobowitz <dan@codesourcery.com>
5827
5828 * configure.ac: Add --enable-version-specific-runtime-libs.
5829 Correct $slibdir default.
5830 * configure: Regenerated.
5831
17caeff2
JM
58322007-01-23 Joseph Myers <joseph@codesourcery.com>
5833
5834 * config/rs6000/t-ldbl128: Always use -mlong-double-128.
5835
5ea41e3a
AP
58362007-01-21 Andrew Pinski <pinskia@gmail.com>
5837
5838 PR target/30519
5839 * config.host (alpha*-*-linux*): Set extra_parts.
5840
26900826
KK
58412007-01-09 Kaz Kojima <kkojima@gcc.gnu.org>
5842
5843 * config/sh/t-linux: New.
5844 * config.host (sh*-*-linux*): Set tmake_file.
5845
97af925b
DJ
58462007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5847
5848 * Makefile.in (install): Handle multilibs.
5849
b0088af7
BM
58502007-01-04 Brooks Moses <brooks.moses@codesourcery.com>
5851
5852 * Makefile.in: Added .PHONY entry for documentation targets.
5853
e0a9456a
BM
58542007-01-04 Brooks Moses <brooks.moses@codesourcery.com>
5855
5856 * Makefile.in: Add empty info, html, dvi, pdf targets.
5857
7fd453b4
MS
58582007-01-04 Mike Stump <mrs@apple.com>
5859
5860 * Makefile.in (MAKEINFO): Remove.
5861 (PERL): Likewise.
5862
14e8fc8b
PB
58632007-01-04 Paolo Bonzini <bonzini@gnu.org>
5864
5865 * configure.ac: Add GCC_TOPLEV_SUBDIRS.
5866 * configure: Regenerate.
5867 * Makefile.in (host_subdir): Substitute it.
dfb3b0e3 5868 (gcc_objdir): Use it.
14e8fc8b 5869
1555beba
DJ
58702007-01-04 Daniel Jacobowitz <dan@codesourcery.com>
5871
5872 * config.host (ia64*-*-linux*): Set tmake_file.
5873
79e6eaeb
DJ
58742007-01-04 Daniel Jacobowitz <dan@codesourcery.com>
5875
5876 * Makefile.in (version): Define.
5877
fa958513
DJ
58782007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5879 Paolo Bonzini <bonzini@gnu.org>
5880
5881 * Makefile.in, config/i386/t-darwin, config/i386/t-darwin64,
5882 config/i386/t-nwld, config/rs6000/t-darwin, config/rs6000/t-ldbl128,
5883 config/i386/t-crtfm, config/alpha/t-crtfm, config/ia64/t-ia64,
5884 config/sparc/t-crtfm, config/t-slibgcc-darwin,
5885 config/rs6000/t-ppccomm, config.host, configure.ac, empty.mk,
5886 shared-object.mk, siditi-object.mk, static-object.mk: New files.
5887 * configure: Generated.