]> git.ipfire.org Git - thirdparty/gcc.git/blob - libhsail-rt/ChangeLog
[Ada] Revert change for gnatprove that is no longer needed
[thirdparty/gcc.git] / libhsail-rt / ChangeLog
1 2019-01-01 Jakub Jelinek <jakub@redhat.com>
2
3 Update copyright years.
4
5 2018-10-31 Joseph Myers <joseph@codesourcery.com>
6
7 PR bootstrap/82856
8 * configure.ac: Remove AC_PREREQ.
9 * Makefile.in, aclocal.m4, configure: Regenerate.
10
11 2018-05-04 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
12
13 * include/internal/phsa-rt.h: Whitespace cleanup.
14 * include/internal/workitems.h: Store work item ID data to easily
15 accessible locations.
16 * rt/workitems.c: Same.
17
18 2018-05-04 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
19
20 * rt/workitems.c: Fix an alloca stack underflow.
21
22 2018-04-18 David Malcolm <dmalcolm@redhat.com>
23
24 PR jit/85384
25 * configure: Regenerate.
26
27 2018-01-03 Jakub Jelinek <jakub@redhat.com>
28
29 Update copyright years.
30
31 2017-09-27 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
32
33 * include/internal/phsa-rt.h: Support for improved group segment
34 handling with a stack-like allocation scheme.
35 * include/internal/workitems.h: Likewise.
36 * rt/workitems.c: Likewise.
37
38 2017-09-25 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
39
40 * rt/workitems.c: Assume the host runtime allocates the work group
41 memory.
42
43 2017-05-03 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
44
45 * rt/workitems.c: Removed a leftover comment.
46 * rt/arithmetic.c (__hsail_class_f32, __hsail_class_f64): Fix the
47 check for signaling/non-signalling NaN. Add class_f64 default
48 implementation.
49
50 2017-02-01 Jakub Jelinek <jakub@redhat.com>
51
52 * configure.tgt: Fix i?86-*-linux* entry.
53 * rt/sat_arithmetic.c (__hsail_sat_add_u32, __hsail_sat_add_u64,
54 __hsail_sat_add_s32, __hsail_sat_add_s64): Use __builtin_add_overflow.
55 (__hsail_sat_sub_u8, __hsail_sat_sub_u16): Remove pointless for overflow
56 over maximum.
57 (__hsail_sat_sub_u32, __hsail_sat_sub_u64, __hsail_sat_sub_s32,
58 __hsail_sat_sub_s64): Use __builtin_sub_overflow.
59 (__hsail_sat_mul_u32, __hsail_sat_mul_u64, __hsail_sat_mul_s32,
60 __hsail_sat_mul_s64): Use __builtin_mul_overflow.
61 * rt/arithmetic.c (__hsail_borrow_u32, __hsail_borrow_u64): Use
62 __builtin_sub_overflow_p.
63 (__hsail_carry_u32, __hsail_carry_u64): Use __builtin_add_overflow_p.
64 * rt/misc.c (__hsail_groupbaseptr, __hsail_kernargbaseptr_u64):
65 Cast pointers to uintptr_t first before casting to some other integral
66 type.
67 * rt/segment.c (__hsail_segmentp_private, __hsail_segmentp_group): Likewise.
68 * rt/queue.c (__hsail_ldqueuereadindex, __hsail_ldqueuewriteindex,
69 __hsail_addqueuewriteindex, __hsail_casqueuewriteindex,
70 __hsail_stqueuereadindex, __hsail_stqueuewriteindex): Cast integral value
71 to uintptr_t first before casting to pointer.
72 * rt/workitems.c (__hsail_alloca_pop_frame): Cast memcpy first argument to
73 void * to avoid warning.
74
75 2017-01-27 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
76
77 * configure.tgt: Moved the white list of supported targets here
78 from configure.ac. Added i[3456789]86-*-linux* as a supported env
79 for the BRIG FE.
80 * README: Added a proper description of what libhsail-rt is.
81
82 2017-01-26 Jakub Jelinek <jakub@redhat.com>
83
84 Update copyright years.
85
86 2017-01-25 Thomas Schwinge <thomas@codesourcery.com>
87
88 * config.h.in: Remove stale file.
89
90 * configure.ac: Don't instantiate AC_CONFIG_MACRO_DIR.
91 * configure: Regenerate.
92
93 2017-01-25 Jakub Jelinek <jakub@redhat.com>
94
95 PR other/79046
96 * configure.ac: Add GCC_BASE_VER.
97 * Makefile.am (gcc_version): Use @get_gcc_base_ver@ instead of cat to
98 get version from BASE-VER file.
99 (ACLOCAL_AMFLAGS): Set to -I .. -I ../config .
100 * aclocal.m4: Regenerated.
101 * configure: Regenerated.
102 * Makefile.in: Regenerated.
103
104 2017-01-24 Pekka Jääskeläinen <pekka@parmance.com>
105 Martin Jambor <mjambor@suse.cz>
106
107 * Makefile.am: New file.
108 * target-config.h.in: Likewise.
109 * configure.ac: Likewise.
110 * configure: Likewise.
111 * config.h.in: Likewise.
112 * aclocal.m4: Likewise.
113 * README: Likewise.
114 * Makefile.in: Likewise.
115 * include/internal/fibers.h: Likewise.
116 * include/internal/phsa-queue-interface.h: Likewise.
117 * include/internal/phsa-rt.h: Likewise.
118 * include/internal/workitems.h: Likewise.
119 * rt/arithmetic.c: Likewise.
120 * rt/atomics.c: Likewise.
121 * rt/bitstring.c: Likewise.
122 * rt/fbarrier.c: Likewise.
123 * rt/fibers.c: Likewise.
124 * rt/fp16.c: Likewise.
125 * rt/misc.c: Likewise.
126 * rt/multimedia.c: Likewise.
127 * rt/queue.c: Likewise.
128 * rt/sat_arithmetic.c: Likewise.
129 * rt/segment.c: Likewise.
130 * rt/workitems.c: Likewise.
131 \f
132 Copyright (C) 2017-2019 Free Software Foundation, Inc.
133
134 Copying and distribution of this file, with or without modification,
135 are permitted in any medium without royalty provided the copyright
136 notice and this notice are preserved.