bi: Move bi_disasm definitions to their own header

Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29161>
This commit is contained in:
Mary Guillemard 2024-05-28 10:37:48 +02:00 committed by Marge Bot
parent 3622a1bb0d
commit 81f4e93f60
4 changed files with 59 additions and 19 deletions

View file

@ -0,0 +1,53 @@
/*
* Copyright (C) 2019 Connor Abbott <cwabbott0@gmail.com>
* Copyright (C) 2019 Lyude Paul <thatslyude@gmail.com>
* Copyright (C) 2019 Ryan Houdek <Sonicadvance1@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef __BI_DISASM_H
#define __BI_DISASM_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
struct bi_constants;
struct bifrost_regs;
void bi_disasm_fma(FILE *fp, unsigned bits, struct bifrost_regs *srcs,
struct bifrost_regs *next_regs, unsigned staging_register,
unsigned branch_offset, struct bi_constants *consts,
bool first);
void bi_disasm_add(FILE *fp, unsigned bits, struct bifrost_regs *srcs,
struct bifrost_regs *next_regs, unsigned staging_register,
unsigned branch_offset, struct bi_constants *consts,
bool first);
void bi_disasm_dest_fma(FILE *fp, struct bifrost_regs *next_regs, bool first);
void bi_disasm_dest_add(FILE *fp, struct bifrost_regs *next_regs, bool first);
void dump_src(FILE *fp, unsigned src, struct bifrost_regs srcs,
unsigned branch_offset, struct bi_constants *consts, bool isFMA);
#endif

View file

@ -32,9 +32,11 @@
#include "util/compiler.h"
#include "util/macros.h"
#include "bi_disasm.h"
#include "bi_print_common.h"
#include "bifrost.h"
#include "disassemble.h"
#include "../bifrost.h"
// return bits (high, lo]
static uint64_t

View file

@ -23,31 +23,14 @@
* SOFTWARE.
*/
#ifndef __BI_DISASM_H
#define __BI_DISASM_H
#ifndef __BI_DISASSEMBLE_H
#define __BI_DISASSEMBLE_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include "../bifrost.h"
void disassemble_bifrost(FILE *fp, const void *code, size_t size, bool verbose);
void bi_disasm_fma(FILE *fp, unsigned bits, struct bifrost_regs *srcs,
struct bifrost_regs *next_regs, unsigned staging_register,
unsigned branch_offset, struct bi_constants *consts,
bool first);
void bi_disasm_add(FILE *fp, unsigned bits, struct bifrost_regs *srcs,
struct bifrost_regs *next_regs, unsigned staging_register,
unsigned branch_offset, struct bi_constants *consts,
bool first);
void bi_disasm_dest_fma(FILE *fp, struct bifrost_regs *next_regs, bool first);
void bi_disasm_dest_add(FILE *fp, struct bifrost_regs *next_regs, bool first);
void dump_src(FILE *fp, unsigned src, struct bifrost_regs srcs,
unsigned branch_offset, struct bi_constants *consts, bool isFMA);
#endif

View file

@ -349,6 +349,8 @@ def disasm_op(name, op):
print('#include "util/macros.h"')
print('#include "bifrost/disassemble.h"')
print('#include "bifrost/bi_disasm.h"')
print('#include "bifrost.h"')
states = expand_states(instructions)
print('#define _BITS(bits, pos, width) (((bits) >> (pos)) & ((1 << (width)) - 1))')