mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-08-09 09:32:43 +00:00
ops_asmgen.c contains common aarch64 asm generation code that will be used by CPS backend and the JIT backend. The standalone tool with CPS-specific code is now ops_static.c. Sponsored-by: Sovereign Tech Fund Signed-off-by: Ramiro Polla <ramiro.polla@gmail.com>
87 lines
2.4 KiB
C
87 lines
2.4 KiB
C
/*
|
|
* Copyright (C) 2026 Ramiro Polla
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef SWSCALE_AARCH64_OPS_ASMGEN_H
|
|
#define SWSCALE_AARCH64_OPS_ASMGEN_H
|
|
|
|
#include "rasm.h"
|
|
|
|
/*********************************************************************/
|
|
typedef struct SwsAArch64OpRegs {
|
|
RasmOp sl[ 4]; /* input vector registers (low bank) */
|
|
RasmOp sh[ 4]; /* input vector registers (high bank) */
|
|
RasmOp dl[ 4]; /* output vector registers (low bank) */
|
|
RasmOp dh[ 4]; /* output vector registers (high bank) */
|
|
RasmOp vt[12]; /* temp vector registers */
|
|
RasmOp vk[ 4]; /* constant data (may be gprs) */
|
|
|
|
/* Op-specific registers. */
|
|
union {
|
|
RasmOp dither_ptr;
|
|
RasmOp linear_vcoeff[4][5];
|
|
};
|
|
} SwsAArch64OpRegs;
|
|
|
|
/*********************************************************************/
|
|
typedef struct SwsAArch64Context {
|
|
RasmContext *rctx;
|
|
|
|
/* SwsOpFunc arguments. */
|
|
RasmOp exec;
|
|
RasmOp impl;
|
|
RasmOp bx_start;
|
|
RasmOp y_start;
|
|
RasmOp bx_end;
|
|
RasmOp y_end;
|
|
|
|
/* Loop iterator variables. */
|
|
RasmOp bx;
|
|
RasmOp y;
|
|
|
|
/* Scratch registers. */
|
|
RasmOp tmp0;
|
|
RasmOp tmp1;
|
|
|
|
/* CPS-related variables. */
|
|
RasmOp op0_func;
|
|
RasmOp op1_impl;
|
|
RasmOp cont;
|
|
RasmNode *load_cont_node;
|
|
SwsAArch64OpRegs regs;
|
|
|
|
/* Read/Write data pointers and padding. */
|
|
RasmOp in[4];
|
|
RasmOp out[4];
|
|
RasmOp in_bump[4];
|
|
RasmOp out_bump[4];
|
|
|
|
/* Process function. */
|
|
RasmNode *setup;
|
|
RasmNode *loop;
|
|
|
|
/* Vector register dimensions. */
|
|
size_t el_size;
|
|
size_t el_count;
|
|
size_t vec_size;
|
|
bool use_vh;
|
|
} SwsAArch64Context;
|
|
|
|
#endif /* SWSCALE_AARCH64_OPS_ASMGEN_H */
|