mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
isaspec: Move isa_decode(..) declaration
The implementation of isa_decode(..) is already part of isaspec. So lets move the function declaration and some related structs to a src/isaspec. Also make the header C++ safe. Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> Reviewed-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18403>
This commit is contained in:
parent
c0b891ecca
commit
912d0383b4
2 changed files with 93 additions and 57 deletions
92
src/compiler/isaspec/isaspec.h
Normal file
92
src/compiler/isaspec/isaspec.h
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
/*
|
||||
* Copyright © 2020 Google, Inc.
|
||||
*
|
||||
* 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 _ISASPEC_H_
|
||||
#define _ISASPEC_H_
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
struct isa_decode_value {
|
||||
/** for {NAME} */
|
||||
const char *str;
|
||||
/** for all other fields */
|
||||
uint64_t num;
|
||||
};
|
||||
|
||||
struct isa_decode_hook {
|
||||
const char *fieldname;
|
||||
void (*cb)(void *data, struct isa_decode_value *val);
|
||||
};
|
||||
|
||||
struct isa_decode_options {
|
||||
uint32_t gpu_id;
|
||||
|
||||
/** show errors detected in decoding, like unexpected dontcare bits */
|
||||
bool show_errors;
|
||||
|
||||
/**
|
||||
* If non-zero, maximum # of instructions that are unmatched before
|
||||
* bailing, ie. to trigger stopping if we start trying to decode
|
||||
* random garbage.
|
||||
*/
|
||||
unsigned max_errors;
|
||||
|
||||
/** Generate branch target labels */
|
||||
bool branch_labels;
|
||||
|
||||
/**
|
||||
* Flag which can be set, for ex, but decode hook to trigger end of
|
||||
* decoding
|
||||
*/
|
||||
bool stop;
|
||||
|
||||
/**
|
||||
* Data passed back to decode hooks
|
||||
*/
|
||||
void *cbdata;
|
||||
|
||||
/**
|
||||
* Callback for field decode
|
||||
*/
|
||||
void (*field_cb)(void *data, const char *field_name, struct isa_decode_value *val);
|
||||
|
||||
/**
|
||||
* Callback prior to instruction decode
|
||||
*/
|
||||
void (*instr_cb)(void *data, unsigned n, void *instr);
|
||||
};
|
||||
|
||||
void isa_decode(void *bin, int sz, FILE *out, const struct isa_decode_options *options);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _ISASPEC_H_ */
|
||||
|
|
@ -24,63 +24,7 @@
|
|||
#ifndef _ISA_H_
|
||||
#define _ISA_H_
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
struct isa_decode_value {
|
||||
/** for {NAME} */
|
||||
const char *str;
|
||||
/** for all other fields */
|
||||
uint64_t num;
|
||||
};
|
||||
|
||||
struct isa_decode_hook {
|
||||
const char *fieldname;
|
||||
void (*cb)(void *data, struct isa_decode_value *val);
|
||||
};
|
||||
|
||||
struct isa_decode_options {
|
||||
uint32_t gpu_id;
|
||||
|
||||
/** show errors detected in decoding, like unexpected dontcare bits */
|
||||
bool show_errors;
|
||||
|
||||
/**
|
||||
* If non-zero, maximum # of instructions that are unmatched before
|
||||
* bailing, ie. to trigger stopping if we start trying to decode
|
||||
* random garbage.
|
||||
*/
|
||||
unsigned max_errors;
|
||||
|
||||
/** Generate branch target labels */
|
||||
bool branch_labels;
|
||||
|
||||
/**
|
||||
* Flag which can be set, for ex, but decode hook to trigger end of
|
||||
* decoding
|
||||
*/
|
||||
bool stop;
|
||||
|
||||
/**
|
||||
* Data passed back to decode hooks
|
||||
*/
|
||||
void *cbdata;
|
||||
|
||||
/**
|
||||
* Callback for field decode
|
||||
*/
|
||||
void (*field_cb)(void *data, const char *field_name, struct isa_decode_value *val);
|
||||
|
||||
/**
|
||||
* Callback prior to instruction decode
|
||||
*/
|
||||
void (*instr_cb)(void *data, unsigned n, void *instr);
|
||||
};
|
||||
|
||||
void isa_decode(void *bin, int sz, FILE *out, const struct isa_decode_options *options);
|
||||
|
||||
#include "compiler/isaspec/isaspec.h"
|
||||
|
||||
struct ir3_shader_variant;
|
||||
void * isa_assemble(struct ir3_shader_variant *v);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue