Fix gold testsuite failure with GCC 6.
[deliverable/binutils-gdb.git] / sim / aarch64 / ChangeLog
CommitLineData
fd7ed446
NC
12016-05-06 Nick Clifton <nickc@redhat.com>
2
3 * simulator.c (do_FMLA_by_element): New function.
4 (do_vec_op2): Call it.
5
2cdad34c
NC
62016-04-27 Nick Clifton <nickc@redhat.com>
7
8 * simulator.c: Add TRACE_DECODE statements to all emulation
9 functions.
10
7517e550
NC
112016-03-30 Nick Clifton <nickc@redhat.com>
12
13 * cpustate.c (aarch64_set_reg_s32): New function.
14 (aarch64_set_reg_u32): New function.
15 (aarch64_get_FP_half): Place half precision value into the correct
16 slot of the union.
17 (aarch64_set_FP_half): Likewise.
18 * cpustate.h: Add prototypes for aarch64_set_reg_s32 and
19 aarch64_set_reg_u32.
20 * memory.c (FETCH_FUNC): Cast the read value to the access type
21 before converting it to the return type. Rename to FETCH_FUNC64.
22 (FETCH_FUNC32): New macro. Duplicates FETCH_FUNC64 but for 32-bit
23 accesses. Use for 32-bit memory access functions.
24 * simulator.c (ldrsb_wb): Use sign extension not zero extension.
25 (ldrb_scale_ext, ldrsh32_abs, ldrsh32_wb): Likewise.
26 (ldrsh32_scale_ext, ldrsh_abs, ldrsh64_wb): Likewise.
27 (ldrsh_scale_ext, ldrsw_abs): Likewise.
28 (ldrh32_abs): Store 32 bit value not 64-bits.
29 (ldrh32_wb, ldrh32_scale_ext): Likewise.
30 (do_vec_MOV_immediate): Fix computation of val.
31 (do_vec_MVNI): Likewise.
32 (DO_VEC_WIDENING_MUL): New macro.
33 (do_vec_mull): Use new macro.
34 (do_vec_mul): Use new macro.
35 (do_vec_MLA): Read values before writing.
36 (do_vec_xtl): Likewise.
37 (do_vec_SSHL): Select correct shift value.
38 (do_vec_USHL): Likewise.
39 (do_scalar_UCVTF): New function.
40 (do_scalar_vec): Call new function.
41 (store_pair_u64): Treat reads of SP as reads of XZR.
42
ef0d8ffc
NC
432016-03-29 Nick Clifton <nickc@redhat.com>
44
45 * cpustate.c: Remove space after asterisk in function parameters.
46 * decode.h (greg): Delete unused function.
47 (vreg, shift, extension, scaling, writeback, condcode): Likewise.
48 * simulator.c: Use INSTR macro in more places.
49 (HALT_NYI): Use sim_io_eprintf in place of fprintf.
50 Remove extraneous whitespace.
51
5ab6d79e
NC
522016-03-23 Nick Clifton <nickc@redhat.com>
53
54 * cpustate.c (aarch64_get_FP_half): New function. Read a vector
55 register as a half precision floating point number.
56 (aarch64_set_FP_half): New function. Similar, but for setting
57 a half precision register.
58 (aarch64_get_thread_id): New function. Returns the value of the
59 CPU's TPIDR register.
60 (aarch64_get_FPCR): New function. Returns the value of the CPU's
61 floating point control register.
62 (aarch64_set_FPCR): New function. Set the value of the CPU's FPCR
63 register.
64 * cpustate.h: Add prototypes for new functions.
65 * sim-main.h (struct _sim_cpu): Add FPCR and tpidr fields.
66 * memory.c: Use unaligned core access functions for all memory
67 reads and writes.
68 * simulator.c (HALT_NYI): Generate an error message if tracing
69 will not tell the user why the simulator is halting.
70 (HALT_UNREACHABLE): Delete. Delete (unneeded) uses of the macro.
71 (INSTR): New time-saver macro.
72 (fldrb_abs): New function. Loads an 8-bit value using a scaled
73 offset.
74 (fldrh_abs): New function. Likewise for 16-bit values.
75 (do_vec_SSHL): Allow for negative shift values.
76 (do_vec_USHL): Likewise.
77 (do_vec_SHL): Correct computation of shift amount.
78 (do_vec_SSHR_USHR): Correct decision of signed vs unsigned
79 shifts and computation of shift value.
80 (clz): New function. Counts leading zero bits.
81 (do_vec_CLZ): New function. Implements CLZ (vector).
82 (do_vec_MOV_element): Call do_vec_CLZ.
83 (dexSimpleFPCondCompare): Implement.
84 (do_FCVT_half_to_single): New function. Implements one of the
85 FCVT operations.
86 (do_FCVT_half_to_double): New function. Likewise.
87 (do_FCVT_single_to_half): New function. Likewise.
88 (do_FCVT_double_to_half): New function. Likewise.
89 (dexSimpleFPDataProc1Source): Call new FCVT functions.
90 (do_scalar_SHL): Handle negative shifts.
91 (do_scalar_shift): Handle SSHR.
92 (do_scalar_USHL): New function.
93 (do_double_add): Simplify to just performing a double precision
94 add operation. Move remaining code into...
95 (do_scalar_vec): ... New function.
96 (dexLoadUnsignedImmediate): Call new fldrb_abs and fldrh_abs
97 functions.
98 (system_get): Add support for TPIDR, CTR, FPCR, FPSR and CPSR
99 registers.
100 (system_set): New function.
101 (do_MSR_immediate): New function. Stub for now.
102 (do_MSR_reg): New function. Likewise. Partially implements MSR
103 instruction.
104 (do_SYS): New function. Stub for now,
105 (dexSystem): Call new functions.
106
e101a78b
NC
1072016-03-18 Nick Clifton <nickc@redhat.com>
108
109 * cpustate.c: Remove spurious spaces from TRACE strings.
110 Print hex equivalents of floats and doubles.
111 Check element number against array size when accessing vector
112 registers.
4c0ca98e
NC
113 (GET_VEC_ELEMENT): Fix off by one error checking for an invalid
114 element index.
115 (SET_VEC_ELEMENT): Likewise.
87bba7a5 116 (GET_VEC_ELEMENT): And fix thinko using macro arguments.
4c0ca98e 117
e101a78b
NC
118 * memory.c: Trace memory reads when --trace-memory is enabled.
119 Remove float and double load and store functions.
120 * memory.h (aarch64_get_mem_float): Delete prototype.
121 (aarch64_get_mem_double): Likewise.
122 (aarch64_set_mem_float): Likewise.
123 (aarch64_set_mem_double): Likewise.
124 * simulator (IS_SET): Always return either 0 or 1.
125 (IS_CLEAR): Likewise.
126 (fldrs_pcrel): Load and store floats using 32-bit memory accesses
127 and doubles using 64-bit memory accesses.
128 (fldrd_pcrel, fldrs_wb, fldrs_abs, fldrs_scale_ext): Likewise.
129 (fldrd_wb, fldrd_abs, fsturs, fsturd, fldurs, fldurd): Likewise.
130 (fstrs_abs, fstrs_wb, fstrs_scale_ext, fstrd_abs): Likewise.
131 (fstrd_wb, fstrd_scale_ext, store_pair_float): Likewise.
132 (store_pair_double, load_pair_float, load_pair_double): Likewise.
133 (do_vec_MUL_by_element): New function.
134 (do_vec_op2): Call do_vec_MUL_by_element.
135 (do_scalar_NEG): New function.
136 (do_double_add): Call do_scalar_NEG.
137
57aa1742
NC
1382016-03-03 Nick Clifton <nickc@redhat.com>
139
140 * simulator.c (set_flags_for_sub32): Correct type of signbit.
141 (CondCompare): Swap interpretation of bit 30.
142 (DO_ADDP): Delete macro.
143 (do_vec_ADDP): Copy source registers before starting to update
144 destination register.
145 (do_vec_FADDP): Likewise.
146 (do_vec_load_store): Fix computation of sizeof_operation.
147 (rbit64): Fix type of constant.
148 (aarch64_step): When displaying insn value, display all 32 bits.
149
ce39bd38
MF
1502016-01-10 Mike Frysinger <vapier@gentoo.org>
151
152 * config.in, configure: Regenerate.
153
e19418e0
MF
1542016-01-10 Mike Frysinger <vapier@gentoo.org>
155
156 * configure: Regenerate.
157
16f7876d
MF
1582016-01-10 Mike Frysinger <vapier@gentoo.org>
159
160 * configure.ac (SIM_AC_OPTION_ENVIRONMENT): Delete call.
161 * configure: Regenerate.
162
99d8e879
MF
1632016-01-10 Mike Frysinger <vapier@gentoo.org>
164
165 * configure: Regenerate.
35656e95
MF
166
1672016-01-10 Mike Frysinger <vapier@gentoo.org>
168
169 * configure: Regenerate.
99d8e879 170
347fe5bb
MF
1712016-01-10 Mike Frysinger <vapier@gentoo.org>
172
173 * configure.ac (SIM_AC_OPTION_INLINE): Delete call.
174 * configure: Regenerate.
175
22be3fbe
MF
1762016-01-10 Mike Frysinger <vapier@gentoo.org>
177
178 * configure: Regenerate.
179
0dc73ef7
MF
1802016-01-10 Mike Frysinger <vapier@gentoo.org>
181
182 * configure: Regenerate.
183
936df756
MF
1842016-01-09 Mike Frysinger <vapier@gentoo.org>
185
186 * config.in, configure: Regenerate.
187
2e3d4f4d
MF
1882016-01-06 Mike Frysinger <vapier@gentoo.org>
189
190 * interp.c (sim_create_inferior): Mark argv and env const.
191 (sim_open): Mark argv const.
192
1a846c62
MF
1932016-01-05 Mike Frysinger <vapier@gentoo.org>
194
195 * interp.c: Delete dis-asm.h include.
196 (info, opbuf, op_printf, aarch64_print_insn, sim_dis_read): Delete.
197 (sim_create_inferior): Delete disassemble init logic.
198 (OPTION_DISAS, aarch64_option_handler, aarch64_options): Delete.
199 (sim_open): Delete sim_add_option_table call.
200 * memory.c (mem_error): Delete disas check.
201 * simulator.c: Delete dis-asm.h include.
202 (disas): Delete.
203 (HALT_UNALLOC): Replace disassembly logic with TRACE_DISASM.
204 (HALT_NYI): Likewise.
205 (handle_halt): Delete disas call.
206 (aarch64_step): Replace disas logic with TRACE_DISASM.
207 * simulator.h: Delete dis-asm.h include.
208 (aarch64_print_insn): Delete.
209
bc273e17
MF
2102016-01-04 Mike Frysinger <vapier@gentoo.org>
211
212 * simulator.c (MAX, MIN): Delete.
213 (do_vec_maxv): Change MAX to max and MIN to min.
214 (do_vec_fminmaxV): Likewise.
215
ac8eefeb
TG
2162016-01-04 Tristan Gingold <gingold@adacore.com>
217
218 * simulator.c: Remove syscall.h include.
219
9bbf6f91
MF
2202016-01-04 Mike Frysinger <vapier@gentoo.org>
221
222 * configure: Regenerate.
223
0cb8d851
MF
2242016-01-03 Mike Frysinger <vapier@gentoo.org>
225
226 * configure.ac (SIM_AC_OPTION_HOSTENDIAN): Delete.
227 * configure: Regenerate.
228
1ac72f06
MF
2292016-01-02 Mike Frysinger <vapier@gentoo.org>
230
231 * configure: Regenerate.
232
5d015275
MF
2332015-12-27 Mike Frysinger <vapier@gentoo.org>
234
235 * interp.c (sim_dis_read): Change private_data to application_data.
236 (sim_create_inferior): Likewise.
237
5e744ef8
MF
2382015-12-27 Mike Frysinger <vapier@gentoo.org>
239
240 * Makefile.in (SIM_OBJS): Delete sim-hload.o.
241
1b393626
MF
2422015-12-26 Mike Frysinger <vapier@gentoo.org>
243
244 * config.in, configure: Regenerate.
245
0e967299
MF
2462015-12-26 Mike Frysinger <vapier@gentoo.org>
247
248 * interp.c (sim_create_inferior): Update comment and argv check.
249
f66affe9
MF
2502015-12-14 Nick Clifton <nickc@redhat.com>
251
252 * simulator.c (system_get): New function. Provides read
253 access to the dczid system register.
254 (do_mrs): New function - implements the MRS instruction.
255 (dexSystem): Call do_mrs for the MRS instruction. Halt on
256 unimplemented system instructions.
257
2582015-11-24 Nick Clifton <nickc@redhat.com>
259
260 * configure.ac: New configure template.
261 * aclocal.m4: Generate.
262 * config.in: Generate.
263 * configure: Generate.
264 * cpustate.c: New file - functions for accessing AArch64 registers.
265 * cpustate.h: New header.
266 * decode.h: New header.
267 * interp.c: New file - interface between GDB and simulator.
268 * Makefile.in: New makefile template.
269 * memory.c: New file - functions for simulating aarch64 memory
270 accesses.
271 * memory.h: New header.
272 * sim-main.h: New header.
273 * simulator.c: New file - aarch64 simulator functions.
274 * simulator.h: New header.
This page took 0.06265 seconds and 4 git commands to generate.