1 Star 0 Fork 0

RISCV-MCU/qemu

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
update-mips-syscall-args.sh 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
URL=https://raw.githubusercontent.com/strace/strace/master/src
FILES="sysent.h sysent_shorthand_defs.h linux/mips/syscallent-compat.h \
linux/mips/syscallent-o32.h linux/32/syscallent-common-32.h \
linux/generic/syscallent-common.h"
output="$1"
if [ "$output" = "" ] ; then
output="$PWD"
fi
INC=linux-user/mips/syscall-args-o32.c.inc
TMP=$(mktemp -d)
cd $TMP
for file in $FILES; do
curl --create-dirs $URL/$file -o $TMP/$file
done
> linux/generic/subcallent.h
> linux/32/subcallent.h
cat > gen_mips_o32.c <<EOF
#include <stdio.h>
#define LINUX_MIPSO32
#define MAX_ARGS 7
#include "sysent.h"
#include "sysent_shorthand_defs.h"
#define SEN(syscall_name) 0,0
const struct_sysent sysent0[] = {
#include "syscallent-o32.h"
};
int main(void)
{
int i;
for (i = 4000; i < sizeof(sysent0) / sizeof(struct_sysent); i++) {
if (sysent0[i].sys_name == NULL) {
printf(" [% 4d] = MIPS_SYSCALL_NUMBER_UNUSED,\n", i - 4000);
} else {
printf(" [% 4d] = %d, /* %s */\n", i - 4000,
sysent0[i].nargs, sysent0[i].sys_name);
}
}
return 0;
}
EOF
cc -o gen_mips_o32 -I linux/mips -I linux/generic gen_mips_o32.c && ./gen_mips_o32 > "$output/$INC"
rm -fr "$TMP"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/riscv-mcu/qemu.git
git@gitee.com:riscv-mcu/qemu.git
riscv-mcu
qemu
qemu
master

搜索帮助