Remove target/riscv/asm.h
The file asm.h is only used by riscv-011.c. Remove the whole asm.h file and inline the two functions into riscv-011.c which is the only place of use. Change-Id: Ifa4b2b87ab9f3f50c78a75361003ce478bfd9d5f Signed-off-by: Jan Matyas <jan.matyas@codasip.com>
This commit is contained in:
parent
22108977c0
commit
c1dfb0d50e
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
noinst_LTLIBRARIES += %D%/libriscv.la
|
noinst_LTLIBRARIES += %D%/libriscv.la
|
||||||
%C%_libriscv_la_SOURCES = \
|
%C%_libriscv_la_SOURCES = \
|
||||||
%D%/asm.h \
|
|
||||||
%D%/batch.h \
|
%D%/batch.h \
|
||||||
%D%/debug_defines.h \
|
%D%/debug_defines.h \
|
||||||
%D%/debug_reg_printer.h \
|
%D%/debug_reg_printer.h \
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
||||||
|
|
||||||
#ifndef OPENOCD_TARGET_RISCV_ASM_H
|
|
||||||
#define OPENOCD_TARGET_RISCV_ASM_H
|
|
||||||
|
|
||||||
#include "riscv.h"
|
|
||||||
|
|
||||||
/*** Version-independent functions that we don't want in the main address space. ***/
|
|
||||||
|
|
||||||
static uint32_t load(const struct target *target, unsigned int rd,
|
|
||||||
unsigned int base, uint16_t offset) __attribute__ ((unused));
|
|
||||||
static uint32_t load(const struct target *target, unsigned int rd,
|
|
||||||
unsigned int base, uint16_t offset)
|
|
||||||
{
|
|
||||||
switch (riscv_xlen(target)) {
|
|
||||||
case 32:
|
|
||||||
return lw(rd, base, offset);
|
|
||||||
case 64:
|
|
||||||
return ld(rd, base, offset);
|
|
||||||
}
|
|
||||||
assert(0);
|
|
||||||
return 0; /* Silence -Werror=return-type */
|
|
||||||
}
|
|
||||||
|
|
||||||
static uint32_t store(const struct target *target, unsigned int src,
|
|
||||||
unsigned int base, uint16_t offset) __attribute__ ((unused));
|
|
||||||
static uint32_t store(const struct target *target, unsigned int src,
|
|
||||||
unsigned int base, uint16_t offset)
|
|
||||||
{
|
|
||||||
switch (riscv_xlen(target)) {
|
|
||||||
case 32:
|
|
||||||
return sw(src, base, offset);
|
|
||||||
case 64:
|
|
||||||
return sd(src, base, offset);
|
|
||||||
}
|
|
||||||
assert(0);
|
|
||||||
return 0; /* Silence -Werror=return-type */
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* OPENOCD_TARGET_RISCV_ASM_H */
|
|
|
@ -10,7 +10,6 @@
|
||||||
#include "program.h"
|
#include "program.h"
|
||||||
#include "helper/log.h"
|
#include "helper/log.h"
|
||||||
|
|
||||||
#include "asm.h"
|
|
||||||
#include "debug_defines.h"
|
#include "debug_defines.h"
|
||||||
#include "encoding.h"
|
#include "encoding.h"
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
#include "riscv.h"
|
#include "riscv.h"
|
||||||
#include "riscv_reg.h"
|
#include "riscv_reg.h"
|
||||||
#include "riscv-011_reg.h"
|
#include "riscv-011_reg.h"
|
||||||
#include "asm.h"
|
|
||||||
#include "gdb_regs.h"
|
#include "gdb_regs.h"
|
||||||
#include "field_helpers.h"
|
#include "field_helpers.h"
|
||||||
|
|
||||||
|
@ -251,6 +250,32 @@ static unsigned int slot_offset(const struct target *target, slot_t slot)
|
||||||
return 0; /* Silence -Werror=return-type */
|
return 0; /* Silence -Werror=return-type */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static uint32_t load(const struct target *target, unsigned int rd,
|
||||||
|
unsigned int base, uint16_t offset)
|
||||||
|
{
|
||||||
|
switch (riscv_xlen(target)) {
|
||||||
|
case 32:
|
||||||
|
return lw(rd, base, offset);
|
||||||
|
case 64:
|
||||||
|
return ld(rd, base, offset);
|
||||||
|
}
|
||||||
|
assert(0);
|
||||||
|
return 0; /* Silence -Werror=return-type */
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint32_t store(const struct target *target, unsigned int src,
|
||||||
|
unsigned int base, uint16_t offset)
|
||||||
|
{
|
||||||
|
switch (riscv_xlen(target)) {
|
||||||
|
case 32:
|
||||||
|
return sw(src, base, offset);
|
||||||
|
case 64:
|
||||||
|
return sd(src, base, offset);
|
||||||
|
}
|
||||||
|
assert(0);
|
||||||
|
return 0; /* Silence -Werror=return-type */
|
||||||
|
}
|
||||||
|
|
||||||
static uint32_t load_slot(const struct target *target, unsigned int dest,
|
static uint32_t load_slot(const struct target *target, unsigned int dest,
|
||||||
slot_t slot)
|
slot_t slot)
|
||||||
{
|
{
|
||||||
|
|
|
@ -31,7 +31,6 @@
|
||||||
#include "debug_defines.h"
|
#include "debug_defines.h"
|
||||||
#include "rtos/rtos.h"
|
#include "rtos/rtos.h"
|
||||||
#include "program.h"
|
#include "program.h"
|
||||||
#include "asm.h"
|
|
||||||
#include "batch.h"
|
#include "batch.h"
|
||||||
#include "debug_reg_printer.h"
|
#include "debug_reg_printer.h"
|
||||||
#include "field_helpers.h"
|
#include "field_helpers.h"
|
||||||
|
|
Loading…
Reference in New Issue