2017-04-20 Edward Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libhsail-rt / ChangeLog
blob70aecf364bf2dc7f41d88483d64ac4d585b4877a
1 2017-02-01  Jakub Jelinek  <jakub@redhat.com>
3         * configure.tgt: Fix i?86-*-linux* entry.
4         * rt/sat_arithmetic.c (__hsail_sat_add_u32, __hsail_sat_add_u64,
5         __hsail_sat_add_s32, __hsail_sat_add_s64): Use __builtin_add_overflow.
6         (__hsail_sat_sub_u8, __hsail_sat_sub_u16): Remove pointless for overflow
7         over maximum.
8         (__hsail_sat_sub_u32, __hsail_sat_sub_u64, __hsail_sat_sub_s32,
9         __hsail_sat_sub_s64): Use __builtin_sub_overflow.
10         (__hsail_sat_mul_u32, __hsail_sat_mul_u64, __hsail_sat_mul_s32,
11         __hsail_sat_mul_s64): Use __builtin_mul_overflow.
12         * rt/arithmetic.c (__hsail_borrow_u32, __hsail_borrow_u64): Use
13         __builtin_sub_overflow_p.
14         (__hsail_carry_u32, __hsail_carry_u64): Use __builtin_add_overflow_p.
15         * rt/misc.c (__hsail_groupbaseptr, __hsail_kernargbaseptr_u64):
16         Cast pointers to uintptr_t first before casting to some other integral
17         type.
18         * rt/segment.c (__hsail_segmentp_private, __hsail_segmentp_group): Likewise.
19         * rt/queue.c (__hsail_ldqueuereadindex, __hsail_ldqueuewriteindex,
20         __hsail_addqueuewriteindex, __hsail_casqueuewriteindex,
21         __hsail_stqueuereadindex, __hsail_stqueuewriteindex): Cast integral value
22         to uintptr_t first before casting to pointer.
23         * rt/workitems.c (__hsail_alloca_pop_frame): Cast memcpy first argument to
24         void * to avoid warning.
26 2017-01-27  Pekka Jääskeläinen  <pekka.jaaskelainen@parmance.com>
28         * configure.tgt: Moved the white list of supported targets here
29         from configure.ac.  Added i[3456789]86-*-linux* as a supported env
30         for the BRIG FE.
31         * README: Added a proper description of what libhsail-rt is.
33 2017-01-26  Jakub Jelinek  <jakub@redhat.com>
35         Update copyright years.
37 2017-01-25  Thomas Schwinge  <thomas@codesourcery.com>
39         * config.h.in: Remove stale file.
41         * configure.ac: Don't instantiate AC_CONFIG_MACRO_DIR.
42         * configure: Regenerate.
44 2017-01-25  Jakub Jelinek  <jakub@redhat.com>
46         PR other/79046
47         * configure.ac: Add GCC_BASE_VER.
48         * Makefile.am (gcc_version): Use @get_gcc_base_ver@ instead of cat to
49         get version from BASE-VER file.
50         (ACLOCAL_AMFLAGS): Set to -I .. -I ../config .
51         * aclocal.m4: Regenerated.
52         * configure: Regenerated.
53         * Makefile.in: Regenerated.
55 2017-01-24  Pekka Jääskeläinen  <pekka@parmance.com>
56             Martin Jambor  <mjambor@suse.cz>
58         * Makefile.am: New file.
59         * target-config.h.in: Likewise.
60         * configure.ac: Likewise.
61         * configure: Likewise.
62         * config.h.in: Likewise.
63         * aclocal.m4: Likewise.
64         * README: Likewise.
65         * Makefile.in: Likewise.
66         * include/internal/fibers.h: Likewise.
67         * include/internal/phsa-queue-interface.h: Likewise.
68         * include/internal/phsa-rt.h: Likewise.
69         * include/internal/workitems.h: Likewise.
70         * rt/arithmetic.c: Likewise.
71         * rt/atomics.c: Likewise.
72         * rt/bitstring.c: Likewise.
73         * rt/fbarrier.c: Likewise.
74         * rt/fibers.c: Likewise.
75         * rt/fp16.c: Likewise.
76         * rt/misc.c: Likewise.
77         * rt/multimedia.c: Likewise.
78         * rt/queue.c: Likewise.
79         * rt/sat_arithmetic.c: Likewise.
80         * rt/segment.c: Likewise.
81         * rt/workitems.c: Likewise.
83 Copyright (C) 2017 Free Software Foundation, Inc.
85 Copying and distribution of this file, with or without modification,
86 are permitted in any medium without royalty provided the copyright
87 notice and this notice are preserved.