Re: [FFmpeg-devel] [PATCH 6/7] avutil/riscv/asm: add generic push/pop helpers

2024-08-16 Thread Rémi Denis-Courmont
Le 15 août 2024 15:13:57 GMT+03:00, Niklas Haas a écrit : >On Tue, 13 Aug 2024 18:55:24 +0300 Rémi Denis-Courmont wrote: >> >> >> Le 13 août 2024 17:03:35 GMT+03:00, "J. Dekker" a écrit : >> >From: Niklas Haas >> > >> >Generic helper macros to push/pop multiple registers at once. Expands to

Re: [FFmpeg-devel] [PATCH 6/7] avutil/riscv/asm: add generic push/pop helpers

2024-08-16 Thread J. Dekker
Rémi Denis-Courmont writes: > Le 13 août 2024 17:03:35 GMT+03:00, "J. Dekker" a écrit : >>From: Niklas Haas >> >>Generic helper macros to push/pop multiple registers at once. Expands to >>a single `addi` plus a sequence of XLEN-sized stores/loads. >>--- >> libavutil/riscv/asm.S | 37 +++

Re: [FFmpeg-devel] [PATCH 6/7] avutil/riscv/asm: add generic push/pop helpers

2024-08-15 Thread Niklas Haas
On Tue, 13 Aug 2024 18:55:24 +0300 Rémi Denis-Courmont wrote: > > > Le 13 août 2024 17:03:35 GMT+03:00, "J. Dekker" a écrit : > >From: Niklas Haas > > > >Generic helper macros to push/pop multiple registers at once. Expands to > >a single `addi` plus a sequence of XLEN-sized stores/loads. > >-

Re: [FFmpeg-devel] [PATCH 6/7] avutil/riscv/asm: add generic push/pop helpers

2024-08-13 Thread Rémi Denis-Courmont
Le 13 août 2024 17:03:35 GMT+03:00, "J. Dekker" a écrit : >From: Niklas Haas > >Generic helper macros to push/pop multiple registers at once. Expands to >a single `addi` plus a sequence of XLEN-sized stores/loads. >--- > libavutil/riscv/asm.S | 37 + > 1 file

[FFmpeg-devel] [PATCH 6/7] avutil/riscv/asm: add generic push/pop helpers

2024-08-13 Thread J. Dekker
From: Niklas Haas Generic helper macros to push/pop multiple registers at once. Expands to a single `addi` plus a sequence of XLEN-sized stores/loads. --- libavutil/riscv/asm.S | 37 + 1 file changed, 37 insertions(+) diff --git a/libavutil/riscv/asm.S b/liba