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