Re: [PATCH][AArch64] Fix insn types

2015-10-30 Thread Marcus Shawcroft
On 20 October 2015 at 17:14, Evandro Menezes wrote: > Kyrill, > > Indeed, the correct log would be: > > The type assigned to some insn definitions was not correct. > > gcc/ > * config/aarch64/aarch64.md > (*movhf_aarch64): Change the type of "mov %0.h[0], %1.h[0] to > "neon

Re: [PATCH][AArch64] Fix insn types

2015-10-28 Thread Evandro Menezes
Ping. -- Evandro Menezes On 10/20/2015 11:14 AM, Evandro Menezes wrote: Kyrill, Indeed, the correct log would be: The type assigned to some insn definitions was not correct. gcc/ * config/aarch64/aarch64.md (*movhf_aarch64): Change the type of "mov %0.h[0], %1.h[0] to

Re: [PATCH][AArch64] Fix insn types

2015-10-20 Thread Evandro Menezes
Kyrill, Indeed, the correct log would be: The type assigned to some insn definitions was not correct. gcc/ * config/aarch64/aarch64.md (*movhf_aarch64): Change the type of "mov %0.h[0], %1.h[0] to "neon_move". (*movtf_aarch64): Change the type of "fmov %s0, wzr

Re: [PATCH][AArch64] Fix insn types

2015-10-20 Thread Kyrill Tkachov
Hi Evandro, On 19/10/15 22:05, Evandro Menezes wrote: The type assigned to some insn definitions was seemingly not correct: * "movi %d0, %1" was of type "fmov" * "fmov %s0, wzr" was of type "fconstd" * "mov %0, {-1,1}" were of type "csel" This patch changes their types to: * "movi %d0, %1

[PATCH][AArch64] Fix insn types

2015-10-19 Thread Evandro Menezes
vi %d0, %1" to type "neon_move" * "fmov %s0, wzr" to type "f_mcr" * "mov %0, {-1,1}" to type "mov_imm" Please, commit if it's alright. Thank you, -- Evandro Menezes >From 7e7057bf65befca9ff24ab2401bc2ce84a48c23a Mon Sep 17 00:00:0