diff options
author | Taylor Simpson <tsimpson@quicinc.com> | 2021-03-17 11:48:57 -0500 |
---|---|---|
committer | Taylor Simpson <tsimpson@quicinc.com> | 2021-11-03 16:01:26 -0500 |
commit | a1559537d183bf1f4e2cfef972610c8c9e1a6aa5 (patch) | |
tree | 9e4f7493e67621802ca4d0d1395f4ce7010f9ac5 /target/hexagon/internal.h | |
parent | 375bcf389f1e5f8c3bde70b3f8c847fdd73074c0 (diff) |
Hexagon HVX (target/hexagon) add Hexagon Vector eXtensions (HVX) to core
HVX is a set of wide vector instructions. Machine state includes
vector registers (VRegs)
vector predicate registers (QRegs)
temporary registers for intermediate values
store buffer (masked stores and scatter/gather)
Acked-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Diffstat (limited to 'target/hexagon/internal.h')
-rw-r--r-- | target/hexagon/internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/hexagon/internal.h b/target/hexagon/internal.h index 6b20affdfa..82ac3042ab 100644 --- a/target/hexagon/internal.h +++ b/target/hexagon/internal.h @@ -31,6 +31,9 @@ int hexagon_gdb_read_register(CPUState *cpu, GByteArray *buf, int reg); int hexagon_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg); + +void hexagon_debug_vreg(CPUHexagonState *env, int regnum); +void hexagon_debug_qreg(CPUHexagonState *env, int regnum); void hexagon_debug(CPUHexagonState *env); extern const char * const hexagon_regnames[TOTAL_PER_THREAD_REGS]; |