17ec681f3Smrg/* 27ec681f3Smrg * Copyright (C) 2019 Connor Abbott <cwabbott0@gmail.com> 37ec681f3Smrg * Copyright (C) 2019 Lyude Paul <thatslyude@gmail.com> 47ec681f3Smrg * Copyright (C) 2019 Ryan Houdek <Sonicadvance1@gmail.com> 57ec681f3Smrg * 67ec681f3Smrg * Permission is hereby granted, free of charge, to any person obtaining a 77ec681f3Smrg * copy of this software and associated documentation files (the "Software"), 87ec681f3Smrg * to deal in the Software without restriction, including without limitation 97ec681f3Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 107ec681f3Smrg * and/or sell copies of the Software, and to permit persons to whom the 117ec681f3Smrg * Software is furnished to do so, subject to the following conditions: 127ec681f3Smrg * 137ec681f3Smrg * The above copyright notice and this permission notice (including the next 147ec681f3Smrg * paragraph) shall be included in all copies or substantial portions of the 157ec681f3Smrg * Software. 167ec681f3Smrg * 177ec681f3Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 187ec681f3Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 197ec681f3Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 207ec681f3Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 217ec681f3Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 227ec681f3Smrg * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 237ec681f3Smrg * SOFTWARE. 247ec681f3Smrg */ 257ec681f3Smrg 267ec681f3Smrg#ifndef __BI_DISASM_H 277ec681f3Smrg#define __BI_DISASM_H 287ec681f3Smrg 297ec681f3Smrg#include <stdbool.h> 307ec681f3Smrg#include <stddef.h> 317ec681f3Smrg#include <stdint.h> 327ec681f3Smrg#include <stdio.h> 337ec681f3Smrg#include "bifrost.h" 347ec681f3Smrg 357ec681f3Smrgvoid disassemble_bifrost(FILE *fp, uint8_t *code, size_t size, bool verbose); 367ec681f3Smrg 377ec681f3Smrgvoid 387ec681f3Smrgbi_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); 397ec681f3Smrg 407ec681f3Smrgvoid 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); 417ec681f3Smrg 427ec681f3Smrgvoid bi_disasm_dest_fma(FILE *fp, struct bifrost_regs *next_regs, bool first); 437ec681f3Smrgvoid bi_disasm_dest_add(FILE *fp, struct bifrost_regs *next_regs, bool first); 447ec681f3Smrg 457ec681f3Smrgvoid dump_src(FILE *fp, unsigned src, struct bifrost_regs srcs, unsigned branch_offset, struct bi_constants *consts, bool isFMA); 467ec681f3Smrg 477ec681f3Smrg#endif 48