From 5fee5aad388867c99865d62e7f0871cd063d8904 Mon Sep 17 00:00:00 2001 From: xinyangli Date: Sat, 9 Nov 2024 10:56:27 +0800 Subject: [PATCH] feat: make compatible with openperf --- Makefile | 50 +- am/include/amdev.h | 1 + am/include/arch/native.h | 19 - am/include/arch/riscv.h | 18 +- am/src/loongarch/nemu/cte.c | 2 +- am/src/native/cte.c | 44 +- am/src/native/ioe/audio.c | 2 +- am/src/native/ioe/gpu.c | 21 +- am/src/native/ioe/input.c | 2 +- am/src/native/platform.c | 2 - am/src/native/platform.h | 16 - am/src/native/trap.S | 19 - am/src/native/vme.c | 4 +- am/src/platform/dummy/audio.c | 12 + am/src/platform/dummy/input.c | 7 + am/src/platform/dummy/trm.c | 4 +- am/src/platform/dummy/video.c | 16 + am/src/platform/nemu/include/nemu.h | 3 +- am/src/platform/nemu/ioe/audio.c | 33 +- am/src/platform/nemu/ioe/gpu.c | 44 +- am/src/platform/nemu/ioe/input.c | 7 +- am/src/platform/nemu/ioe/timer.c | 9 +- am/src/platform/nemu/trm.c | 7 +- am/src/riscv/nemu/cte.c | 32 +- am/src/riscv/nemu/start.S | 4 +- am/src/riscv/nemu/trap.S | 4 +- am/src/riscv/npc/cte.c | 19 +- am/src/riscv/npc/libgcc/div.S | 12 +- am/src/riscv/npc/start.S | 2 +- am/src/riscv/npc/timer.c | 17 +- am/src/riscv/npc/trap.S | 1 + am/src/riscv/npc/trm.c | 13 +- am/src/riscv/nutshell/common/ioe.c | 22 + am/src/riscv/nutshell/common/mainargs.S | 4 + am/src/riscv/nutshell/common/timer.c | 30 + am/src/riscv/nutshell/common/uartlite.c | 28 + am/src/riscv/nutshell/include/nutshell.h | 12 + .../riscv/nutshell/isa/riscv/boot/loader64.ld | 7 + am/src/riscv/nutshell/isa/riscv/boot/start.S | 8 + am/src/riscv/nutshell/isa/riscv/trm.c | 38 + am/src/riscv/nutshell/ldscript/section.ld | 33 + am/src/riscv/riscv.h | 23 +- am/src/riscv/ysyxsoc/cte.c | 67 + am/src/riscv/ysyxsoc/input.c | 6 + am/src/riscv/ysyxsoc/ioe.c | 34 + am/src/riscv/ysyxsoc/libgcc/ashldi3.c | 27 + am/src/riscv/ysyxsoc/libgcc/div.S | 150 ++ am/src/riscv/ysyxsoc/libgcc/libgcc2.h | 543 +++++ am/src/riscv/ysyxsoc/libgcc/longlong.h | 1774 +++++++++++++++++ am/src/riscv/ysyxsoc/libgcc/muldi3.S | 48 + am/src/riscv/ysyxsoc/libgcc/multi3.c | 86 + am/src/riscv/ysyxsoc/libgcc/riscv-asm.h | 41 + am/src/riscv/ysyxsoc/libgcc/unused.c | 5 + am/src/riscv/ysyxsoc/mpe.c | 17 + am/src/riscv/ysyxsoc/start.S | 8 + am/src/riscv/ysyxsoc/timer.c | 28 + am/src/riscv/ysyxsoc/trap.S | 67 + am/src/riscv/ysyxsoc/trm.c | 76 + am/src/riscv/ysyxsoc/vme.c | 18 + am/src/x86/qemu/boot/main.c | 20 +- klib/include/klib.h | 64 +- klib/src/stdio.c | 124 +- klib/src/stdlib.c | 18 +- klib/src/string.c | 140 +- scripts/isa/riscv.mk | 4 +- scripts/isa/riscv64.mk | 7 + scripts/isa/x86.mk | 1 - scripts/isa/x86_64.mk | 1 - scripts/linker-soc.ld | 41 + scripts/linker.ld | 2 +- scripts/native.mk | 13 +- scripts/platform/nemu.mk | 25 +- scripts/platform/npc.mk | 25 +- scripts/platform/qemu.mk | 2 +- scripts/platform/ysyxsoc.mk | 31 + scripts/riscv32-nemu.mk | 4 +- scripts/riscv32e-ysyxsoc.mk | 10 + scripts/riscv64-nutshell.mk | 35 + scripts/spike.mk | 4 +- 79 files changed, 3943 insertions(+), 274 deletions(-) create mode 100644 am/src/platform/dummy/audio.c create mode 100644 am/src/platform/dummy/input.c create mode 100644 am/src/platform/dummy/video.c create mode 100644 am/src/riscv/nutshell/common/ioe.c create mode 100644 am/src/riscv/nutshell/common/mainargs.S create mode 100644 am/src/riscv/nutshell/common/timer.c create mode 100644 am/src/riscv/nutshell/common/uartlite.c create mode 100644 am/src/riscv/nutshell/include/nutshell.h create mode 100644 am/src/riscv/nutshell/isa/riscv/boot/loader64.ld create mode 100644 am/src/riscv/nutshell/isa/riscv/boot/start.S create mode 100644 am/src/riscv/nutshell/isa/riscv/trm.c create mode 100644 am/src/riscv/nutshell/ldscript/section.ld create mode 100644 am/src/riscv/ysyxsoc/cte.c create mode 100644 am/src/riscv/ysyxsoc/input.c create mode 100644 am/src/riscv/ysyxsoc/ioe.c create mode 100644 am/src/riscv/ysyxsoc/libgcc/ashldi3.c create mode 100644 am/src/riscv/ysyxsoc/libgcc/div.S create mode 100644 am/src/riscv/ysyxsoc/libgcc/libgcc2.h create mode 100644 am/src/riscv/ysyxsoc/libgcc/longlong.h create mode 100644 am/src/riscv/ysyxsoc/libgcc/muldi3.S create mode 100644 am/src/riscv/ysyxsoc/libgcc/multi3.c create mode 100644 am/src/riscv/ysyxsoc/libgcc/riscv-asm.h create mode 100644 am/src/riscv/ysyxsoc/libgcc/unused.c create mode 100644 am/src/riscv/ysyxsoc/mpe.c create mode 100644 am/src/riscv/ysyxsoc/start.S create mode 100644 am/src/riscv/ysyxsoc/timer.c create mode 100644 am/src/riscv/ysyxsoc/trap.S create mode 100644 am/src/riscv/ysyxsoc/trm.c create mode 100644 am/src/riscv/ysyxsoc/vme.c create mode 100644 scripts/isa/riscv64.mk create mode 100644 scripts/linker-soc.ld create mode 100644 scripts/platform/ysyxsoc.mk create mode 100644 scripts/riscv32e-ysyxsoc.mk create mode 100644 scripts/riscv64-nutshell.mk diff --git a/Makefile b/Makefile index 6c512e4..1d55214 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,8 @@ ### *Get a more readable version of this Makefile* by `make html` (requires python-markdown) html: - cat Makefile | sed 's/^\([^#]\)/ \1/g' | markdown_py > Makefile.html + # cat Makefile | sed 's/^\([^#]\)/ \1/g' | markdown_py > Makefile.html + cat Makefile | markdown_py > Makefile.html .PHONY: html ## 1. Basic Setup and Checks @@ -66,21 +67,21 @@ LINKAGE = $(OBJS) \ ## 3. General Compilation Flags ### (Cross) compilers, e.g., mips-linux-gnu-g++ -AS = $(CROSS_COMPILE)gcc -CC = $(CROSS_COMPILE)gcc -CXX = $(CROSS_COMPILE)g++ -LD = $(CROSS_COMPILE)ld -AR = $(CROSS_COMPILE)ar -OBJDUMP = $(CROSS_COMPILE)objdump -OBJCOPY = $(CROSS_COMPILE)objcopy -READELF = $(CROSS_COMPILE)readelf +CC ?= $(CROSS_COMPILE)gcc +AS := $(CC) +CXX ?= $(CROSS_COMPILE)g++ +LD ?= $(CROSS_COMPILE)ld +AR ?= $(CROSS_COMPILE)ar +OBJDUMP ?= $(CROSS_COMPILE)objdump +OBJCOPY ?= $(CROSS_COMPILE)objcopy +READELF ?= $(CROSS_COMPILE)readelf ### Compilation flags INC_PATH += $(WORK_DIR)/include $(addsuffix /include/, $(addprefix $(AM_HOME)/, $(LIBS))) INCFLAGS += $(addprefix -I, $(INC_PATH)) ARCH_H := arch/$(ARCH).h -CFLAGS += -O2 -MMD -Wall -Werror $(INCFLAGS) \ +CFLAGS += -lm -g -O3 -MMD -Wall $(INCFLAGS) \ -D__ISA__=\"$(ISA)\" -D__ISA_$(shell echo $(ISA) | tr a-z A-Z)__ \ -D__ARCH__=$(ARCH) -D__ARCH_$(shell echo $(ARCH) | tr a-z A-Z | tr - _) \ -D__PLATFORM__=$(PLATFORM) -D__PLATFORM_$(shell echo $(PLATFORM) | tr a-z A-Z | tr - _) \ @@ -88,14 +89,20 @@ CFLAGS += -O2 -MMD -Wall -Werror $(INCFLAGS) \ -fno-asynchronous-unwind-tables -fno-builtin -fno-stack-protector \ -Wno-main -U_FORTIFY_SOURCE -fvisibility=hidden CXXFLAGS += $(CFLAGS) -ffreestanding -fno-rtti -fno-exceptions -ASFLAGS += -MMD $(INCFLAGS) -LDFLAGS += -z noexecstack $(addprefix -T, $(LDSCRIPTS)) +ASFLAGS += $(INCFLAGS) +LDFLAGS += -z noexecstack ## 4. Arch-Specific Configurations ### Paste in arch-specific configurations (e.g., from `scripts/x86_64-qemu.mk`) -include $(AM_HOME)/scripts/$(ARCH).mk +### Fall back to native gcc/binutils if there is no cross compiler +ifeq ($(wildcard $(shell which $(CC))),) + $(info # $(CC) not found; fall back to default gcc and binutils) + CROSS_COMPILE := riscv64-unknown-linux-gnu- +endif + ## 5. Compilation Rules ### Rule (compile): a single `.c` -> `.o` (gcc) @@ -123,19 +130,14 @@ $(LIBS): %: @$(MAKE) -s -C $(AM_HOME)/$* archive ### Rule (link): objects (`*.o`) and libraries (`*.a`) -> `IMAGE.elf`, the final ELF binary to be packed into image (ld) -$(IMAGE).elf: $(LINKAGE) $(LDSCRIPTS) - @echo \# Creating image [$(ARCH)] +$(IMAGE).elf: $(OBJS) $(LIBS) @echo + LD "->" $(IMAGE_REL).elf -ifneq ($(filter $(ARCH),native),) - @$(CXX) -o $@ -Wl,--whole-archive $(LINKAGE) -Wl,-no-whole-archive $(LDFLAGS_CXX) -else - @$(LD) $(LDFLAGS) -o $@ --start-group $(LINKAGE) --end-group -endif + @$(LD) $(LDFLAGS) -o $(IMAGE).elf --start-group $(LINKAGE) --end-group ### Rule (archive): objects (`*.o`) -> `ARCHIVE.a` (ar) $(ARCHIVE): $(OBJS) @echo + AR "->" $(shell realpath $@ --relative-to .) - @$(AR) rcs $@ $^ + @$(AR) rcs $(ARCHIVE) $(OBJS) ### Rule (`#include` dependencies): paste in `.d` files generated by gcc on `-MMD` -include $(addprefix $(DST_DIR)/, $(addsuffix .d, $(basename $(SRCS)))) @@ -145,8 +147,8 @@ $(ARCHIVE): $(OBJS) ### Build order control image: image-dep archive: $(ARCHIVE) -image-dep: $(LIBS) $(IMAGE).elf -.NOTPARALLEL: image-dep +image-dep: $(OBJS) $(LIBS) + @echo \# Creating image [$(ARCH)] .PHONY: image image-dep archive run $(LIBS) ### Clean a single project (remove `build/`) @@ -158,5 +160,5 @@ clean: CLEAN_ALL = $(dir $(shell find . -mindepth 2 -name Makefile)) clean-all: $(CLEAN_ALL) clean $(CLEAN_ALL): - -@$(MAKE) -s -C $@ clean -.PHONY: clean-all $(CLEAN_ALL) + -@$(MAKE) -s -C $@ cleaear + diff --git a/am/include/amdev.h b/am/include/amdev.h index e1cdc48..6aa41c1 100644 --- a/am/include/amdev.h +++ b/am/include/amdev.h @@ -2,6 +2,7 @@ #define __AMDEV_H__ // **MAY SUBJECT TO CHANGE IN THE FUTURE** +#include #define AM_DEVREG(id, reg, perm, ...) \ enum { AM_##reg = (id) }; \ diff --git a/am/include/arch/native.h b/am/include/arch/native.h index 1bcc9ed..8b94efd 100644 --- a/am/include/arch/native.h +++ b/am/include/arch/native.h @@ -11,34 +11,15 @@ struct Context { uintptr_t ksp; void *vm_head; ucontext_t uc; -#ifdef __x86_64__ // skip the red zone of the stack frame, see the amd64 ABI manual for details uint8_t redzone[128]; -#endif }; -#ifdef __x86_64__ #define GPR1 uc.uc_mcontext.gregs[REG_RDI] #define GPR2 uc.uc_mcontext.gregs[REG_RSI] #define GPR3 uc.uc_mcontext.gregs[REG_RDX] #define GPR4 uc.uc_mcontext.gregs[REG_RCX] #define GPRx uc.uc_mcontext.gregs[REG_RAX] -#elif defined(__aarch64__) -#define GPR1 uc.uc_mcontext.regs[0] -#define GPR2 uc.uc_mcontext.regs[1] -#define GPR3 uc.uc_mcontext.regs[2] -#define GPR4 uc.uc_mcontext.regs[3] -#define GPRx uc.uc_mcontext.regs[0] -#elif defined(__riscv) -// FIXME: may be wrong -#define GPR1 uc.uc_mcontext.__gregs[REG_A0] -#define GPR2 uc.uc_mcontext.__gregs[REG_A0+1] -#define GPR3 uc.uc_mcontext.__gregs[REG_A0+2] -#define GPR4 uc.uc_mcontext.__gregs[REG_A0+3] -#define GPRx uc.uc_mcontext.__gregs[REG_A0+4] -#else -#error Unsupported architecture -#endif #undef __USE_GNU diff --git a/am/include/arch/riscv.h b/am/include/arch/riscv.h index 9709050..d6c3d9e 100644 --- a/am/include/arch/riscv.h +++ b/am/include/arch/riscv.h @@ -1,6 +1,7 @@ #ifndef ARCH_H__ #define ARCH_H__ +#include #ifdef __riscv_e #define NR_REGS 16 #else @@ -8,9 +9,12 @@ #endif struct Context { - // TODO: fix the order of these members to match trap.S - uintptr_t mepc, mcause, gpr[NR_REGS], mstatus; - void *pdir; +//The order of these members should match trap.S, pay attention to pdir. + uintptr_t gpr[NR_REGS]; + uintptr_t mcause; + uintptr_t mstatus; + uintptr_t mepc; + void *pdir; }; #ifdef __riscv_e @@ -19,9 +23,9 @@ struct Context { #define GPR1 gpr[17] // a7 #endif -#define GPR2 gpr[0] -#define GPR3 gpr[0] -#define GPR4 gpr[0] -#define GPRx gpr[0] +#define GPR2 gpr[10] //a0 +#define GPR3 gpr[11] //a1 +#define GPR4 gpr[12] //a2 +#define GPRx gpr[10] //a0, return value #endif diff --git a/am/src/loongarch/nemu/cte.c b/am/src/loongarch/nemu/cte.c index 3472245..ca82de9 100644 --- a/am/src/loongarch/nemu/cte.c +++ b/am/src/loongarch/nemu/cte.c @@ -8,7 +8,7 @@ Context* __am_irq_handle(Context *c) { if (user_handler) { Event ev = {0}; uintptr_t ecode = 0; - switch (ecode) { + switch (ccode) { default: ev.event = EVENT_ERROR; break; } diff --git a/am/src/native/cte.c b/am/src/native/cte.c index 47e1545..58ef781 100644 --- a/am/src/native/cte.c +++ b/am/src/native/cte.c @@ -20,8 +20,9 @@ static void irq_handle(Context *c) { c->ksp = thiscpu->ksp; if (thiscpu->ev.event == EVENT_ERROR) { - printf("Unhandle signal '%s' at pc = %p, badaddr = %p, cause = 0x%x\n", - thiscpu->ev.msg, AM_REG_PC(&c->uc), thiscpu->ev.ref, thiscpu->ev.cause); + uintptr_t rip = c->uc.uc_mcontext.gregs[REG_RIP]; + printf("Unhandle signal '%s' at rip = %p, badaddr = %p, cause = 0x%x\n", + thiscpu->ev.msg, rip, thiscpu->ev.ref, thiscpu->ev.cause); assert(0); } c = user_handler(thiscpu->ev, c); @@ -36,14 +37,13 @@ static void irq_handle(Context *c) { } static void setup_stack(uintptr_t event, ucontext_t *uc) { - void *pc = (void *)AM_REG_PC(uc); + void *rip = (void *)uc->uc_mcontext.gregs[REG_RIP]; extern uint8_t _start, _etext; - int trap_from_user = __am_in_userspace(pc); - int signal_safe = IN_RANGE(pc, RANGE(&_start, &_etext)) || trap_from_user || + int trap_from_user = __am_in_userspace(rip); + int signal_safe = IN_RANGE(rip, RANGE(&_start, &_etext)) || trap_from_user || // Hack here: "+13" points to the instruction after syscall. This is the // instruction which will trigger the pending signal if interrupt is enabled. - // FIXME: should change 13 for aarch and riscv - (pc == (void *)&sigprocmask + 13); + (rip == (void *)&sigprocmask + 13); if (((event == EVENT_IRQ_IODEV) || (event == EVENT_IRQ_TIMER)) && !signal_safe) { // Shared libraries contain code which are not reenterable. @@ -59,17 +59,15 @@ static void setup_stack(uintptr_t event, ucontext_t *uc) { if (trap_from_user) __am_pmem_unprotect(); // skip the instructions causing SIGSEGV for syscall - if (event == EVENT_SYSCALL) { pc += SYSCALL_INSTR_LEN; } - AM_REG_PC(uc) = (uintptr_t)pc; + if (event == EVENT_SYSCALL) { rip += SYSCALL_INSTR_LEN; } + uc->uc_mcontext.gregs[REG_RIP] = (uintptr_t)rip; // switch to kernel stack if we were previously in user space - uintptr_t sp = trap_from_user ? thiscpu->ksp : AM_REG_SP(uc); - sp -= sizeof(Context); -#ifdef __x86_64__ - // keep (sp + 8) % 16 == 0 to support SSE - if ((sp + 8) % 16 != 0) sp -= 8; -#endif - Context *c = (void *)sp; + uintptr_t rsp = trap_from_user ? thiscpu->ksp : uc->uc_mcontext.gregs[REG_RSP]; + rsp -= sizeof(Context); + // keep (rsp + 8) % 16 == 0 to support SSE + if ((rsp + 8) % 16 != 0) rsp -= 8; + Context *c = (void *)rsp; // save the context on the stack c->uc = *uc; @@ -78,17 +76,17 @@ static void setup_stack(uintptr_t event, ucontext_t *uc) { __am_get_intr_sigmask(&uc->uc_sigmask); // call irq_handle after returning from the signal handler - AM_REG_GPR1(uc) = (uintptr_t)c; - AM_REG_PC(uc) = (uintptr_t)irq_handle; - AM_REG_SP(uc) = (uintptr_t)c; + uc->uc_mcontext.gregs[REG_RDI] = (uintptr_t)c; + uc->uc_mcontext.gregs[REG_RIP] = (uintptr_t)irq_handle; + uc->uc_mcontext.gregs[REG_RSP] = (uintptr_t)c; } static void iret(ucontext_t *uc) { - Context *c = (void *)AM_REG_GPR1(uc); + Context *c = (void *)uc->uc_mcontext.gregs[REG_RDI]; // restore the context *uc = c->uc; thiscpu->ksp = c->ksp; - if (__am_in_userspace((void *)AM_REG_PC(uc))) __am_pmem_protect(); + if (__am_in_userspace((void *)uc->uc_mcontext.gregs[REG_RIP])) __am_pmem_protect(); } static void sig_handler(int sig, siginfo_t *info, void *ucontext) { @@ -169,8 +167,8 @@ Context* kcontext(Area kstack, void (*entry)(void *), void *arg) { Context *c = (Context*)kstack.end - 1; __am_get_example_uc(c); - AM_REG_PC(&c->uc) = (uintptr_t)__am_kcontext_start; - AM_REG_SP(&c->uc) = (uintptr_t)kstack.end; + c->uc.uc_mcontext.gregs[REG_RIP] = (uintptr_t)__am_kcontext_start; + c->uc.uc_mcontext.gregs[REG_RSP] = (uintptr_t)kstack.end; int ret = sigemptyset(&(c->uc.uc_sigmask)); // enable interrupt assert(ret == 0); diff --git a/am/src/native/ioe/audio.c b/am/src/native/ioe/audio.c index 2cfef8a..de19552 100644 --- a/am/src/native/ioe/audio.c +++ b/am/src/native/ioe/audio.c @@ -2,7 +2,7 @@ #include #include #include -#include +#include static int rfd = -1, wfd = -1; static volatile int count = 0; diff --git a/am/src/native/ioe/gpu.c b/am/src/native/ioe/gpu.c index b57586b..0309d50 100644 --- a/am/src/native/ioe/gpu.c +++ b/am/src/native/ioe/gpu.c @@ -1,14 +1,14 @@ #include -#include +#include #include //#define MODE_800x600 -#define WINDOW_W 800 -#define WINDOW_H 600 #ifdef MODE_800x600 -const int disp_w = WINDOW_W, disp_h = WINDOW_H; +# define W 800 +# define H 600 #else -const int disp_w = 400, disp_h = 300; +# define W 400 +# define H 300 #endif #define FPS 60 @@ -31,8 +31,13 @@ void __am_gpu_init() { SDL_Init(SDL_INIT_VIDEO | SDL_INIT_TIMER); window = SDL_CreateWindow("Native Application", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, - WINDOW_W, WINDOW_H, SDL_WINDOW_OPENGL); - surface = SDL_CreateRGBSurface(SDL_SWSURFACE, disp_w, disp_h, 32, +#ifdef MODE_800x600 + W, H, +#else + W * 2, H * 2, +#endif + SDL_WINDOW_OPENGL); + surface = SDL_CreateRGBSurface(SDL_SWSURFACE, W, H, 32, RMASK, GMASK, BMASK, AMASK); SDL_AddTimer(1000 / FPS, texture_sync, NULL); } @@ -40,7 +45,7 @@ void __am_gpu_init() { void __am_gpu_config(AM_GPU_CONFIG_T *cfg) { *cfg = (AM_GPU_CONFIG_T) { .present = true, .has_accel = false, - .width = disp_w, .height = disp_h, + .width = W, .height = H, .vmemsz = 0 }; } diff --git a/am/src/native/ioe/input.c b/am/src/native/ioe/input.c index eb591b8..17c7f34 100644 --- a/am/src/native/ioe/input.c +++ b/am/src/native/ioe/input.c @@ -1,5 +1,5 @@ #include -#include +#include #define KEYDOWN_MASK 0x8000 diff --git a/am/src/native/platform.c b/am/src/native/platform.c index 49efc93..02f8941 100644 --- a/am/src/native/platform.c +++ b/am/src/native/platform.c @@ -150,9 +150,7 @@ static void init_platform() { // save the context template save_example_context(); -#ifdef __x86_64__ uc_example.uc_mcontext.fpregs = NULL; // clear the FPU context -#endif __am_get_intr_sigmask(&uc_example.uc_sigmask); // disable interrupts by default diff --git a/am/src/native/platform.h b/am/src/native/platform.h index 24d01e7..64e775a 100644 --- a/am/src/native/platform.h +++ b/am/src/native/platform.h @@ -7,22 +7,6 @@ #include #include -#ifdef __x86_64__ -#define AM_REG_PC(uc) (uc)->uc_mcontext.gregs[REG_RIP] -#define AM_REG_SP(uc) (uc)->uc_mcontext.gregs[REG_RSP] -#define AM_REG_GPR1(uc) (uc)->uc_mcontext.gregs[REG_RDI] -#elif defined(__aarch64__) -#define AM_REG_PC(uc) (uc)->uc_mcontext.pc -#define AM_REG_SP(uc) (uc)->uc_mcontext.sp -#define AM_REG_GPR1(uc) (uc)->uc_mcontext.regs[0] -#elif defined(__riscv) && __riscv_xlen == 64 -#define AM_REG_PC(uc) (uc)->uc_mcontext.__gregs[REG_PC] -#define AM_REG_SP(uc) (uc)->uc_mcontext.__gregs[REG_SP] -#define AM_REG_GPR1(uc) (uc)->uc_mcontext.__gregs[REG_A0] -#else -#error Unsupported architecture -#endif - void __am_get_example_uc(Context *r); void __am_get_intr_sigmask(sigset_t *s); int __am_is_sigmask_sti(sigset_t *s); diff --git a/am/src/native/trap.S b/am/src/native/trap.S index dc09172..ac9107a 100644 --- a/am/src/native/trap.S +++ b/am/src/native/trap.S @@ -1,6 +1,5 @@ .global __am_kcontext_start __am_kcontext_start: -#ifdef __x86_64__ // rdi = arg, rsi = entry // (rsp + 8) should be multiple of 16 when @@ -9,21 +8,3 @@ __am_kcontext_start: andq $0xfffffffffffffff0, %rsp call *%rsi call __am_panic_on_return -#elif __aarch64__ - // x0 = arg, x1 = entry - // (sp + 16) should be multiple of 16 when - // control is transfered to the function entry point. - // See aarch64 ABI manual for more details - // https://github.com/ARM-software/abi-aa - mov x2, sp - and sp, x2, #0xfffffffffffffff0 - br x1 - bl __am_panic_on_return -#elif __riscv - // See riscv ABI manual for more details - // https://github.com/riscv-non-isa/riscv-elf-psabi-doc - addi sp, sp, -16 - andi sp, sp, ~15 - jalr a1 - jal __am_panic_on_return -#endif diff --git a/am/src/native/vme.c b/am/src/native/vme.c index 3f0e4e7..5b622cd 100644 --- a/am/src/native/vme.c +++ b/am/src/native/vme.c @@ -124,8 +124,8 @@ Context* ucontext(AddrSpace *as, Area kstack, void *entry) { Context *c = (Context*)kstack.end - 1; __am_get_example_uc(c); - AM_REG_PC(&c->uc) = (uintptr_t)entry; - AM_REG_SP(&c->uc) = (uintptr_t)USER_SPACE.end; + c->uc.uc_mcontext.gregs[REG_RIP] = (uintptr_t)entry; + c->uc.uc_mcontext.gregs[REG_RSP] = (uintptr_t)USER_SPACE.end; int ret = sigemptyset(&(c->uc.uc_sigmask)); // enable interrupt assert(ret == 0); diff --git a/am/src/platform/dummy/audio.c b/am/src/platform/dummy/audio.c new file mode 100644 index 0000000..f0aa5ef --- /dev/null +++ b/am/src/platform/dummy/audio.c @@ -0,0 +1,12 @@ +#include + +void __am_audio_init() { +} + +size_t __am_audio_write(uintptr_t reg, void *buf, size_t size) { + return 0; +} + +size_t __am_audio_read(uintptr_t reg, void *buf, size_t size) { + return 0; +} diff --git a/am/src/platform/dummy/input.c b/am/src/platform/dummy/input.c new file mode 100644 index 0000000..9aef940 --- /dev/null +++ b/am/src/platform/dummy/input.c @@ -0,0 +1,7 @@ +#include "amdev.h" +#include + +void __am_input_read(AM_INPUT_KEYBRD_T *kbd) { + kbd->keydown = 0; + kbd->keycode = AM_KEY_NONE; +} diff --git a/am/src/platform/dummy/trm.c b/am/src/platform/dummy/trm.c index 3fd84e2..c1fd2a7 100644 --- a/am/src/platform/dummy/trm.c +++ b/am/src/platform/dummy/trm.c @@ -4,7 +4,7 @@ Area heap = RANGE(NULL, NULL); void putch(char ch) { } - + void halt(int code) { - while (1); + while (1); } diff --git a/am/src/platform/dummy/video.c b/am/src/platform/dummy/video.c new file mode 100644 index 0000000..e179063 --- /dev/null +++ b/am/src/platform/dummy/video.c @@ -0,0 +1,16 @@ +#include +#include + +#define W 320 +#define H 240 + +size_t __am_video_read(uintptr_t reg, void *buf, size_t size) { + return 0; +} + +size_t __am_video_write(uintptr_t reg, void *buf, size_t size) { + return 0; +} + +void __am_vga_init() { +} diff --git a/am/src/platform/nemu/include/nemu.h b/am/src/platform/nemu/include/nemu.h index cbd952c..6047926 100644 --- a/am/src/platform/nemu/include/nemu.h +++ b/am/src/platform/nemu/include/nemu.h @@ -14,7 +14,7 @@ # define nemu_trap(code) asm volatile("mv a0, %0; ebreak" : :"r"(code)) #elif defined(__ISA_LOONGARCH32R__) # define nemu_trap(code) asm volatile("move $a0, %0; break 0" : :"r"(code)) -#else +#elif # error unsupported ISA __ISA__ #endif @@ -26,6 +26,7 @@ #define MMIO_BASE 0xa0000000 + #define SERIAL_PORT (DEVICE_BASE + 0x00003f8) #define KBD_ADDR (DEVICE_BASE + 0x0000060) #define RTC_ADDR (DEVICE_BASE + 0x0000048) diff --git a/am/src/platform/nemu/ioe/audio.c b/am/src/platform/nemu/ioe/audio.c index 81839c4..30c8680 100644 --- a/am/src/platform/nemu/ioe/audio.c +++ b/am/src/platform/nemu/ioe/audio.c @@ -1,5 +1,9 @@ +#include "amdev.h" +#include "riscv/riscv.h" #include #include +#include +#include #define AUDIO_FREQ_ADDR (AUDIO_ADDR + 0x00) #define AUDIO_CHANNELS_ADDR (AUDIO_ADDR + 0x04) @@ -8,19 +12,40 @@ #define AUDIO_INIT_ADDR (AUDIO_ADDR + 0x10) #define AUDIO_COUNT_ADDR (AUDIO_ADDR + 0x14) -void __am_audio_init() { -} +//We assume that this configure will never change during the execution +AM_AUDIO_CONFIG_T cfg_now; +int last_write = 0; void __am_audio_config(AM_AUDIO_CONFIG_T *cfg) { - cfg->present = false; + cfg->present = true; + cfg->bufsize = inl(AUDIO_SBUF_SIZE_ADDR); +} +void __am_audio_init() { + outl(AUDIO_INIT_ADDR, 0); + __am_audio_config(&cfg_now); } + void __am_audio_ctrl(AM_AUDIO_CTRL_T *ctrl) { + outl(AUDIO_FREQ_ADDR, ctrl->freq); + outl(AUDIO_CHANNELS_ADDR, ctrl->channels); + outl(AUDIO_SAMPLES_ADDR, ctrl->samples); + outl(AUDIO_INIT_ADDR, 1); } void __am_audio_status(AM_AUDIO_STATUS_T *stat) { - stat->count = 0; + stat->count = inl(AUDIO_COUNT_ADDR); } void __am_audio_play(AM_AUDIO_PLAY_T *ctl) { + int len = ctl->buf.end - ctl->buf.start; + int count = inl(AUDIO_COUNT_ADDR); + int size = cfg_now.bufsize; + for(; count + len > size; count = inl(AUDIO_COUNT_ADDR)); + for(int i = 0; i < len; i += 4) { + outl(last_write + AUDIO_SBUF_ADDR, *(uint32_t*)(ctl->buf.start + i)); + last_write = (last_write + 4) % size; + } + //Should lock here, NEMU and AM may write to this addr at the same time + outl(AUDIO_COUNT_ADDR, inl(AUDIO_COUNT_ADDR) + len); } diff --git a/am/src/platform/nemu/ioe/gpu.c b/am/src/platform/nemu/ioe/gpu.c index fb33096..cfadced 100644 --- a/am/src/platform/nemu/ioe/gpu.c +++ b/am/src/platform/nemu/ioe/gpu.c @@ -1,23 +1,51 @@ +//#include "amdev.h" +#include "riscv/riscv.h" #include #include - +#include +#include #define SYNC_ADDR (VGACTL_ADDR + 4) -void __am_gpu_init() { -} +static AM_GPU_CONFIG_T cfg_now; + void __am_gpu_config(AM_GPU_CONFIG_T *cfg) { + uint32_t vga_ctrl_data = inl(VGACTL_ADDR); + uint16_t w = vga_ctrl_data >> 16; + uint16_t h = vga_ctrl_data & 0x0000ffff; *cfg = (AM_GPU_CONFIG_T) { .present = true, .has_accel = false, - .width = 0, .height = 0, - .vmemsz = 0 + .width = w, .height = h, + .vmemsz = w * h }; } +void __am_gpu_init() { + __am_gpu_config(&cfg_now); +} + void __am_gpu_fbdraw(AM_GPU_FBDRAW_T *ctl) { - if (ctl->sync) { - outl(SYNC_ADDR, 1); - } + + //size of block + int w = ctl->w, h = ctl->h; + //coordinates of the bottom-left pixel of the block + int x = ctl->x, y = ctl->y; + uint32_t pixel_idx = 0; + uint32_t pixel = 0; + uint32_t buffer_idx = y * cfg_now.width + x; + + for(int i = 0; i < h; i++) { + for(int j = 0; j < w; j++) { + pixel = *((uint32_t*)ctl->pixels + pixel_idx); + outl(FB_ADDR + 4U * buffer_idx, pixel); + pixel_idx++; + buffer_idx++; + } + buffer_idx += cfg_now.width - w; + } + if (ctl->sync) { + outl(SYNC_ADDR, 1); + } } void __am_gpu_status(AM_GPU_STATUS_T *status) { diff --git a/am/src/platform/nemu/ioe/input.c b/am/src/platform/nemu/ioe/input.c index 9cecca2..e25402e 100644 --- a/am/src/platform/nemu/ioe/input.c +++ b/am/src/platform/nemu/ioe/input.c @@ -1,9 +1,12 @@ +#include "riscv/riscv.h" #include #include +#include #define KEYDOWN_MASK 0x8000 void __am_input_keybrd(AM_INPUT_KEYBRD_T *kbd) { - kbd->keydown = 0; - kbd->keycode = AM_KEY_NONE; + uint32_t k = inl(KBD_ADDR); + kbd->keydown = (k & KEYDOWN_MASK ? true : false); + kbd->keycode = k & ~KEYDOWN_MASK; } diff --git a/am/src/platform/nemu/ioe/timer.c b/am/src/platform/nemu/ioe/timer.c index f173ed4..92f6375 100644 --- a/am/src/platform/nemu/ioe/timer.c +++ b/am/src/platform/nemu/ioe/timer.c @@ -1,11 +1,18 @@ +#include "riscv/riscv.h" #include #include +#include void __am_timer_init() { + outl(RTC_ADDR, 0); + outl(RTC_ADDR + 4, 0); } void __am_timer_uptime(AM_TIMER_UPTIME_T *uptime) { - uptime->us = 0; + + uint32_t h = inl(RTC_ADDR + 4); + uint32_t l = inl(RTC_ADDR); + uptime->us = (uint64_t)h << 32 | l; } void __am_timer_rtc(AM_TIMER_RTC_T *rtc) { diff --git a/am/src/platform/nemu/trm.c b/am/src/platform/nemu/trm.c index d4a4370..a46af4d 100644 --- a/am/src/platform/nemu/trm.c +++ b/am/src/platform/nemu/trm.c @@ -2,10 +2,14 @@ #include extern char _heap_start; +extern void *heap_alloc_ptr; int main(const char *args); Area heap = RANGE(&_heap_start, PMEM_END); -static const char mainargs[MAINARGS_MAX_LEN] = MAINARGS_PLACEHOLDER; // defined in CFLAGS +#ifndef MAINARGS +#define MAINARGS "" +#endif +static const char mainargs[] = MAINARGS; void putch(char ch) { outb(SERIAL_PORT, ch); @@ -19,6 +23,7 @@ void halt(int code) { } void _trm_init() { + heap_alloc_ptr = heap.start; int ret = main(mainargs); halt(ret); } diff --git a/am/src/riscv/nemu/cte.c b/am/src/riscv/nemu/cte.c index 77a357c..4066b0a 100644 --- a/am/src/riscv/nemu/cte.c +++ b/am/src/riscv/nemu/cte.c @@ -8,6 +8,19 @@ Context* __am_irq_handle(Context *c) { if (user_handler) { Event ev = {0}; switch (c->mcause) { + case 11: +#ifdef __riscv_e + uint32_t call_number = c->gpr[15]; //a5 +#else + uint32_t call_number = c->gpr[17]; //a7 +#endif + switch(call_number) { + case -1: ev.event = EVENT_YIELD; break; + default: + ev.event = EVENT_SYSCALL; break; + } + break; + default: ev.event = EVENT_ERROR; break; } @@ -17,7 +30,6 @@ Context* __am_irq_handle(Context *c) { return c; } - extern void __am_asm_trap(void); bool cte_init(Context*(*handler)(Event, Context*)) { @@ -31,11 +43,27 @@ bool cte_init(Context*(*handler)(Event, Context*)) { } Context *kcontext(Area kstack, void (*entry)(void *), void *arg) { - return NULL; + uint32_t *stack = kstack.end; //kernel stack top + stack -= 32 + 4; + for(int i = 0; i < 32; i++) { + stack[i] = 0; + } + //stack[2] = (uint32_t)((uint32_t*)kstack.start + 1024); + stack[10] = (uint32_t)arg; + stack[32] = 11; //mcause + stack[33] = 0x1800U; //mstatus + stack[34] = (uint32_t)entry; //mepc + stack[35] = 0; //addr space + // + uint32_t *begin = kstack.start; + *begin = (uint32_t)stack; + + return (Context *)stack; } void yield() { #ifdef __riscv_e + //use a5 or a7 to get system call ID asm volatile("li a5, -1; ecall"); #else asm volatile("li a7, -1; ecall"); diff --git a/am/src/riscv/nemu/start.S b/am/src/riscv/nemu/start.S index 87457a8..3e56e5c 100644 --- a/am/src/riscv/nemu/start.S +++ b/am/src/riscv/nemu/start.S @@ -5,6 +5,4 @@ _start: mv s0, zero la sp, _stack_pointer - call _trm_init - -.size _start, . - _start + jal _trm_init diff --git a/am/src/riscv/nemu/trap.S b/am/src/riscv/nemu/trap.S index 7202d89..f4d4447 100644 --- a/am/src/riscv/nemu/trap.S +++ b/am/src/riscv/nemu/trap.S @@ -58,14 +58,14 @@ __am_asm_trap: csrw mstatus, t1 mv a0, sp - call __am_irq_handle + jal __am_irq_handle + mv sp, a0 LOAD t1, OFFSET_STATUS(sp) LOAD t2, OFFSET_EPC(sp) csrw mstatus, t1 csrw mepc, t2 MAP(REGS, POP) - addi sp, sp, CONTEXT_SIZE mret diff --git a/am/src/riscv/npc/cte.c b/am/src/riscv/npc/cte.c index 77a357c..3688635 100644 --- a/am/src/riscv/npc/cte.c +++ b/am/src/riscv/npc/cte.c @@ -8,6 +8,7 @@ Context* __am_irq_handle(Context *c) { if (user_handler) { Event ev = {0}; switch (c->mcause) { + case 11: ev.event = EVENT_YIELD; break; // scause ? default: ev.event = EVENT_ERROR; break; } @@ -31,7 +32,23 @@ bool cte_init(Context*(*handler)(Event, Context*)) { } Context *kcontext(Area kstack, void (*entry)(void *), void *arg) { - return NULL; + //Note that we use e extension here !!!! + uint32_t *stack = kstack.end; //kernel stack top + stack -= 16 + 4; + for(int i = 0; i < 16; i++) { + stack[i] = 0; + } + //stack[2] = (uint32_t)((uint32_t*)kstack.start + 1024); + stack[10] = (uint32_t)arg; + stack[16] = 11; //mcause + stack[17] = 0x1800U; //mstatus + stack[18] = (uint32_t)entry; //mepc + stack[19] = 0; //addr space + // + uint32_t *begin = kstack.start; + *begin = (uint32_t)stack; + + return (Context *)stack; } void yield() { diff --git a/am/src/riscv/npc/libgcc/div.S b/am/src/riscv/npc/libgcc/div.S index 3838ee6..d941a90 100644 --- a/am/src/riscv/npc/libgcc/div.S +++ b/am/src/riscv/npc/libgcc/div.S @@ -40,7 +40,7 @@ FUNC_BEGIN (__udivsi3) sll a0, a0, 32 sll a1, a1, 32 move t0, ra - call HIDDEN_JUMPTARGET(__udivdi3) + jal HIDDEN_JUMPTARGET(__udivdi3) sext.w a0, a0 jr t0 FUNC_END (__udivsi3) @@ -52,7 +52,7 @@ FUNC_BEGIN (__umodsi3) srl a0, a0, 32 srl a1, a1, 32 move t0, ra - call HIDDEN_JUMPTARGET(__udivdi3) + jal HIDDEN_JUMPTARGET(__udivdi3) sext.w a0, a1 jr t0 FUNC_END (__umodsi3) @@ -100,7 +100,7 @@ HIDDEN_DEF (__udivdi3) FUNC_BEGIN (__umoddi3) /* Call __udivdi3(a0, a1), then return the remainder, which is in a1. */ move t0, ra - call HIDDEN_JUMPTARGET(__udivdi3) + jal HIDDEN_JUMPTARGET(__udivdi3) move a0, a1 jr t0 FUNC_END (__umoddi3) @@ -117,7 +117,7 @@ FUNC_END (__umoddi3) neg a1, a1 .L12: move t0, ra - call HIDDEN_JUMPTARGET(__udivdi3) + jal HIDDEN_JUMPTARGET(__udivdi3) neg a0, a0 jr t0 FUNC_END (__divdi3) @@ -127,7 +127,7 @@ FUNC_BEGIN (__moddi3) bltz a1, .L31 bltz a0, .L32 .L30: - call HIDDEN_JUMPTARGET(__udivdi3) /* The dividend is not negative. */ + jal HIDDEN_JUMPTARGET(__udivdi3) /* The dividend is not negative. */ move a0, a1 jr t0 .L31: @@ -135,7 +135,7 @@ FUNC_BEGIN (__moddi3) bgez a0, .L30 .L32: neg a0, a0 - call HIDDEN_JUMPTARGET(__udivdi3) /* The dividend is hella negative. */ + jal HIDDEN_JUMPTARGET(__udivdi3) /* The dividend is hella negative. */ neg a0, a1 jr t0 FUNC_END (__moddi3) diff --git a/am/src/riscv/npc/start.S b/am/src/riscv/npc/start.S index 78ed49b..3e56e5c 100644 --- a/am/src/riscv/npc/start.S +++ b/am/src/riscv/npc/start.S @@ -5,4 +5,4 @@ _start: mv s0, zero la sp, _stack_pointer - call _trm_init + jal _trm_init diff --git a/am/src/riscv/npc/timer.c b/am/src/riscv/npc/timer.c index 6ea0ffa..bb808e0 100644 --- a/am/src/riscv/npc/timer.c +++ b/am/src/riscv/npc/timer.c @@ -1,10 +1,21 @@ +#include "amdev.h" +#include "riscv/riscv.h" #include +#include -void __am_timer_init() { -} +#define RTC_ADDR 0xa0000048 +static uint64_t up = 0; void __am_timer_uptime(AM_TIMER_UPTIME_T *uptime) { - uptime->us = 0; + uint32_t h = inl(RTC_ADDR + 4); + uint32_t l = inl(RTC_ADDR); + uint64_t time = (uint64_t)h << 32 | l; + uptime->us = time - up; +} +void __am_timer_init() { + uint32_t h = inl(RTC_ADDR + 4); + uint32_t l = inl(RTC_ADDR); + up = (uint64_t)h << 32 | l; } void __am_timer_rtc(AM_TIMER_RTC_T *rtc) { diff --git a/am/src/riscv/npc/trap.S b/am/src/riscv/npc/trap.S index 209b5b5..18d208c 100644 --- a/am/src/riscv/npc/trap.S +++ b/am/src/riscv/npc/trap.S @@ -55,6 +55,7 @@ __am_asm_trap: mv a0, sp jal __am_irq_handle + mv sp, a0 LOAD t1, OFFSET_STATUS(sp) LOAD t2, OFFSET_EPC(sp) csrw mstatus, t1 diff --git a/am/src/riscv/npc/trm.c b/am/src/riscv/npc/trm.c index f805217..65f7b34 100644 --- a/am/src/riscv/npc/trm.c +++ b/am/src/riscv/npc/trm.c @@ -1,3 +1,4 @@ +#include "riscv/riscv.h" #include #include @@ -9,13 +10,21 @@ extern char _pmem_start; #define PMEM_END ((uintptr_t)&_pmem_start + PMEM_SIZE) Area heap = RANGE(&_heap_start, PMEM_END); -static const char mainargs[MAINARGS_MAX_LEN] = MAINARGS_PLACEHOLDER; // defined in CFLAGS +#ifndef MAINARGS +#define MAINARGS "" +#endif +static const char mainargs[] = MAINARGS; void putch(char ch) { +#define SERIAL_PORT 0xa00003f8 + outb(SERIAL_PORT, ch); } void halt(int code) { - while (1); + asm volatile("mv a0, %0; ebreak" :: "r"(code)); + + //can't compile without this + while (1); } void _trm_init() { diff --git a/am/src/riscv/nutshell/common/ioe.c b/am/src/riscv/nutshell/common/ioe.c new file mode 100644 index 0000000..9cfe458 --- /dev/null +++ b/am/src/riscv/nutshell/common/ioe.c @@ -0,0 +1,22 @@ +#include +#include + +void __am_timer_init(); +void __am_timer_rtc(AM_TIMER_RTC_T *); +void __am_timer_uptime(AM_TIMER_UPTIME_T *); +static void __am_timer_config(AM_TIMER_CONFIG_T *cfg) { cfg->present = true; cfg->has_rtc = true; } +bool ioe_init() { + __am_timer_init(); + return true; +} + +typedef void (*handler_t)(void *buf); +static void *lut[128] = { + [AM_TIMER_CONFIG] = __am_timer_config, + [AM_TIMER_RTC ] = __am_timer_rtc, + [AM_TIMER_UPTIME] = __am_timer_uptime, +}; + +typedef void (*handler_t)(void *buf); +void ioe_read (int reg, void *buf) { ((handler_t)lut[reg])(buf); } +void ioe_write(int reg, void *buf) { ((handler_t)lut[reg])(buf); } diff --git a/am/src/riscv/nutshell/common/mainargs.S b/am/src/riscv/nutshell/common/mainargs.S new file mode 100644 index 0000000..7842c4b --- /dev/null +++ b/am/src/riscv/nutshell/common/mainargs.S @@ -0,0 +1,4 @@ +.section .rodata +.globl __am_mainargs +__am_mainargs: + .asciz MAINARGS diff --git a/am/src/riscv/nutshell/common/timer.c b/am/src/riscv/nutshell/common/timer.c new file mode 100644 index 0000000..52b17f2 --- /dev/null +++ b/am/src/riscv/nutshell/common/timer.c @@ -0,0 +1,30 @@ +#include +#include +#include +#include +#include +#include + +static uint64_t boot_time = 0; +static inline uint64_t read_time(void) { + //Just host time + return ind(RTC_ADDR) * 20000; // unit: us + //return ind(RTC_ADDR); // unit: us +} + +void __am_timer_uptime(AM_TIMER_UPTIME_T *uptime) { + uptime->us = read_time() - boot_time; +} + +void __am_timer_rtc(AM_TIMER_RTC_T *rtc) { + rtc->second = 0; + rtc->minute = 0; + rtc->hour = 0; + rtc->day = 0; + rtc->month = 0; + rtc->year = 2018; +} + +void __am_timer_init() { + boot_time = read_time(); +} diff --git a/am/src/riscv/nutshell/common/uartlite.c b/am/src/riscv/nutshell/common/uartlite.c new file mode 100644 index 0000000..75bac87 --- /dev/null +++ b/am/src/riscv/nutshell/common/uartlite.c @@ -0,0 +1,28 @@ +#include + +#define UARTLITE_MMIO 0x40600000 +#define UARTLITE_RX_FIFO 0x0 +#define UARTLITE_TX_FIFO 0x4 +#define UARTLITE_STAT_REG 0x8 +#define UARTLITE_CTRL_REG 0xc + +#define UARTLITE_RST_FIFO 0x03 +#define UARTLITE_TX_FULL 0x08 +#define UARTLITE_RX_VALID 0x01 + +void __am_init_uartlite(void) { + outb(UARTLITE_MMIO + UARTLITE_CTRL_REG, UARTLITE_RST_FIFO); +} + +void __am_uartlite_putchar(char ch) { + if (ch == '\n') __am_uartlite_putchar('\r'); + + while (inb(UARTLITE_MMIO + UARTLITE_STAT_REG) & UARTLITE_TX_FULL); + outb(UARTLITE_MMIO + UARTLITE_TX_FIFO, ch); +} + +int __am_uartlite_getchar() { + if (inb(UARTLITE_MMIO + UARTLITE_STAT_REG) & UARTLITE_RX_VALID) + return inb(UARTLITE_MMIO + UARTLITE_RX_FIFO); + return 0; +} diff --git a/am/src/riscv/nutshell/include/nutshell.h b/am/src/riscv/nutshell/include/nutshell.h new file mode 100644 index 0000000..07cce2b --- /dev/null +++ b/am/src/riscv/nutshell/include/nutshell.h @@ -0,0 +1,12 @@ +#ifndef __NUTSHELL_H__ +#define __NUTSHELL_H__ + +#include +#include + +# define RTC_ADDR 0x3800bff8 +# define SCREEN_ADDR 0x40001000 +# define SYNC_ADDR 0x40001004 +# define FB_ADDR 0x50000000 + +#endif diff --git a/am/src/riscv/nutshell/isa/riscv/boot/loader64.ld b/am/src/riscv/nutshell/isa/riscv/boot/loader64.ld new file mode 100644 index 0000000..dd97baf --- /dev/null +++ b/am/src/riscv/nutshell/isa/riscv/boot/loader64.ld @@ -0,0 +1,7 @@ +pmem_base = 0x80000000; + +MEMORY { + ram (rwxa) : ORIGIN = 0x80000000, LENGTH = 128M +} + +INCLUDE "section.ld" diff --git a/am/src/riscv/nutshell/isa/riscv/boot/start.S b/am/src/riscv/nutshell/isa/riscv/boot/start.S new file mode 100644 index 0000000..3e56e5c --- /dev/null +++ b/am/src/riscv/nutshell/isa/riscv/boot/start.S @@ -0,0 +1,8 @@ +.section entry, "ax" +.globl _start +.type _start, @function + +_start: + mv s0, zero + la sp, _stack_pointer + jal _trm_init diff --git a/am/src/riscv/nutshell/isa/riscv/trm.c b/am/src/riscv/nutshell/isa/riscv/trm.c new file mode 100644 index 0000000..0bd9617 --- /dev/null +++ b/am/src/riscv/nutshell/isa/riscv/trm.c @@ -0,0 +1,38 @@ +#include +#include +#include + +extern char _heap_start; +extern char _pmem_end; + +int main(const char *args); +void __am_init_uartlite(void); +void __am_uartlite_putchar(char ch); + +Area heap = { + .start = &_heap_start, + .end = &_pmem_end, +}; + +void putch(char ch) { + __am_uartlite_putchar(ch); +} + +void halt(int code) { + printf("Before 0x0005006b\n"); + __asm__ volatile("mv a0, %0; .word 0x0005006b" : :"r"(code)); + + // should not reach here during simulation + printf("Exit with code = %d\n", code); + + // should not reach here on FPGA + while (1); +} + +extern char __am_mainargs; +static const char *mainargs = &__am_mainargs; +void _trm_init() { + __am_init_uartlite(); + int ret = main(mainargs); + halt(ret); +} diff --git a/am/src/riscv/nutshell/ldscript/section.ld b/am/src/riscv/nutshell/ldscript/section.ld new file mode 100644 index 0000000..d059a04 --- /dev/null +++ b/am/src/riscv/nutshell/ldscript/section.ld @@ -0,0 +1,33 @@ +ENTRY(_start) + +SECTIONS { + . = ORIGIN(ram); + .text : { + *(entry) + *(.text) + } + etext = .; + _etext = .; + .rodata : { + *(.rodata*) + } + .data : { + *(.data) + } + edata = .; + _data = .; + .bss : { + _bss_start = .; + *(.bss*) + *(.sbss*) + *(.scommon) + } + _stack_top = ALIGN(0x1000); + . = _stack_top + 0x8000; + _stack_pointer = .; + end = .; + _end = .; + _heap_start = ALIGN(0x1000); + _pmem_start = pmem_base; + _pmem_end = _pmem_start + LENGTH(ram); +} diff --git a/am/src/riscv/riscv.h b/am/src/riscv/riscv.h index 4cb9182..9524e59 100644 --- a/am/src/riscv/riscv.h +++ b/am/src/riscv/riscv.h @@ -1,15 +1,23 @@ #ifndef RISCV_H__ #define RISCV_H__ +#ifndef __ASSEMBLER__ #include +typedef union { + struct { uint32_t lo, hi; }; + int64_t val; +} R64; + static inline uint8_t inb(uintptr_t addr) { return *(volatile uint8_t *)addr; } static inline uint16_t inw(uintptr_t addr) { return *(volatile uint16_t *)addr; } static inline uint32_t inl(uintptr_t addr) { return *(volatile uint32_t *)addr; } +static inline uint64_t ind(uintptr_t addr) { return *(volatile uint64_t *)addr; } static inline void outb(uintptr_t addr, uint8_t data) { *(volatile uint8_t *)addr = data; } static inline void outw(uintptr_t addr, uint16_t data) { *(volatile uint16_t *)addr = data; } static inline void outl(uintptr_t addr, uint32_t data) { *(volatile uint32_t *)addr = data; } +static inline void outd(uintptr_t addr, uint64_t data) { *(volatile uint64_t *)addr = data; } #define PTE_V 0x01 #define PTE_R 0x02 @@ -19,9 +27,14 @@ static inline void outl(uintptr_t addr, uint32_t data) { *(volatile uint32_t *)a #define PTE_A 0x40 #define PTE_D 0x80 -enum { MODE_U, MODE_S, MODE_M = 3 }; +enum { MODE_U, MODE_S, MODE_H, MODE_M}; +#define MSTATUS_IE(mode) ((1 << (mode)) << 0) +#define MSTATUS_PIE(mode) ((1 << (mode)) << 4) +#define MSTATUS_MPP(mode) ((mode) << 11) +#define MSTATUS_SPP(mode) ((mode) << 8) #define MSTATUS_MXR (1 << 19) #define MSTATUS_SUM (1 << 18) +#define MSTATUS_MPRV (1 << 17) #if __riscv_xlen == 64 #define MSTATUS_SXL (2ull << 34) @@ -31,4 +44,12 @@ enum { MODE_U, MODE_S, MODE_M = 3 }; #define MSTATUS_UXL 0 #endif +// Address in page table entry +#define PTE_ADDR(pte) (((uintptr_t)(pte) & ~0x3ff) << 2) + +#define PTW_SV32 ((ptw_config) { .ptw_level = 2, .vpn_width = 10 }) +#define PTW_SV39 ((ptw_config) { .ptw_level = 3, .vpn_width = 9 }) +#define PTW_SV48 ((ptw_config) { .ptw_level = 4, .vpn_width = 9 }) + +#endif #endif diff --git a/am/src/riscv/ysyxsoc/cte.c b/am/src/riscv/ysyxsoc/cte.c new file mode 100644 index 0000000..3688635 --- /dev/null +++ b/am/src/riscv/ysyxsoc/cte.c @@ -0,0 +1,67 @@ +#include +#include +#include + +static Context* (*user_handler)(Event, Context*) = NULL; + +Context* __am_irq_handle(Context *c) { + if (user_handler) { + Event ev = {0}; + switch (c->mcause) { + case 11: ev.event = EVENT_YIELD; break; // scause ? + default: ev.event = EVENT_ERROR; break; + } + + c = user_handler(ev, c); + assert(c != NULL); + } + + return c; +} + +extern void __am_asm_trap(void); + +bool cte_init(Context*(*handler)(Event, Context*)) { + // initialize exception entry + asm volatile("csrw mtvec, %0" : : "r"(__am_asm_trap)); + + // register event handler + user_handler = handler; + + return true; +} + +Context *kcontext(Area kstack, void (*entry)(void *), void *arg) { + //Note that we use e extension here !!!! + uint32_t *stack = kstack.end; //kernel stack top + stack -= 16 + 4; + for(int i = 0; i < 16; i++) { + stack[i] = 0; + } + //stack[2] = (uint32_t)((uint32_t*)kstack.start + 1024); + stack[10] = (uint32_t)arg; + stack[16] = 11; //mcause + stack[17] = 0x1800U; //mstatus + stack[18] = (uint32_t)entry; //mepc + stack[19] = 0; //addr space + // + uint32_t *begin = kstack.start; + *begin = (uint32_t)stack; + + return (Context *)stack; +} + +void yield() { +#ifdef __riscv_e + asm volatile("li a5, -1; ecall"); +#else + asm volatile("li a7, -1; ecall"); +#endif +} + +bool ienabled() { + return false; +} + +void iset(bool enable) { +} diff --git a/am/src/riscv/ysyxsoc/input.c b/am/src/riscv/ysyxsoc/input.c new file mode 100644 index 0000000..0460fa4 --- /dev/null +++ b/am/src/riscv/ysyxsoc/input.c @@ -0,0 +1,6 @@ +#include + +void __am_input_keybrd(AM_INPUT_KEYBRD_T *kbd) { + kbd->keydown = 0; + kbd->keycode = AM_KEY_NONE; +} diff --git a/am/src/riscv/ysyxsoc/ioe.c b/am/src/riscv/ysyxsoc/ioe.c new file mode 100644 index 0000000..14ff689 --- /dev/null +++ b/am/src/riscv/ysyxsoc/ioe.c @@ -0,0 +1,34 @@ +#include +#include + +void __am_timer_init(); + +void __am_timer_rtc(AM_TIMER_RTC_T *); +void __am_timer_uptime(AM_TIMER_UPTIME_T *); +void __am_input_keybrd(AM_INPUT_KEYBRD_T *); + +static void __am_timer_config(AM_TIMER_CONFIG_T *cfg) { cfg->present = true; cfg->has_rtc = true; } +static void __am_input_config(AM_INPUT_CONFIG_T *cfg) { cfg->present = true; } +static void __am_uart_config(AM_INPUT_CONFIG_T *cfg) { cfg->present = false; } + +typedef void (*handler_t)(void *buf); +static void *lut[128] = { + [AM_TIMER_CONFIG] = __am_timer_config, + [AM_TIMER_RTC ] = __am_timer_rtc, + [AM_TIMER_UPTIME] = __am_timer_uptime, + [AM_INPUT_CONFIG] = __am_input_config, + [AM_INPUT_KEYBRD] = __am_input_keybrd, + [AM_UART_CONFIG] = __am_uart_config, +}; + +static void fail(void *buf) { panic("access nonexist register"); } + +bool ioe_init() { + for (int i = 0; i < LENGTH(lut); i++) + if (!lut[i]) lut[i] = fail; + __am_timer_init(); + return true; +} + +void ioe_read (int reg, void *buf) { ((handler_t)lut[reg])(buf); } +void ioe_write(int reg, void *buf) { ((handler_t)lut[reg])(buf); } diff --git a/am/src/riscv/ysyxsoc/libgcc/ashldi3.c b/am/src/riscv/ysyxsoc/libgcc/ashldi3.c new file mode 100644 index 0000000..63bb3b6 --- /dev/null +++ b/am/src/riscv/ysyxsoc/libgcc/ashldi3.c @@ -0,0 +1,27 @@ +#define LIBGCC2_UNITS_PER_WORD (__riscv_xlen / 8) +#include "libgcc2.h" + +DWtype __ashldi3 (DWtype u, shift_count_type b) +{ + if (b == 0) + return u; + + const DWunion uu = {.ll = u}; + const shift_count_type bm = W_TYPE_SIZE - b; + DWunion w; + + if (bm <= 0) + { + w.s.low = 0; + w.s.high = (UWtype) uu.s.low << -bm; + } + else + { + const UWtype carries = (UWtype) uu.s.low >> bm; + + w.s.low = (UWtype) uu.s.low << b; + w.s.high = ((UWtype) uu.s.high << b) | carries; + } + + return w.ll; +} diff --git a/am/src/riscv/ysyxsoc/libgcc/div.S b/am/src/riscv/ysyxsoc/libgcc/div.S new file mode 100644 index 0000000..d941a90 --- /dev/null +++ b/am/src/riscv/ysyxsoc/libgcc/div.S @@ -0,0 +1,150 @@ +/* Integer division routines for RISC-V. + + Copyright (C) 2016-2022 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 3, or (at your option) any later +version. + +GCC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +Under Section 7 of GPL version 3, you are granted additional +permissions described in the GCC Runtime Library Exception, version +3.1, as published by the Free Software Foundation. + +You should have received a copy of the GNU General Public License and +a copy of the GCC Runtime Library Exception along with this program; +see the files COPYING3 and COPYING.RUNTIME respectively. If not, see +. */ + +#include "riscv-asm.h" + + .text + .align 2 + +#if __riscv_xlen == 32 +/* Our RV64 64-bit routines are equivalent to our RV32 32-bit routines. */ +# define __udivdi3 __udivsi3 +# define __umoddi3 __umodsi3 +# define __divdi3 __divsi3 +# define __moddi3 __modsi3 +#else +FUNC_BEGIN (__udivsi3) + /* Compute __udivdi3(a0 << 32, a1 << 32); cast result to uint32_t. */ + sll a0, a0, 32 + sll a1, a1, 32 + move t0, ra + jal HIDDEN_JUMPTARGET(__udivdi3) + sext.w a0, a0 + jr t0 +FUNC_END (__udivsi3) + +FUNC_BEGIN (__umodsi3) + /* Compute __udivdi3((uint32_t)a0, (uint32_t)a1); cast a1 to uint32_t. */ + sll a0, a0, 32 + sll a1, a1, 32 + srl a0, a0, 32 + srl a1, a1, 32 + move t0, ra + jal HIDDEN_JUMPTARGET(__udivdi3) + sext.w a0, a1 + jr t0 +FUNC_END (__umodsi3) + +FUNC_ALIAS (__modsi3, __moddi3) + +FUNC_BEGIN( __divsi3) + /* Check for special case of INT_MIN/-1. Otherwise, fall into __divdi3. */ + li t0, -1 + beq a1, t0, .L20 +#endif + +FUNC_BEGIN (__divdi3) + bltz a0, .L10 + bltz a1, .L11 + /* Since the quotient is positive, fall into __udivdi3. */ + +FUNC_BEGIN (__udivdi3) + mv a2, a1 + mv a1, a0 + li a0, -1 + beqz a2, .L5 + li a3, 1 + bgeu a2, a1, .L2 +.L1: + blez a2, .L2 + slli a2, a2, 1 + slli a3, a3, 1 + bgtu a1, a2, .L1 +.L2: + li a0, 0 +.L3: + bltu a1, a2, .L4 + sub a1, a1, a2 + or a0, a0, a3 +.L4: + srli a3, a3, 1 + srli a2, a2, 1 + bnez a3, .L3 +.L5: + ret +FUNC_END (__udivdi3) +HIDDEN_DEF (__udivdi3) + +FUNC_BEGIN (__umoddi3) + /* Call __udivdi3(a0, a1), then return the remainder, which is in a1. */ + move t0, ra + jal HIDDEN_JUMPTARGET(__udivdi3) + move a0, a1 + jr t0 +FUNC_END (__umoddi3) + + /* Handle negative arguments to __divdi3. */ +.L10: + neg a0, a0 + /* Zero is handled as a negative so that the result will not be inverted. */ + bgtz a1, .L12 /* Compute __udivdi3(-a0, a1), then negate the result. */ + + neg a1, a1 + j HIDDEN_JUMPTARGET(__udivdi3) /* Compute __udivdi3(-a0, -a1). */ +.L11: /* Compute __udivdi3(a0, -a1), then negate the result. */ + neg a1, a1 +.L12: + move t0, ra + jal HIDDEN_JUMPTARGET(__udivdi3) + neg a0, a0 + jr t0 +FUNC_END (__divdi3) + +FUNC_BEGIN (__moddi3) + move t0, ra + bltz a1, .L31 + bltz a0, .L32 +.L30: + jal HIDDEN_JUMPTARGET(__udivdi3) /* The dividend is not negative. */ + move a0, a1 + jr t0 +.L31: + neg a1, a1 + bgez a0, .L30 +.L32: + neg a0, a0 + jal HIDDEN_JUMPTARGET(__udivdi3) /* The dividend is hella negative. */ + neg a0, a1 + jr t0 +FUNC_END (__moddi3) + +#if __riscv_xlen == 64 + /* continuation of __divsi3 */ +.L20: + sll t0, t0, 31 + bne a0, t0, __divdi3 + ret +FUNC_END (__divsi3) +#endif diff --git a/am/src/riscv/ysyxsoc/libgcc/libgcc2.h b/am/src/riscv/ysyxsoc/libgcc/libgcc2.h new file mode 100644 index 0000000..9b04f89 --- /dev/null +++ b/am/src/riscv/ysyxsoc/libgcc/libgcc2.h @@ -0,0 +1,543 @@ +/* Header file for libgcc2.c. */ +/* Copyright (C) 2000-2022 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 3, or (at your option) any later +version. + +GCC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +Under Section 7 of GPL version 3, you are granted additional +permissions described in the GCC Runtime Library Exception, version +3.1, as published by the Free Software Foundation. + +You should have received a copy of the GNU General Public License and +a copy of the GCC Runtime Library Exception along with this program; +see the files COPYING3 and COPYING.RUNTIME respectively. If not, see +. */ + +#ifndef GCC_LIBGCC2_H +#define GCC_LIBGCC2_H + +#include + +#define MIN_UNITS_PER_WORD (__riscv_xlen / 8) + +#ifndef HIDE_EXPORTS +#pragma GCC visibility push(default) +#endif + +extern int __gcc_bcmp (const unsigned char *, const unsigned char *, size_t); +extern void __clear_cache (void *, void *); +extern void __eprintf (const char *, const char *, unsigned int, const char *) + __attribute__ ((__noreturn__)); + +#ifdef __LIBGCC_HAS_HF_MODE__ +#define LIBGCC2_HAS_HF_MODE 1 +#else +#define LIBGCC2_HAS_HF_MODE 0 +#endif + +#ifdef __LIBGCC_HAS_SF_MODE__ +#define LIBGCC2_HAS_SF_MODE 1 +#else +#define LIBGCC2_HAS_SF_MODE 0 +#endif + +#ifdef __LIBGCC_HAS_DF_MODE__ +#define LIBGCC2_HAS_DF_MODE 1 +#else +#define LIBGCC2_HAS_DF_MODE 0 +#endif + +#ifdef __LIBGCC_HAS_XF_MODE__ +#define LIBGCC2_HAS_XF_MODE 1 +#else +#define LIBGCC2_HAS_XF_MODE 0 +#endif + +#ifdef __LIBGCC_HAS_TF_MODE__ +#define LIBGCC2_HAS_TF_MODE 1 +#else +#define LIBGCC2_HAS_TF_MODE 0 +#endif + +#ifndef __LIBGCC_SF_MANT_DIG__ +#if LIBGCC2_HAS_SF_MODE +#error __LIBGCC_SF_MANT_DIG__ not defined +#else +#define __LIBGCC_SF_MANT_DIG__ 0 +#endif +#endif + +#ifndef __LIBGCC_DF_MANT_DIG__ +#if LIBGCC2_HAS_DF_MODE +#error __LIBGCC_DF_MANT_DIG__ not defined +#else +#define __LIBGCC_DF_MANT_DIG__ 0 +#endif +#endif + +#ifndef __LIBGCC_XF_MANT_DIG__ +#if LIBGCC2_HAS_XF_MODE +#error __LIBGCC_XF_MANT_DIG__ not defined +#else +#define __LIBGCC_XF_MANT_DIG__ 0 +#endif +#endif + +#ifndef __LIBGCC_TF_MANT_DIG__ +#if LIBGCC2_HAS_TF_MODE +#error __LIBGCC_TF_MANT_DIG__ not defined +#else +#define __LIBGCC_TF_MANT_DIG__ 0 +#endif +#endif + +/* FIXME: This #ifdef probably should be removed, ie. enable the test + for mips too. */ +/* Don't use IBM Extended Double TFmode for TI->SF calculations. + The conversion from long double to float suffers from double + rounding, because we convert via double. In other cases, going + through the software fp routines is much slower than the fallback. */ +#ifdef __powerpc__ +#define AVOID_FP_TYPE_CONVERSION(SIZE) (SIZE == 106) +#elif defined(WIDEST_HARDWARE_FP_SIZE) +#define AVOID_FP_TYPE_CONVERSION(SIZE) (SIZE > WIDEST_HARDWARE_FP_SIZE) +#else +#define AVOID_FP_TYPE_CONVERSION(SIZE) 0 +#endif + +/* In the first part of this file, we are interfacing to calls generated + by the compiler itself. These calls pass values into these routines + which have very specific modes (rather than very specific types), and + these compiler-generated calls also expect any return values to have + very specific modes (rather than very specific types). Thus, we need + to avoid using regular C language type names in this part of the file + because the sizes for those types can be configured to be anything. + Instead we use the following special type names. */ + +typedef int QItype __attribute__ ((mode (QI))); +typedef unsigned int UQItype __attribute__ ((mode (QI))); +typedef int HItype __attribute__ ((mode (HI))); +typedef unsigned int UHItype __attribute__ ((mode (HI))); +#if MIN_UNITS_PER_WORD > 1 +/* These typedefs are usually forbidden on dsp's with UNITS_PER_WORD 1. */ +typedef int SItype __attribute__ ((mode (SI))); +typedef unsigned int USItype __attribute__ ((mode (SI))); +#if __SIZEOF_LONG_LONG__ > 4 +/* These typedefs are usually forbidden on archs with UNITS_PER_WORD 2. */ +typedef int DItype __attribute__ ((mode (DI))); +typedef unsigned int UDItype __attribute__ ((mode (DI))); +#if MIN_UNITS_PER_WORD > 4 +/* These typedefs are usually forbidden on archs with UNITS_PER_WORD 4. */ +typedef int TItype __attribute__ ((mode (TI))); +typedef unsigned int UTItype __attribute__ ((mode (TI))); +#endif +#endif +#endif + +#if LIBGCC2_HAS_HF_MODE +typedef float HFtype __attribute__ ((mode (HF))); +typedef _Complex float HCtype __attribute__ ((mode (HC))); +#endif +#if LIBGCC2_HAS_SF_MODE +typedef float SFtype __attribute__ ((mode (SF))); +typedef _Complex float SCtype __attribute__ ((mode (SC))); +#endif +#if LIBGCC2_HAS_DF_MODE +typedef float DFtype __attribute__ ((mode (DF))); +typedef _Complex float DCtype __attribute__ ((mode (DC))); +#endif +#if LIBGCC2_HAS_XF_MODE +typedef float XFtype __attribute__ ((mode (XF))); +typedef _Complex float XCtype __attribute__ ((mode (XC))); +#endif +#if LIBGCC2_HAS_TF_MODE +typedef float TFtype __attribute__ ((mode (TF))); +typedef _Complex float TCtype __attribute__ ((mode (TC))); +#endif + +typedef int cmp_return_type; // __attribute__((mode (__libgcc_cmp_return__))); +typedef int shift_count_type; // __attribute__((mode (__libgcc_shift_count__))); + +/* Make sure that we don't accidentally use any normal C language built-in + type names in the first part of this file. Instead we want to use *only* + the type names defined above. The following macro definitions insure + that if we *do* accidentally use some normal C language built-in type name, + we will get a syntax error. */ + +#define char bogus_type +#define short bogus_type +#define int bogus_type +#define long bogus_type +#define unsigned bogus_type +#define float bogus_type +#define double bogus_type + +/* Versions prior to 3.4.4 were not taking into account the word size for + the 5 trapping arithmetic functions absv, addv, subv, mulv and negv. As + a consequence, the si and di variants were always and the only ones emitted. + To maintain backward compatibility, COMPAT_SIMODE_TRAPPING_ARITHMETIC is + defined on platforms where it makes sense to still have the si variants + emitted. As a bonus, their implementation is now correct. Note that the + same mechanism should have been implemented for the di variants, but it + turns out that no platform would define COMPAT_DIMODE_TRAPPING_ARITHMETIC + if it existed. */ + +#if LIBGCC2_UNITS_PER_WORD == 8 +#define W_TYPE_SIZE (8 * __CHAR_BIT__) +#define Wtype DItype +#define UWtype UDItype +#define HWtype DItype +#define UHWtype UDItype +#define DWtype TItype +#define UDWtype UTItype +#ifdef LIBGCC2_GNU_PREFIX +#define __NW(a,b) __gnu_ ## a ## di ## b +#define __NDW(a,b) __gnu_ ## a ## ti ## b +#else +#define __NW(a,b) __ ## a ## di ## b +#define __NDW(a,b) __ ## a ## ti ## b +#endif +#define COMPAT_SIMODE_TRAPPING_ARITHMETIC +#elif LIBGCC2_UNITS_PER_WORD == 4 +#define W_TYPE_SIZE (4 * __CHAR_BIT__) +#define Wtype SItype +#define UWtype USItype +#define HWtype SItype +#define UHWtype USItype +#define DWtype DItype +#define UDWtype UDItype +#ifdef LIBGCC2_GNU_PREFIX +#define __NW(a,b) __gnu_ ## a ## si ## b +#define __NDW(a,b) __gnu_ ## a ## di ## b +#else +#define __NW(a,b) __ ## a ## si ## b +#define __NDW(a,b) __ ## a ## di ## b +#endif +#elif LIBGCC2_UNITS_PER_WORD == 2 +#define W_TYPE_SIZE (2 * __CHAR_BIT__) +#define Wtype HItype +#define UWtype UHItype +#define HWtype HItype +#define UHWtype UHItype +#define DWtype SItype +#define UDWtype USItype +#ifdef LIBGCC2_GNU_PREFIX +#define __NW(a,b) __gnu_ ## a ## hi ## b +#define __NDW(a,b) __gnu_ ## a ## si ## b +#else +#define __NW(a,b) __ ## a ## hi ## b +#define __NDW(a,b) __ ## a ## si ## b +#endif +#else +#define W_TYPE_SIZE __CHAR_BIT__ +#define Wtype QItype +#define UWtype UQItype +#define HWtype QItype +#define UHWtype UQItype +#define DWtype HItype +#define UDWtype UHItype +#ifdef LIBGCC2_GNU_PREFIX +#define __NW(a,b) __gnu_ ## a ## qi ## b +#define __NDW(a,b) __gnu_ ## a ## hi ## b +#else +#define __NW(a,b) __ ## a ## qi ## b +#define __NDW(a,b) __ ## a ## hi ## b +#endif +#endif + +#ifdef LIBGCC2_GNU_PREFIX +#define __N(a) __gnu_ ## a +#else +#define __N(a) __ ## a +#endif +#define Wtype_MAX ((Wtype)(((UWtype)1 << (W_TYPE_SIZE - 1)) - 1)) +#define Wtype_MIN (- Wtype_MAX - 1) + +#if W_TYPE_SIZE == 8 +# define Wtype_MAXp1_F 0x1p8f +#elif W_TYPE_SIZE == 16 +# define Wtype_MAXp1_F 0x1p16f +#elif W_TYPE_SIZE == 32 +# define Wtype_MAXp1_F 0x1p32f +#elif W_TYPE_SIZE == 64 +# define Wtype_MAXp1_F 0x1p64f +#else +# error "expand the table" +#endif + +#define __muldi3 __NDW(mul,3) +#define __divdi3 __NDW(div,3) +#define __udivdi3 __NDW(udiv,3) +#define __moddi3 __NDW(mod,3) +#define __umoddi3 __NDW(umod,3) +#define __negdi2 __NDW(neg,2) +#define __lshrdi3 __NDW(lshr,3) +#define __ashldi3 __NDW(ashl,3) +#define __ashrdi3 __NDW(ashr,3) +#define __cmpdi2 __NDW(cmp,2) +#define __ucmpdi2 __NDW(ucmp,2) +#define __divmoddi4 __NDW(divmod,4) +#define __udivmoddi4 __NDW(udivmod,4) +#define __fixunstfDI __NDW(fixunstf,) +#define __fixtfdi __NDW(fixtf,) +#define __fixunsxfDI __NDW(fixunsxf,) +#define __fixxfdi __NDW(fixxf,) +#define __fixunsdfDI __NDW(fixunsdf,) +#define __fixdfdi __NDW(fixdf,) +#define __fixunssfDI __NDW(fixunssf,) +#define __fixsfdi __NDW(fixsf,) +#define __floatdixf __NDW(float,xf) +#define __floatditf __NDW(float,tf) +#define __floatdidf __NDW(float,df) +#define __floatdisf __NDW(float,sf) +#define __floatundixf __NDW(floatun,xf) +#define __floatunditf __NDW(floatun,tf) +#define __floatundidf __NDW(floatun,df) +#define __floatundisf __NDW(floatun,sf) +#define __fixunsxfSI __NW(fixunsxf,) +#define __fixunstfSI __NW(fixunstf,) +#define __fixunsdfSI __NW(fixunsdf,) +#define __fixunssfSI __NW(fixunssf,) + +#define __absvSI2 __NW(absv,2) +#define __addvSI3 __NW(addv,3) +#define __subvSI3 __NW(subv,3) +#define __mulvSI3 __NW(mulv,3) +#define __negvSI2 __NW(negv,2) +#define __absvDI2 __NDW(absv,2) +#define __addvDI3 __NDW(addv,3) +#define __subvDI3 __NDW(subv,3) +#define __mulvDI3 __NDW(mulv,3) +#define __negvDI2 __NDW(negv,2) + +#define __ffsSI2 __NW(ffs,2) +#define __clzSI2 __NW(clz,2) +#define __ctzSI2 __NW(ctz,2) +#define __clrsbSI2 __NW(clrsb,2) +#define __popcountSI2 __NW(popcount,2) +#define __paritySI2 __NW(parity,2) +#define __ffsDI2 __NDW(ffs,2) +#define __clzDI2 __NDW(clz,2) +#define __ctzDI2 __NDW(ctz,2) +#define __clrsbDI2 __NDW(clrsb,2) +#define __popcountDI2 __NDW(popcount,2) +#define __parityDI2 __NDW(parity,2) + +#define __clz_tab __N(clz_tab) +#define __bswapsi2 __N(bswapsi2) +#define __bswapdi2 __N(bswapdi2) +#define __udiv_w_sdiv __N(udiv_w_sdiv) +#define __clear_cache __N(clear_cache) +#define __enable_execute_stack __N(enable_execute_stack) + +#ifndef __powisf2 +#define __powisf2 __N(powisf2) +#endif +#ifndef __powidf2 +#define __powidf2 __N(powidf2) +#endif +#ifndef __powitf2 +#define __powitf2 __N(powitf2) +#endif +#ifndef __powixf2 +#define __powixf2 __N(powixf2) +#endif +#ifndef __mulsc3 +#define __mulsc3 __N(mulsc3) +#endif +#ifndef __muldc3 +#define __muldc3 __N(muldc3) +#endif +#ifndef __mulxc3 +#define __mulxc3 __N(mulxc3) +#endif +#ifndef __multc3 +#define __multc3 __N(multc3) +#endif +#ifndef __divsc3 +#define __divsc3 __N(divsc3) +#endif +#ifndef __divdc3 +#define __divdc3 __N(divdc3) +#endif +#ifndef __divxc3 +#define __divxc3 __N(divxc3) +#endif +#ifndef __divtc3 +#define __divtc3 __N(divtc3) +#endif + +extern DWtype __muldi3 (DWtype, DWtype); +extern DWtype __divdi3 (DWtype, DWtype); +extern UDWtype __udivdi3 (UDWtype, UDWtype); +extern UDWtype __umoddi3 (UDWtype, UDWtype); +extern DWtype __moddi3 (DWtype, DWtype); +extern DWtype __divmoddi4 (DWtype, DWtype, DWtype *); + +/* __udivmoddi4 is static inline when building other libgcc2 portions. */ +#if (!defined (L_udivdi3) && !defined (L_divdi3) && \ + !defined (L_umoddi3) && !defined (L_moddi3) && \ + !defined (L_divmoddi4)) +extern UDWtype __udivmoddi4 (UDWtype, UDWtype, UDWtype *); +#endif + +/* __negdi2 is static inline when building other libgcc2 portions. */ +#if !defined(L_divdi3) && !defined(L_moddi3) +extern DWtype __negdi2 (DWtype); +#endif + +extern DWtype __lshrdi3 (DWtype, shift_count_type); +extern DWtype __ashldi3 (DWtype, shift_count_type); +extern DWtype __ashrdi3 (DWtype, shift_count_type); + +/* __udiv_w_sdiv is static inline when building other libgcc2 portions. */ +#if (!defined(L_udivdi3) && !defined(L_divdi3) && \ + !defined(L_umoddi3) && !defined(L_moddi3)) +extern UWtype __udiv_w_sdiv (UWtype *, UWtype, UWtype, UWtype); +#endif + +extern cmp_return_type __cmpdi2 (DWtype, DWtype); +extern cmp_return_type __ucmpdi2 (UDWtype, UDWtype); + +#if MIN_UNITS_PER_WORD > 1 +extern SItype __bswapsi2 (SItype); +#endif +#if __SIZEOF_LONG_LONG__ > 4 +extern DItype __bswapdi2 (DItype); +#endif + +extern Wtype __absvSI2 (Wtype); +extern Wtype __addvSI3 (Wtype, Wtype); +extern Wtype __subvSI3 (Wtype, Wtype); +extern Wtype __mulvSI3 (Wtype, Wtype); +extern Wtype __negvSI2 (Wtype); +extern DWtype __absvDI2 (DWtype); +extern DWtype __addvDI3 (DWtype, DWtype); +extern DWtype __subvDI3 (DWtype, DWtype); +extern DWtype __mulvDI3 (DWtype, DWtype); +extern DWtype __negvDI2 (DWtype); + +#ifdef COMPAT_SIMODE_TRAPPING_ARITHMETIC +#define __absvsi2 __N(absvsi2) +#define __negvsi2 __N(negvsi2) +#define __addvsi3 __N(addvsi3) +#define __subvsi3 __N(subvsi3) +#define __mulvsi3 __N(mulvsi3) + +extern SItype __absvsi2 (SItype); +extern SItype __addvsi3 (SItype, SItype); +extern SItype __subvsi3 (SItype, SItype); +extern SItype __mulvsi3 (SItype, SItype); +extern SItype __negvsi2 (SItype); +#endif /* COMPAT_SIMODE_TRAPPING_ARITHMETIC */ + +#undef int +#if LIBGCC2_HAS_HF_MODE +extern HCtype __divhc3 (HFtype, HFtype, HFtype, HFtype); +extern HCtype __mulhc3 (HFtype, HFtype, HFtype, HFtype); +#endif +#if LIBGCC2_HAS_SF_MODE +extern DWtype __fixsfdi (SFtype); +extern SFtype __floatdisf (DWtype); +extern SFtype __floatundisf (UDWtype); +extern UWtype __fixunssfSI (SFtype); +extern UDWtype __fixunssfDI (SFtype); +extern SFtype __powisf2 (SFtype, int); +extern SCtype __divsc3 (SFtype, SFtype, SFtype, SFtype); +extern SCtype __mulsc3 (SFtype, SFtype, SFtype, SFtype); +#endif +#if LIBGCC2_HAS_DF_MODE +extern DWtype __fixdfdi (DFtype); +extern DFtype __floatdidf (DWtype); +extern DFtype __floatundidf (UDWtype); +extern UWtype __fixunsdfSI (DFtype); +extern UDWtype __fixunsdfDI (DFtype); +extern DFtype __powidf2 (DFtype, int); +extern DCtype __divdc3 (DFtype, DFtype, DFtype, DFtype); +extern DCtype __muldc3 (DFtype, DFtype, DFtype, DFtype); +#endif + +#if LIBGCC2_HAS_XF_MODE +extern DWtype __fixxfdi (XFtype); +extern UDWtype __fixunsxfDI (XFtype); +extern XFtype __floatdixf (DWtype); +extern XFtype __floatundixf (UDWtype); +extern UWtype __fixunsxfSI (XFtype); +extern XFtype __powixf2 (XFtype, int); +extern XCtype __divxc3 (XFtype, XFtype, XFtype, XFtype); +extern XCtype __mulxc3 (XFtype, XFtype, XFtype, XFtype); +#endif + +#if LIBGCC2_HAS_TF_MODE +extern UDWtype __fixunstfDI (TFtype); +extern DWtype __fixtfdi (TFtype); +extern TFtype __floatditf (DWtype); +extern TFtype __floatunditf (UDWtype); +extern TFtype __powitf2 (TFtype, int); +extern TCtype __divtc3 (TFtype, TFtype, TFtype, TFtype); +extern TCtype __multc3 (TFtype, TFtype, TFtype, TFtype); +#endif +#define int bogus_type + +/* DWstructs are pairs of Wtype values in the order determined by + __BYTE_ORDER__. */ + +#if __BYTE_ORDER__ != __ORDER_LITTLE_ENDIAN__ + struct DWstruct {Wtype high, low;}; +#else + struct DWstruct {Wtype low, high;}; +#endif + +/* We need this union to unpack/pack DImode values, since we don't have + any arithmetic yet. Incoming DImode parameters are stored into the + `ll' field, and the unpacked result is read from the struct `s'. */ + +typedef union +{ + struct DWstruct s; + DWtype ll; +} DWunion; + +/* Defined for L_popcount_tab. Exported here because some targets may + want to use it for their own versions of the __popcount builtins. */ +extern const UQItype __popcount_tab[256]; + +/* Defined for L_clz. Exported here because some targets may want to use + it for their own versions of the __clz builtins. It contains the bit + position of the first set bit for the numbers 0 - 255. This avoids the + need for a separate table for the __ctz builtins. */ +extern const UQItype __clz_tab[256]; + +#include "longlong.h" + +#undef int +extern int __clzDI2 (UDWtype); +extern int __clzSI2 (UWtype); +extern int __ctzSI2 (UWtype); +extern int __ctzDI2 (UDWtype); +extern int __clrsbSI2 (Wtype); +extern int __clrsbDI2 (DWtype); +extern int __ffsSI2 (UWtype); +extern int __ffsDI2 (DWtype); +extern int __popcountSI2 (UWtype); +extern int __popcountDI2 (UDWtype); +extern int __paritySI2 (UWtype); +extern int __parityDI2 (UDWtype); +#define int bogus_type + +extern void __enable_execute_stack (void *); + +#ifndef HIDE_EXPORTS +#pragma GCC visibility pop +#endif + +#endif /* ! GCC_LIBGCC2_H */ diff --git a/am/src/riscv/ysyxsoc/libgcc/longlong.h b/am/src/riscv/ysyxsoc/libgcc/longlong.h new file mode 100644 index 0000000..64a7b10 --- /dev/null +++ b/am/src/riscv/ysyxsoc/libgcc/longlong.h @@ -0,0 +1,1774 @@ +/* longlong.h -- definitions for mixed size 32/64 bit arithmetic. + Copyright (C) 1991-2022 Free Software Foundation, Inc. + + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + In addition to the permissions in the GNU Lesser General Public + License, the Free Software Foundation gives you unlimited + permission to link the compiled version of this file into + combinations with other programs, and to distribute those + combinations without any restriction coming from the use of this + file. (The Lesser General Public License restrictions do apply in + other respects; for example, they cover modification of the file, + and distribution when not linked into a combine executable.) + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +/* You have to define the following before including this file: + + UWtype -- An unsigned type, default type for operations (typically a "word") + UHWtype -- An unsigned type, at least half the size of UWtype. + UDWtype -- An unsigned type, at least twice as large a UWtype + W_TYPE_SIZE -- size in bits of UWtype + + UQItype -- Unsigned 8 bit type. + SItype, USItype -- Signed and unsigned 32 bit types. + DItype, UDItype -- Signed and unsigned 64 bit types. + + On a 32 bit machine UWtype should typically be USItype; + on a 64 bit machine, UWtype should typically be UDItype. */ + +#define __BITS4 (W_TYPE_SIZE / 4) +#define __ll_B ((UWtype) 1 << (W_TYPE_SIZE / 2)) +#define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1)) +#define __ll_highpart(t) ((UWtype) (t) >> (W_TYPE_SIZE / 2)) + +#ifndef W_TYPE_SIZE +#define W_TYPE_SIZE 32 +#define UWtype USItype +#define UHWtype USItype +#define UDWtype UDItype +#endif + +/* Used in glibc only. */ +#ifndef attribute_hidden +#define attribute_hidden +#endif + +extern const UQItype __clz_tab[256] attribute_hidden; + +/* Define auxiliary asm macros. + + 1) umul_ppmm(high_prod, low_prod, multiplier, multiplicand) multiplies two + UWtype integers MULTIPLIER and MULTIPLICAND, and generates a two UWtype + word product in HIGH_PROD and LOW_PROD. + + 2) __umulsidi3(a,b) multiplies two UWtype integers A and B, and returns a + UDWtype product. This is just a variant of umul_ppmm. + + 3) udiv_qrnnd(quotient, remainder, high_numerator, low_numerator, + denominator) divides a UDWtype, composed by the UWtype integers + HIGH_NUMERATOR and LOW_NUMERATOR, by DENOMINATOR and places the quotient + in QUOTIENT and the remainder in REMAINDER. HIGH_NUMERATOR must be less + than DENOMINATOR for correct operation. If, in addition, the most + significant bit of DENOMINATOR must be 1, then the pre-processor symbol + UDIV_NEEDS_NORMALIZATION is defined to 1. + + 4) sdiv_qrnnd(quotient, remainder, high_numerator, low_numerator, + denominator). Like udiv_qrnnd but the numbers are signed. The quotient + is rounded towards 0. + + 5) count_leading_zeros(count, x) counts the number of zero-bits from the + msb to the first nonzero bit in the UWtype X. This is the number of + steps X needs to be shifted left to set the msb. Undefined for X == 0, + unless the symbol COUNT_LEADING_ZEROS_0 is defined to some value. + + 6) count_trailing_zeros(count, x) like count_leading_zeros, but counts + from the least significant end. + + 7) add_ssaaaa(high_sum, low_sum, high_addend_1, low_addend_1, + high_addend_2, low_addend_2) adds two UWtype integers, composed by + HIGH_ADDEND_1 and LOW_ADDEND_1, and HIGH_ADDEND_2 and LOW_ADDEND_2 + respectively. The result is placed in HIGH_SUM and LOW_SUM. Overflow + (i.e. carry out) is not stored anywhere, and is lost. + + 8) sub_ddmmss(high_difference, low_difference, high_minuend, low_minuend, + high_subtrahend, low_subtrahend) subtracts two two-word UWtype integers, + composed by HIGH_MINUEND_1 and LOW_MINUEND_1, and HIGH_SUBTRAHEND_2 and + LOW_SUBTRAHEND_2 respectively. The result is placed in HIGH_DIFFERENCE + and LOW_DIFFERENCE. Overflow (i.e. carry out) is not stored anywhere, + and is lost. + + If any of these macros are left undefined for a particular CPU, + C macros are used. */ + +/* The CPUs come in alphabetical order below. + + Please add support for more CPUs here, or improve the current support + for the CPUs below! + (E.g. WE32100, IBM360.) */ + +#if defined (__GNUC__) && !defined (NO_ASM) + +/* We sometimes need to clobber "cc" with gcc2, but that would not be + understood by gcc1. Use cpp to avoid major code duplication. */ +#if __GNUC__ < 2 +#define __CLOBBER_CC +#define __AND_CLOBBER_CC +#else /* __GNUC__ >= 2 */ +#define __CLOBBER_CC : "cc" +#define __AND_CLOBBER_CC , "cc" +#endif /* __GNUC__ < 2 */ + +#if defined (__aarch64__) + +#if W_TYPE_SIZE == 32 +#define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clz (X)) +#define count_trailing_zeros(COUNT, X) ((COUNT) = __builtin_ctz (X)) +#define COUNT_LEADING_ZEROS_0 32 +#endif /* W_TYPE_SIZE == 32 */ + +#if W_TYPE_SIZE == 64 +#define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clzll (X)) +#define count_trailing_zeros(COUNT, X) ((COUNT) = __builtin_ctzll (X)) +#define COUNT_LEADING_ZEROS_0 64 +#endif /* W_TYPE_SIZE == 64 */ + +#endif /* __aarch64__ */ + +#if defined (__alpha) && W_TYPE_SIZE == 64 +/* There is a bug in g++ before version 5 that + errors on __builtin_alpha_umulh. */ +#if !defined(__cplusplus) || __GNUC__ >= 5 +#define umul_ppmm(ph, pl, m0, m1) \ + do { \ + UDItype __m0 = (m0), __m1 = (m1); \ + (ph) = __builtin_alpha_umulh (__m0, __m1); \ + (pl) = __m0 * __m1; \ + } while (0) +#define UMUL_TIME 46 +#endif /* !c++ */ +#ifndef LONGLONG_STANDALONE +#define udiv_qrnnd(q, r, n1, n0, d) \ + do { UDItype __r; \ + (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \ + (r) = __r; \ + } while (0) +extern UDItype __udiv_qrnnd (UDItype *, UDItype, UDItype, UDItype); +#define UDIV_TIME 220 +#endif /* LONGLONG_STANDALONE */ +#ifdef __alpha_cix__ +#define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzl (X)) +#define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctzl (X)) +#define COUNT_LEADING_ZEROS_0 64 +#else +#define count_leading_zeros(COUNT,X) \ + do { \ + UDItype __xr = (X), __t, __a; \ + __t = __builtin_alpha_cmpbge (0, __xr); \ + __a = __clz_tab[__t ^ 0xff] - 1; \ + __t = __builtin_alpha_extbl (__xr, __a); \ + (COUNT) = 64 - (__clz_tab[__t] + __a*8); \ + } while (0) +#define count_trailing_zeros(COUNT,X) \ + do { \ + UDItype __xr = (X), __t, __a; \ + __t = __builtin_alpha_cmpbge (0, __xr); \ + __t = ~__t & -~__t; \ + __a = ((__t & 0xCC) != 0) * 2; \ + __a += ((__t & 0xF0) != 0) * 4; \ + __a += ((__t & 0xAA) != 0); \ + __t = __builtin_alpha_extbl (__xr, __a); \ + __a <<= 3; \ + __t &= -__t; \ + __a += ((__t & 0xCC) != 0) * 2; \ + __a += ((__t & 0xF0) != 0) * 4; \ + __a += ((__t & 0xAA) != 0); \ + (COUNT) = __a; \ + } while (0) +#endif /* __alpha_cix__ */ +#endif /* __alpha */ + +#if defined (__arc__) && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("add.f %1, %4, %5\n\tadc %0, %2, %3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "%r" ((USItype) (ah)), \ + "rICal" ((USItype) (bh)), \ + "%r" ((USItype) (al)), \ + "rICal" ((USItype) (bl)) \ + : "cc") +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("sub.f %1, %4, %5\n\tsbc %0, %2, %3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "r" ((USItype) (ah)), \ + "rICal" ((USItype) (bh)), \ + "r" ((USItype) (al)), \ + "rICal" ((USItype) (bl)) \ + : "cc") + +#define __umulsidi3(u,v) ((UDItype)(USItype)u*(USItype)v) +#ifdef __ARC_NORM__ +#define count_leading_zeros(count, x) \ + do \ + { \ + SItype c_; \ + \ + __asm__ ("norm.f\t%0,%1\n\tmov.mi\t%0,-1" : "=r" (c_) : "r" (x) : "cc");\ + (count) = c_ + 1; \ + } \ + while (0) +#define COUNT_LEADING_ZEROS_0 32 +#endif /* __ARC_NORM__ */ +#endif /* __arc__ */ + +#if defined (__arm__) && (defined (__thumb2__) || !defined (__thumb__)) \ + && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("adds %1, %4, %5\n\tadc %0, %2, %3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "%r" ((USItype) (ah)), \ + "rI" ((USItype) (bh)), \ + "%r" ((USItype) (al)), \ + "rI" ((USItype) (bl)) __CLOBBER_CC) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("subs %1, %4, %5\n\tsbc %0, %2, %3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "r" ((USItype) (ah)), \ + "rI" ((USItype) (bh)), \ + "r" ((USItype) (al)), \ + "rI" ((USItype) (bl)) __CLOBBER_CC) +# if defined(__ARM_ARCH_2__) || defined(__ARM_ARCH_2A__) \ + || defined(__ARM_ARCH_3__) +# define umul_ppmm(xh, xl, a, b) \ + do { \ + register USItype __t0, __t1, __t2; \ + __asm__ ("%@ Inlined umul_ppmm\n" \ + " mov %2, %5, lsr #16\n" \ + " mov %0, %6, lsr #16\n" \ + " bic %3, %5, %2, lsl #16\n" \ + " bic %4, %6, %0, lsl #16\n" \ + " mul %1, %3, %4\n" \ + " mul %4, %2, %4\n" \ + " mul %3, %0, %3\n" \ + " mul %0, %2, %0\n" \ + " adds %3, %4, %3\n" \ + " addcs %0, %0, #65536\n" \ + " adds %1, %1, %3, lsl #16\n" \ + " adc %0, %0, %3, lsr #16" \ + : "=&r" ((USItype) (xh)), \ + "=r" ((USItype) (xl)), \ + "=&r" (__t0), "=&r" (__t1), "=r" (__t2) \ + : "r" ((USItype) (a)), \ + "r" ((USItype) (b)) __CLOBBER_CC ); \ + } while (0) +# define UMUL_TIME 20 +# else +# define umul_ppmm(xh, xl, a, b) \ + do { \ + /* Generate umull, under compiler control. */ \ + register UDItype __t0 = (UDItype)(USItype)(a) * (USItype)(b); \ + (xl) = (USItype)__t0; \ + (xh) = (USItype)(__t0 >> 32); \ + } while (0) +# define UMUL_TIME 3 +# endif +# define UDIV_TIME 100 +#endif /* __arm__ */ + +#if defined(__arm__) +/* Let gcc decide how best to implement count_leading_zeros. */ +#define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X)) +#define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctz (X)) +#define COUNT_LEADING_ZEROS_0 32 +#endif + +#if defined (__AVR__) + +#if W_TYPE_SIZE == 16 +#define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X)) +#define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctz (X)) +#define COUNT_LEADING_ZEROS_0 16 +#endif /* W_TYPE_SIZE == 16 */ + +#if W_TYPE_SIZE == 32 +#define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzl (X)) +#define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctzl (X)) +#define COUNT_LEADING_ZEROS_0 32 +#endif /* W_TYPE_SIZE == 32 */ + +#if W_TYPE_SIZE == 64 +#define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clzll (X)) +#define count_trailing_zeros(COUNT,X) ((COUNT) = __builtin_ctzll (X)) +#define COUNT_LEADING_ZEROS_0 64 +#endif /* W_TYPE_SIZE == 64 */ + +#endif /* defined (__AVR__) */ + +#if defined (__CRIS__) + +#if __CRIS_arch_version >= 3 +#define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clz (X)) +#define COUNT_LEADING_ZEROS_0 32 +#endif /* __CRIS_arch_version >= 3 */ + +#if __CRIS_arch_version >= 8 +#define count_trailing_zeros(COUNT, X) ((COUNT) = __builtin_ctz (X)) +#endif /* __CRIS_arch_version >= 8 */ + +#if __CRIS_arch_version >= 10 +#define __umulsidi3(u,v) ((UDItype)(USItype) (u) * (UDItype)(USItype) (v)) +#else +#define __umulsidi3 __umulsidi3 +extern UDItype __umulsidi3 (USItype, USItype); +#endif /* __CRIS_arch_version >= 10 */ + +#define umul_ppmm(w1, w0, u, v) \ + do { \ + UDItype __x = __umulsidi3 (u, v); \ + (w0) = (USItype) (__x); \ + (w1) = (USItype) (__x >> 32); \ + } while (0) + +/* FIXME: defining add_ssaaaa and sub_ddmmss should be advantageous for + DFmode ("double" intrinsics, avoiding two of the three insns handling + carry), but defining them as open-code C composing and doing the + operation in DImode (UDImode) shows that the DImode needs work: + register pressure from requiring neighboring registers and the + traffic to and from them come to dominate, in the 4.7 series. */ + +#endif /* defined (__CRIS__) */ + +#if defined (__hppa) && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("add %4,%5,%1\n\taddc %2,%3,%0" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "%rM" ((USItype) (ah)), \ + "rM" ((USItype) (bh)), \ + "%rM" ((USItype) (al)), \ + "rM" ((USItype) (bl))) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("sub %4,%5,%1\n\tsubb %2,%3,%0" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "rM" ((USItype) (ah)), \ + "rM" ((USItype) (bh)), \ + "rM" ((USItype) (al)), \ + "rM" ((USItype) (bl))) +#if defined (_PA_RISC1_1) +#define umul_ppmm(w1, w0, u, v) \ + do { \ + union \ + { \ + UDItype __f; \ + struct {USItype __w1, __w0;} __w1w0; \ + } __t; \ + __asm__ ("xmpyu %1,%2,%0" \ + : "=x" (__t.__f) \ + : "x" ((USItype) (u)), \ + "x" ((USItype) (v))); \ + (w1) = __t.__w1w0.__w1; \ + (w0) = __t.__w1w0.__w0; \ + } while (0) +#define UMUL_TIME 8 +#else +#define UMUL_TIME 30 +#endif +#define UDIV_TIME 40 +#define count_leading_zeros(count, x) \ + do { \ + USItype __tmp; \ + __asm__ ( \ + "ldi 1,%0\n" \ +" extru,= %1,15,16,%%r0 ; Bits 31..16 zero?\n" \ +" extru,tr %1,15,16,%1 ; No. Shift down, skip add.\n"\ +" ldo 16(%0),%0 ; Yes. Perform add.\n" \ +" extru,= %1,23,8,%%r0 ; Bits 15..8 zero?\n" \ +" extru,tr %1,23,8,%1 ; No. Shift down, skip add.\n"\ +" ldo 8(%0),%0 ; Yes. Perform add.\n" \ +" extru,= %1,27,4,%%r0 ; Bits 7..4 zero?\n" \ +" extru,tr %1,27,4,%1 ; No. Shift down, skip add.\n"\ +" ldo 4(%0),%0 ; Yes. Perform add.\n" \ +" extru,= %1,29,2,%%r0 ; Bits 3..2 zero?\n" \ +" extru,tr %1,29,2,%1 ; No. Shift down, skip add.\n"\ +" ldo 2(%0),%0 ; Yes. Perform add.\n" \ +" extru %1,30,1,%1 ; Extract bit 1.\n" \ +" sub %0,%1,%0 ; Subtract it.\n" \ + : "=r" (count), "=r" (__tmp) : "1" (x)); \ + } while (0) +#endif + +#if (defined (__i370__) || defined (__s390__) || defined (__mvs__)) && W_TYPE_SIZE == 32 +#if !defined (__zarch__) +#define smul_ppmm(xh, xl, m0, m1) \ + do { \ + union {DItype __ll; \ + struct {USItype __h, __l;} __i; \ + } __x; \ + __asm__ ("lr %N0,%1\n\tmr %0,%2" \ + : "=&r" (__x.__ll) \ + : "r" (m0), "r" (m1)); \ + (xh) = __x.__i.__h; (xl) = __x.__i.__l; \ + } while (0) +#define sdiv_qrnnd(q, r, n1, n0, d) \ + do { \ + union {DItype __ll; \ + struct {USItype __h, __l;} __i; \ + } __x; \ + __x.__i.__h = n1; __x.__i.__l = n0; \ + __asm__ ("dr %0,%2" \ + : "=r" (__x.__ll) \ + : "0" (__x.__ll), "r" (d)); \ + (q) = __x.__i.__l; (r) = __x.__i.__h; \ + } while (0) +#else +#define smul_ppmm(xh, xl, m0, m1) \ + do { \ + register SItype __r0 __asm__ ("0"); \ + register SItype __r1 __asm__ ("1") = (m0); \ + \ + __asm__ ("mr\t%%r0,%3" \ + : "=r" (__r0), "=r" (__r1) \ + : "r" (__r1), "r" (m1)); \ + (xh) = __r0; (xl) = __r1; \ + } while (0) + +#define sdiv_qrnnd(q, r, n1, n0, d) \ + do { \ + register SItype __r0 __asm__ ("0") = (n1); \ + register SItype __r1 __asm__ ("1") = (n0); \ + \ + __asm__ ("dr\t%%r0,%4" \ + : "=r" (__r0), "=r" (__r1) \ + : "r" (__r0), "r" (__r1), "r" (d)); \ + (q) = __r1; (r) = __r0; \ + } while (0) +#endif /* __zarch__ */ +#endif + +#if (defined (__i386__) || defined (__i486__)) && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("add{l} {%5,%1|%1,%5}\n\tadc{l} {%3,%0|%0,%3}" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "%0" ((USItype) (ah)), \ + "g" ((USItype) (bh)), \ + "%1" ((USItype) (al)), \ + "g" ((USItype) (bl))) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("sub{l} {%5,%1|%1,%5}\n\tsbb{l} {%3,%0|%0,%3}" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "0" ((USItype) (ah)), \ + "g" ((USItype) (bh)), \ + "1" ((USItype) (al)), \ + "g" ((USItype) (bl))) +#define umul_ppmm(w1, w0, u, v) \ + __asm__ ("mul{l} %3" \ + : "=a" ((USItype) (w0)), \ + "=d" ((USItype) (w1)) \ + : "%0" ((USItype) (u)), \ + "rm" ((USItype) (v))) +#define udiv_qrnnd(q, r, n1, n0, dv) \ + __asm__ ("div{l} %4" \ + : "=a" ((USItype) (q)), \ + "=d" ((USItype) (r)) \ + : "0" ((USItype) (n0)), \ + "1" ((USItype) (n1)), \ + "rm" ((USItype) (dv))) +#define count_leading_zeros(count, x) ((count) = __builtin_clz (x)) +#define count_trailing_zeros(count, x) ((count) = __builtin_ctz (x)) +#define UMUL_TIME 40 +#define UDIV_TIME 40 +#endif /* 80x86 */ + +#if defined (__x86_64__) && W_TYPE_SIZE == 64 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("add{q} {%5,%1|%1,%5}\n\tadc{q} {%3,%0|%0,%3}" \ + : "=r" ((UDItype) (sh)), \ + "=&r" ((UDItype) (sl)) \ + : "%0" ((UDItype) (ah)), \ + "rme" ((UDItype) (bh)), \ + "%1" ((UDItype) (al)), \ + "rme" ((UDItype) (bl))) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("sub{q} {%5,%1|%1,%5}\n\tsbb{q} {%3,%0|%0,%3}" \ + : "=r" ((UDItype) (sh)), \ + "=&r" ((UDItype) (sl)) \ + : "0" ((UDItype) (ah)), \ + "rme" ((UDItype) (bh)), \ + "1" ((UDItype) (al)), \ + "rme" ((UDItype) (bl))) +#define umul_ppmm(w1, w0, u, v) \ + __asm__ ("mul{q} %3" \ + : "=a" ((UDItype) (w0)), \ + "=d" ((UDItype) (w1)) \ + : "%0" ((UDItype) (u)), \ + "rm" ((UDItype) (v))) +#define udiv_qrnnd(q, r, n1, n0, dv) \ + __asm__ ("div{q} %4" \ + : "=a" ((UDItype) (q)), \ + "=d" ((UDItype) (r)) \ + : "0" ((UDItype) (n0)), \ + "1" ((UDItype) (n1)), \ + "rm" ((UDItype) (dv))) +#define count_leading_zeros(count, x) ((count) = __builtin_clzll (x)) +#define count_trailing_zeros(count, x) ((count) = __builtin_ctzll (x)) +#define UMUL_TIME 40 +#define UDIV_TIME 40 +#endif /* x86_64 */ + +#if defined (__i960__) && W_TYPE_SIZE == 32 +#define umul_ppmm(w1, w0, u, v) \ + ({union {UDItype __ll; \ + struct {USItype __l, __h;} __i; \ + } __xx; \ + __asm__ ("emul %2,%1,%0" \ + : "=d" (__xx.__ll) \ + : "%dI" ((USItype) (u)), \ + "dI" ((USItype) (v))); \ + (w1) = __xx.__i.__h; (w0) = __xx.__i.__l;}) +#define __umulsidi3(u, v) \ + ({UDItype __w; \ + __asm__ ("emul %2,%1,%0" \ + : "=d" (__w) \ + : "%dI" ((USItype) (u)), \ + "dI" ((USItype) (v))); \ + __w; }) +#endif /* __i960__ */ + +#if defined (__ia64) && W_TYPE_SIZE == 64 +/* This form encourages gcc (pre-release 3.4 at least) to emit predicated + "sub r=r,r" and "sub r=r,r,1", giving a 2 cycle latency. The generic + code using "al>= _c; \ + if (_x >= 1 << 4) \ + _x >>= 4, _c += 4; \ + if (_x >= 1 << 2) \ + _x >>= 2, _c += 2; \ + _c += _x >> 1; \ + (count) = W_TYPE_SIZE - 1 - _c; \ + } while (0) +/* similar to what gcc does for __builtin_ffs, but 0 based rather than 1 + based, and we don't need a special case for x==0 here */ +#define count_trailing_zeros(count, x) \ + do { \ + UWtype __ctz_x = (x); \ + __asm__ ("popcnt %0 = %1" \ + : "=r" (count) \ + : "r" ((__ctz_x-1) & ~__ctz_x)); \ + } while (0) +#define UMUL_TIME 14 +#endif + +#if defined (__M32R__) && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + /* The cmp clears the condition bit. */ \ + __asm__ ("cmp %0,%0\n\taddx %1,%5\n\taddx %0,%3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "0" ((USItype) (ah)), \ + "r" ((USItype) (bh)), \ + "1" ((USItype) (al)), \ + "r" ((USItype) (bl)) \ + : "cbit") +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + /* The cmp clears the condition bit. */ \ + __asm__ ("cmp %0,%0\n\tsubx %1,%5\n\tsubx %0,%3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "0" ((USItype) (ah)), \ + "r" ((USItype) (bh)), \ + "1" ((USItype) (al)), \ + "r" ((USItype) (bl)) \ + : "cbit") +#endif /* __M32R__ */ + +#if defined (__mc68000__) && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("add%.l %5,%1\n\taddx%.l %3,%0" \ + : "=d" ((USItype) (sh)), \ + "=&d" ((USItype) (sl)) \ + : "%0" ((USItype) (ah)), \ + "d" ((USItype) (bh)), \ + "%1" ((USItype) (al)), \ + "g" ((USItype) (bl))) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("sub%.l %5,%1\n\tsubx%.l %3,%0" \ + : "=d" ((USItype) (sh)), \ + "=&d" ((USItype) (sl)) \ + : "0" ((USItype) (ah)), \ + "d" ((USItype) (bh)), \ + "1" ((USItype) (al)), \ + "g" ((USItype) (bl))) + +/* The '020, '030, '040, '060 and CPU32 have 32x32->64 and 64/32->32q-32r. */ +#if (defined (__mc68020__) && !defined (__mc68060__)) +#define umul_ppmm(w1, w0, u, v) \ + __asm__ ("mulu%.l %3,%1:%0" \ + : "=d" ((USItype) (w0)), \ + "=d" ((USItype) (w1)) \ + : "%0" ((USItype) (u)), \ + "dmi" ((USItype) (v))) +#define UMUL_TIME 45 +#define udiv_qrnnd(q, r, n1, n0, d) \ + __asm__ ("divu%.l %4,%1:%0" \ + : "=d" ((USItype) (q)), \ + "=d" ((USItype) (r)) \ + : "0" ((USItype) (n0)), \ + "1" ((USItype) (n1)), \ + "dmi" ((USItype) (d))) +#define UDIV_TIME 90 +#define sdiv_qrnnd(q, r, n1, n0, d) \ + __asm__ ("divs%.l %4,%1:%0" \ + : "=d" ((USItype) (q)), \ + "=d" ((USItype) (r)) \ + : "0" ((USItype) (n0)), \ + "1" ((USItype) (n1)), \ + "dmi" ((USItype) (d))) + +#elif defined (__mcoldfire__) /* not mc68020 */ + +#define umul_ppmm(xh, xl, a, b) \ + __asm__ ("| Inlined umul_ppmm\n" \ + " move%.l %2,%/d0\n" \ + " move%.l %3,%/d1\n" \ + " move%.l %/d0,%/d2\n" \ + " swap %/d0\n" \ + " move%.l %/d1,%/d3\n" \ + " swap %/d1\n" \ + " move%.w %/d2,%/d4\n" \ + " mulu %/d3,%/d4\n" \ + " mulu %/d1,%/d2\n" \ + " mulu %/d0,%/d3\n" \ + " mulu %/d0,%/d1\n" \ + " move%.l %/d4,%/d0\n" \ + " clr%.w %/d0\n" \ + " swap %/d0\n" \ + " add%.l %/d0,%/d2\n" \ + " add%.l %/d3,%/d2\n" \ + " jcc 1f\n" \ + " add%.l %#65536,%/d1\n" \ + "1: swap %/d2\n" \ + " moveq %#0,%/d0\n" \ + " move%.w %/d2,%/d0\n" \ + " move%.w %/d4,%/d2\n" \ + " move%.l %/d2,%1\n" \ + " add%.l %/d1,%/d0\n" \ + " move%.l %/d0,%0" \ + : "=g" ((USItype) (xh)), \ + "=g" ((USItype) (xl)) \ + : "g" ((USItype) (a)), \ + "g" ((USItype) (b)) \ + : "d0", "d1", "d2", "d3", "d4") +#define UMUL_TIME 100 +#define UDIV_TIME 400 +#else /* not ColdFire */ +/* %/ inserts REGISTER_PREFIX, %# inserts IMMEDIATE_PREFIX. */ +#define umul_ppmm(xh, xl, a, b) \ + __asm__ ("| Inlined umul_ppmm\n" \ + " move%.l %2,%/d0\n" \ + " move%.l %3,%/d1\n" \ + " move%.l %/d0,%/d2\n" \ + " swap %/d0\n" \ + " move%.l %/d1,%/d3\n" \ + " swap %/d1\n" \ + " move%.w %/d2,%/d4\n" \ + " mulu %/d3,%/d4\n" \ + " mulu %/d1,%/d2\n" \ + " mulu %/d0,%/d3\n" \ + " mulu %/d0,%/d1\n" \ + " move%.l %/d4,%/d0\n" \ + " eor%.w %/d0,%/d0\n" \ + " swap %/d0\n" \ + " add%.l %/d0,%/d2\n" \ + " add%.l %/d3,%/d2\n" \ + " jcc 1f\n" \ + " add%.l %#65536,%/d1\n" \ + "1: swap %/d2\n" \ + " moveq %#0,%/d0\n" \ + " move%.w %/d2,%/d0\n" \ + " move%.w %/d4,%/d2\n" \ + " move%.l %/d2,%1\n" \ + " add%.l %/d1,%/d0\n" \ + " move%.l %/d0,%0" \ + : "=g" ((USItype) (xh)), \ + "=g" ((USItype) (xl)) \ + : "g" ((USItype) (a)), \ + "g" ((USItype) (b)) \ + : "d0", "d1", "d2", "d3", "d4") +#define UMUL_TIME 100 +#define UDIV_TIME 400 + +#endif /* not mc68020 */ + +/* The '020, '030, '040 and '060 have bitfield insns. + cpu32 disguises as a 68020, but lacks them. */ +#if defined (__mc68020__) && !defined (__mcpu32__) +#define count_leading_zeros(count, x) \ + __asm__ ("bfffo %1{%b2:%b2},%0" \ + : "=d" ((USItype) (count)) \ + : "od" ((USItype) (x)), "n" (0)) +/* Some ColdFire architectures have a ff1 instruction supported via + __builtin_clz. */ +#elif defined (__mcfisaaplus__) || defined (__mcfisac__) +#define count_leading_zeros(count,x) ((count) = __builtin_clz (x)) +#define COUNT_LEADING_ZEROS_0 32 +#endif +#endif /* mc68000 */ + +#if defined (__m88000__) && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("addu.co %1,%r4,%r5\n\taddu.ci %0,%r2,%r3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "%rJ" ((USItype) (ah)), \ + "rJ" ((USItype) (bh)), \ + "%rJ" ((USItype) (al)), \ + "rJ" ((USItype) (bl))) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("subu.co %1,%r4,%r5\n\tsubu.ci %0,%r2,%r3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "rJ" ((USItype) (ah)), \ + "rJ" ((USItype) (bh)), \ + "rJ" ((USItype) (al)), \ + "rJ" ((USItype) (bl))) +#define count_leading_zeros(count, x) \ + do { \ + USItype __cbtmp; \ + __asm__ ("ff1 %0,%1" \ + : "=r" (__cbtmp) \ + : "r" ((USItype) (x))); \ + (count) = __cbtmp ^ 31; \ + } while (0) +#define COUNT_LEADING_ZEROS_0 63 /* sic */ +#if defined (__mc88110__) +#define umul_ppmm(wh, wl, u, v) \ + do { \ + union {UDItype __ll; \ + struct {USItype __h, __l;} __i; \ + } __xx; \ + __asm__ ("mulu.d %0,%1,%2" \ + : "=r" (__xx.__ll) \ + : "r" ((USItype) (u)), \ + "r" ((USItype) (v))); \ + (wh) = __xx.__i.__h; \ + (wl) = __xx.__i.__l; \ + } while (0) +#define udiv_qrnnd(q, r, n1, n0, d) \ + ({union {UDItype __ll; \ + struct {USItype __h, __l;} __i; \ + } __xx; \ + USItype __q; \ + __xx.__i.__h = (n1); __xx.__i.__l = (n0); \ + __asm__ ("divu.d %0,%1,%2" \ + : "=r" (__q) \ + : "r" (__xx.__ll), \ + "r" ((USItype) (d))); \ + (r) = (n0) - __q * (d); (q) = __q; }) +#define UMUL_TIME 5 +#define UDIV_TIME 25 +#else +#define UMUL_TIME 17 +#define UDIV_TIME 150 +#endif /* __mc88110__ */ +#endif /* __m88000__ */ + +#if defined (__mn10300__) +# if defined (__AM33__) +# define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X)) +# define umul_ppmm(w1, w0, u, v) \ + asm("mulu %3,%2,%1,%0" : "=r"(w0), "=r"(w1) : "r"(u), "r"(v)) +# define smul_ppmm(w1, w0, u, v) \ + asm("mul %3,%2,%1,%0" : "=r"(w0), "=r"(w1) : "r"(u), "r"(v)) +# else +# define umul_ppmm(w1, w0, u, v) \ + asm("nop; nop; mulu %3,%0" : "=d"(w0), "=z"(w1) : "%0"(u), "d"(v)) +# define smul_ppmm(w1, w0, u, v) \ + asm("nop; nop; mul %3,%0" : "=d"(w0), "=z"(w1) : "%0"(u), "d"(v)) +# endif +# define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + do { \ + DWunion __s, __a, __b; \ + __a.s.low = (al); __a.s.high = (ah); \ + __b.s.low = (bl); __b.s.high = (bh); \ + __s.ll = __a.ll + __b.ll; \ + (sl) = __s.s.low; (sh) = __s.s.high; \ + } while (0) +# define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + do { \ + DWunion __s, __a, __b; \ + __a.s.low = (al); __a.s.high = (ah); \ + __b.s.low = (bl); __b.s.high = (bh); \ + __s.ll = __a.ll - __b.ll; \ + (sl) = __s.s.low; (sh) = __s.s.high; \ + } while (0) +# define udiv_qrnnd(q, r, nh, nl, d) \ + asm("divu %2,%0" : "=D"(q), "=z"(r) : "D"(d), "0"(nl), "1"(nh)) +# define sdiv_qrnnd(q, r, nh, nl, d) \ + asm("div %2,%0" : "=D"(q), "=z"(r) : "D"(d), "0"(nl), "1"(nh)) +# define UMUL_TIME 3 +# define UDIV_TIME 38 +#endif + +#if defined (__mips__) && W_TYPE_SIZE == 32 +#define umul_ppmm(w1, w0, u, v) \ + do { \ + UDItype __x = (UDItype) (USItype) (u) * (USItype) (v); \ + (w1) = (USItype) (__x >> 32); \ + (w0) = (USItype) (__x); \ + } while (0) +#define UMUL_TIME 10 +#define UDIV_TIME 100 + +#if (__mips == 32 || __mips == 64) && ! defined (__mips16) +#define count_leading_zeros(COUNT,X) ((COUNT) = __builtin_clz (X)) +#define COUNT_LEADING_ZEROS_0 32 +#endif +#endif /* __mips__ */ + +/* FIXME: We should test _IBMR2 here when we add assembly support for the + system vendor compilers. + FIXME: What's needed for gcc PowerPC VxWorks? __vxworks__ is not good + enough, since that hits ARM and m68k too. */ +#if (defined (_ARCH_PPC) /* AIX */ \ + || defined (__powerpc__) /* gcc */ \ + || defined (__POWERPC__) /* BEOS */ \ + || defined (__ppc__) /* Darwin */ \ + || (defined (PPC) && ! defined (CPU_FAMILY)) /* gcc 2.7.x GNU&SysV */ \ + || (defined (PPC) && defined (CPU_FAMILY) /* VxWorks */ \ + && CPU_FAMILY == PPC) \ + ) && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + do { \ + if (__builtin_constant_p (bh) && (bh) == 0) \ + __asm__ ("add%I4c %1,%3,%4\n\taddze %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\ + else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \ + __asm__ ("add%I4c %1,%3,%4\n\taddme %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\ + else \ + __asm__ ("add%I5c %1,%4,%5\n\tadde %0,%2,%3" \ + : "=r" (sh), "=&r" (sl) \ + : "%r" (ah), "r" (bh), "%r" (al), "rI" (bl)); \ + } while (0) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + do { \ + if (__builtin_constant_p (ah) && (ah) == 0) \ + __asm__ ("subf%I3c %1,%4,%3\n\tsubfze %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\ + else if (__builtin_constant_p (ah) && (ah) == ~(USItype) 0) \ + __asm__ ("subf%I3c %1,%4,%3\n\tsubfme %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\ + else if (__builtin_constant_p (bh) && (bh) == 0) \ + __asm__ ("subf%I3c %1,%4,%3\n\taddme %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\ + else if (__builtin_constant_p (bh) && (bh) == ~(USItype) 0) \ + __asm__ ("subf%I3c %1,%4,%3\n\taddze %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\ + else \ + __asm__ ("subf%I4c %1,%5,%4\n\tsubfe %0,%3,%2" \ + : "=r" (sh), "=&r" (sl) \ + : "r" (ah), "r" (bh), "rI" (al), "r" (bl)); \ + } while (0) +#define count_leading_zeros(count, x) \ + __asm__ ("cntlzw %0,%1" : "=r" (count) : "r" (x)) +#define COUNT_LEADING_ZEROS_0 32 +#if defined (_ARCH_PPC) || defined (__powerpc__) || defined (__POWERPC__) \ + || defined (__ppc__) \ + || (defined (PPC) && ! defined (CPU_FAMILY)) /* gcc 2.7.x GNU&SysV */ \ + || (defined (PPC) && defined (CPU_FAMILY) /* VxWorks */ \ + && CPU_FAMILY == PPC) +#define umul_ppmm(ph, pl, m0, m1) \ + do { \ + USItype __m0 = (m0), __m1 = (m1); \ + __asm__ ("mulhwu %0,%1,%2" : "=r" (ph) : "%r" (m0), "r" (m1)); \ + (pl) = __m0 * __m1; \ + } while (0) +#define UMUL_TIME 15 +#define smul_ppmm(ph, pl, m0, m1) \ + do { \ + SItype __m0 = (m0), __m1 = (m1); \ + __asm__ ("mulhw %0,%1,%2" : "=r" (ph) : "%r" (m0), "r" (m1)); \ + (pl) = __m0 * __m1; \ + } while (0) +#define SMUL_TIME 14 +#define UDIV_TIME 120 +#endif +#endif /* 32-bit POWER architecture variants. */ + +/* We should test _IBMR2 here when we add assembly support for the system + vendor compilers. */ +#if (defined (_ARCH_PPC64) || defined (__powerpc64__)) && W_TYPE_SIZE == 64 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + do { \ + if (__builtin_constant_p (bh) && (bh) == 0) \ + __asm__ ("add%I4c %1,%3,%4\n\taddze %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\ + else if (__builtin_constant_p (bh) && (bh) == ~(UDItype) 0) \ + __asm__ ("add%I4c %1,%3,%4\n\taddme %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (ah), "%r" (al), "rI" (bl));\ + else \ + __asm__ ("add%I5c %1,%4,%5\n\tadde %0,%2,%3" \ + : "=r" (sh), "=&r" (sl) \ + : "%r" (ah), "r" (bh), "%r" (al), "rI" (bl)); \ + } while (0) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + do { \ + if (__builtin_constant_p (ah) && (ah) == 0) \ + __asm__ ("subf%I3c %1,%4,%3\n\tsubfze %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\ + else if (__builtin_constant_p (ah) && (ah) == ~(UDItype) 0) \ + __asm__ ("subf%I3c %1,%4,%3\n\tsubfme %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (bh), "rI" (al), "r" (bl));\ + else if (__builtin_constant_p (bh) && (bh) == 0) \ + __asm__ ("subf%I3c %1,%4,%3\n\taddme %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\ + else if (__builtin_constant_p (bh) && (bh) == ~(UDItype) 0) \ + __asm__ ("subf%I3c %1,%4,%3\n\taddze %0,%2" \ + : "=r" (sh), "=&r" (sl) : "r" (ah), "rI" (al), "r" (bl));\ + else \ + __asm__ ("subf%I4c %1,%5,%4\n\tsubfe %0,%3,%2" \ + : "=r" (sh), "=&r" (sl) \ + : "r" (ah), "r" (bh), "rI" (al), "r" (bl)); \ + } while (0) +#define count_leading_zeros(count, x) \ + __asm__ ("cntlzd %0,%1" : "=r" (count) : "r" (x)) +#define COUNT_LEADING_ZEROS_0 64 +#define umul_ppmm(ph, pl, m0, m1) \ + do { \ + UDItype __m0 = (m0), __m1 = (m1); \ + __asm__ ("mulhdu %0,%1,%2" : "=r" (ph) : "%r" (m0), "r" (m1)); \ + (pl) = __m0 * __m1; \ + } while (0) +#define UMUL_TIME 15 +#define smul_ppmm(ph, pl, m0, m1) \ + do { \ + DItype __m0 = (m0), __m1 = (m1); \ + __asm__ ("mulhd %0,%1,%2" : "=r" (ph) : "%r" (m0), "r" (m1)); \ + (pl) = __m0 * __m1; \ + } while (0) +#define SMUL_TIME 14 /* ??? */ +#define UDIV_TIME 120 /* ??? */ +#endif /* 64-bit PowerPC. */ + +#if defined (__ibm032__) /* RT/ROMP */ && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("a %1,%5\n\tae %0,%3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "%0" ((USItype) (ah)), \ + "r" ((USItype) (bh)), \ + "%1" ((USItype) (al)), \ + "r" ((USItype) (bl))) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("s %1,%5\n\tse %0,%3" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "0" ((USItype) (ah)), \ + "r" ((USItype) (bh)), \ + "1" ((USItype) (al)), \ + "r" ((USItype) (bl))) +#define umul_ppmm(ph, pl, m0, m1) \ + do { \ + USItype __m0 = (m0), __m1 = (m1); \ + __asm__ ( \ + "s r2,r2\n" \ +" mts r10,%2\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" m r2,%3\n" \ +" cas %0,r2,r0\n" \ +" mfs r10,%1" \ + : "=r" ((USItype) (ph)), \ + "=r" ((USItype) (pl)) \ + : "%r" (__m0), \ + "r" (__m1) \ + : "r2"); \ + (ph) += ((((SItype) __m0 >> 31) & __m1) \ + + (((SItype) __m1 >> 31) & __m0)); \ + } while (0) +#define UMUL_TIME 20 +#define UDIV_TIME 200 +#define count_leading_zeros(count, x) \ + do { \ + if ((x) >= 0x10000) \ + __asm__ ("clz %0,%1" \ + : "=r" ((USItype) (count)) \ + : "r" ((USItype) (x) >> 16)); \ + else \ + { \ + __asm__ ("clz %0,%1" \ + : "=r" ((USItype) (count)) \ + : "r" ((USItype) (x))); \ + (count) += 16; \ + } \ + } while (0) +#endif + +#if defined(__riscv) +#ifdef __riscv_mul +#define __umulsidi3(u,v) ((UDWtype)(UWtype)(u) * (UWtype)(v)) +#define __muluw3(a, b) ((UWtype)(a) * (UWtype)(b)) +#else +#if __riscv_xlen == 32 + #define MULUW3 "call __mulsi3" +#elif __riscv_xlen == 64 + #define MULUW3 "call __muldi3" +#else +#error unsupport xlen +#endif /* __riscv_xlen */ +/* We rely on the fact that MULUW3 doesn't clobber the t-registers. + It can get better register allocation result. */ +#define __muluw3(a, b) \ + ({ \ + register UWtype __op0 asm ("a0") = a; \ + register UWtype __op1 asm ("a1") = b; \ + asm volatile (MULUW3 \ + : "+r" (__op0), "+r" (__op1) \ + : \ + : "ra", "a2", "a3"); \ + __op0; \ + }) +#endif /* __riscv_mul */ +#define umul_ppmm(w1, w0, u, v) \ + do { \ + UWtype __x0, __x1, __x2, __x3; \ + UHWtype __ul, __vl, __uh, __vh; \ + \ + __ul = __ll_lowpart (u); \ + __uh = __ll_highpart (u); \ + __vl = __ll_lowpart (v); \ + __vh = __ll_highpart (v); \ + \ + __x0 = __muluw3 (__ul, __vl); \ + __x1 = __muluw3 (__ul, __vh); \ + __x2 = __muluw3 (__uh, __vl); \ + __x3 = __muluw3 (__uh, __vh); \ + \ + __x1 += __ll_highpart (__x0);/* this can't give carry */ \ + __x1 += __x2; /* but this indeed can */ \ + if (__x1 < __x2) /* did we get it? */ \ + __x3 += __ll_B; /* yes, add it in the proper pos. */ \ + \ + (w1) = __x3 + __ll_highpart (__x1); \ + (w0) = __ll_lowpart (__x1) * __ll_B + __ll_lowpart (__x0); \ + } while (0) +#endif /* __riscv */ + +#if defined(__sh__) && W_TYPE_SIZE == 32 +#ifndef __sh1__ +#define umul_ppmm(w1, w0, u, v) \ + __asm__ ( \ + "dmulu.l %2,%3\n\tsts%M1 macl,%1\n\tsts%M0 mach,%0" \ + : "=r<" ((USItype)(w1)), \ + "=r<" ((USItype)(w0)) \ + : "r" ((USItype)(u)), \ + "r" ((USItype)(v)) \ + : "macl", "mach") +#define UMUL_TIME 5 +#endif + +/* This is the same algorithm as __udiv_qrnnd_c. */ +#define UDIV_NEEDS_NORMALIZATION 1 + +#ifdef __FDPIC__ +/* FDPIC needs a special version of the asm fragment to extract the + code address from the function descriptor. __udiv_qrnnd_16 is + assumed to be local and not to use the GOT, so loading r12 is + not needed. */ +#define udiv_qrnnd(q, r, n1, n0, d) \ + do { \ + extern UWtype __udiv_qrnnd_16 (UWtype, UWtype) \ + __attribute__ ((visibility ("hidden"))); \ + /* r0: rn r1: qn */ /* r0: n1 r4: n0 r5: d r6: d1 */ /* r2: __m */ \ + __asm__ ( \ + "mov%M4 %4,r5\n" \ +" swap.w %3,r4\n" \ +" swap.w r5,r6\n" \ +" mov.l @%5,r2\n" \ +" jsr @r2\n" \ +" shll16 r6\n" \ +" swap.w r4,r4\n" \ +" mov.l @%5,r2\n" \ +" jsr @r2\n" \ +" swap.w r1,%0\n" \ +" or r1,%0" \ + : "=r" (q), "=&z" (r) \ + : "1" (n1), "r" (n0), "rm" (d), "r" (&__udiv_qrnnd_16) \ + : "r1", "r2", "r4", "r5", "r6", "pr", "t"); \ + } while (0) +#else +#define udiv_qrnnd(q, r, n1, n0, d) \ + do { \ + extern UWtype __udiv_qrnnd_16 (UWtype, UWtype) \ + __attribute__ ((visibility ("hidden"))); \ + /* r0: rn r1: qn */ /* r0: n1 r4: n0 r5: d r6: d1 */ /* r2: __m */ \ + __asm__ ( \ + "mov%M4 %4,r5\n" \ +" swap.w %3,r4\n" \ +" swap.w r5,r6\n" \ +" jsr @%5\n" \ +" shll16 r6\n" \ +" swap.w r4,r4\n" \ +" jsr @%5\n" \ +" swap.w r1,%0\n" \ +" or r1,%0" \ + : "=r" (q), "=&z" (r) \ + : "1" (n1), "r" (n0), "rm" (d), "r" (&__udiv_qrnnd_16) \ + : "r1", "r2", "r4", "r5", "r6", "pr", "t"); \ + } while (0) +#endif /* __FDPIC__ */ + +#define UDIV_TIME 80 + +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("clrt;subc %5,%1; subc %4,%0" \ + : "=r" (sh), "=r" (sl) \ + : "0" (ah), "1" (al), "r" (bh), "r" (bl) : "t") + +#endif /* __sh__ */ + +#if defined (__sparc__) && !defined (__arch64__) && !defined (__sparcv9) \ + && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("addcc %r4,%5,%1\n\taddx %r2,%3,%0" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "%rJ" ((USItype) (ah)), \ + "rI" ((USItype) (bh)), \ + "%rJ" ((USItype) (al)), \ + "rI" ((USItype) (bl)) \ + __CLOBBER_CC) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("subcc %r4,%5,%1\n\tsubx %r2,%3,%0" \ + : "=r" ((USItype) (sh)), \ + "=&r" ((USItype) (sl)) \ + : "rJ" ((USItype) (ah)), \ + "rI" ((USItype) (bh)), \ + "rJ" ((USItype) (al)), \ + "rI" ((USItype) (bl)) \ + __CLOBBER_CC) +#if defined (__sparc_v9__) +#define umul_ppmm(w1, w0, u, v) \ + do { \ + register USItype __g1 asm ("g1"); \ + __asm__ ("umul\t%2,%3,%1\n\t" \ + "srlx\t%1, 32, %0" \ + : "=r" ((USItype) (w1)), \ + "=r" (__g1) \ + : "r" ((USItype) (u)), \ + "r" ((USItype) (v))); \ + (w0) = __g1; \ + } while (0) +#define udiv_qrnnd(__q, __r, __n1, __n0, __d) \ + __asm__ ("mov\t%2,%%y\n\t" \ + "udiv\t%3,%4,%0\n\t" \ + "umul\t%0,%4,%1\n\t" \ + "sub\t%3,%1,%1" \ + : "=&r" ((USItype) (__q)), \ + "=&r" ((USItype) (__r)) \ + : "r" ((USItype) (__n1)), \ + "r" ((USItype) (__n0)), \ + "r" ((USItype) (__d))) +#else +#if defined (__sparc_v8__) +#define umul_ppmm(w1, w0, u, v) \ + __asm__ ("umul %2,%3,%1;rd %%y,%0" \ + : "=r" ((USItype) (w1)), \ + "=r" ((USItype) (w0)) \ + : "r" ((USItype) (u)), \ + "r" ((USItype) (v))) +#define udiv_qrnnd(__q, __r, __n1, __n0, __d) \ + __asm__ ("mov %2,%%y;nop;nop;nop;udiv %3,%4,%0;umul %0,%4,%1;sub %3,%1,%1"\ + : "=&r" ((USItype) (__q)), \ + "=&r" ((USItype) (__r)) \ + : "r" ((USItype) (__n1)), \ + "r" ((USItype) (__n0)), \ + "r" ((USItype) (__d))) +#else +#if defined (__sparclite__) +/* This has hardware multiply but not divide. It also has two additional + instructions scan (ffs from high bit) and divscc. */ +#define umul_ppmm(w1, w0, u, v) \ + __asm__ ("umul %2,%3,%1;rd %%y,%0" \ + : "=r" ((USItype) (w1)), \ + "=r" ((USItype) (w0)) \ + : "r" ((USItype) (u)), \ + "r" ((USItype) (v))) +#define udiv_qrnnd(q, r, n1, n0, d) \ + __asm__ ("! Inlined udiv_qrnnd\n" \ +" wr %%g0,%2,%%y ! Not a delayed write for sparclite\n" \ +" tst %%g0\n" \ +" divscc %3,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%%g1\n" \ +" divscc %%g1,%4,%0\n" \ +" rd %%y,%1\n" \ +" bl,a 1f\n" \ +" add %1,%4,%1\n" \ +"1: ! End of inline udiv_qrnnd" \ + : "=r" ((USItype) (q)), \ + "=r" ((USItype) (r)) \ + : "r" ((USItype) (n1)), \ + "r" ((USItype) (n0)), \ + "rI" ((USItype) (d)) \ + : "g1" __AND_CLOBBER_CC) +#define UDIV_TIME 37 +#define count_leading_zeros(count, x) \ + do { \ + __asm__ ("scan %1,1,%0" \ + : "=r" ((USItype) (count)) \ + : "r" ((USItype) (x))); \ + } while (0) +/* Early sparclites return 63 for an argument of 0, but they warn that future + implementations might change this. Therefore, leave COUNT_LEADING_ZEROS_0 + undefined. */ +#else +/* SPARC without integer multiplication and divide instructions. + (i.e. at least Sun4/20,40,60,65,75,110,260,280,330,360,380,470,490) */ +#define umul_ppmm(w1, w0, u, v) \ + __asm__ ("! Inlined umul_ppmm\n" \ +" wr %%g0,%2,%%y ! SPARC has 0-3 delay insn after a wr\n"\ +" sra %3,31,%%o5 ! Don't move this insn\n" \ +" and %2,%%o5,%%o5 ! Don't move this insn\n" \ +" andcc %%g0,0,%%g1 ! Don't move this insn\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,%3,%%g1\n" \ +" mulscc %%g1,0,%%g1\n" \ +" add %%g1,%%o5,%0\n" \ +" rd %%y,%1" \ + : "=r" ((USItype) (w1)), \ + "=r" ((USItype) (w0)) \ + : "%rI" ((USItype) (u)), \ + "r" ((USItype) (v)) \ + : "g1", "o5" __AND_CLOBBER_CC) +#define UMUL_TIME 39 /* 39 instructions */ +/* It's quite necessary to add this much assembler for the sparc. + The default udiv_qrnnd (in C) is more than 10 times slower! */ +#define udiv_qrnnd(__q, __r, __n1, __n0, __d) \ + __asm__ ("! Inlined udiv_qrnnd\n" \ +" mov 32,%%g1\n" \ +" subcc %1,%2,%%g0\n" \ +"1: bcs 5f\n" \ +" addxcc %0,%0,%0 ! shift n1n0 and a q-bit in lsb\n" \ +" sub %1,%2,%1 ! this kills msb of n\n" \ +" addx %1,%1,%1 ! so this can't give carry\n" \ +" subcc %%g1,1,%%g1\n" \ +"2: bne 1b\n" \ +" subcc %1,%2,%%g0\n" \ +" bcs 3f\n" \ +" addxcc %0,%0,%0 ! shift n1n0 and a q-bit in lsb\n" \ +" b 3f\n" \ +" sub %1,%2,%1 ! this kills msb of n\n" \ +"4: sub %1,%2,%1\n" \ +"5: addxcc %1,%1,%1\n" \ +" bcc 2b\n" \ +" subcc %%g1,1,%%g1\n" \ +"! Got carry from n. Subtract next step to cancel this carry.\n" \ +" bne 4b\n" \ +" addcc %0,%0,%0 ! shift n1n0 and a 0-bit in lsb\n" \ +" sub %1,%2,%1\n" \ +"3: xnor %0,0,%0\n" \ +" ! End of inline udiv_qrnnd" \ + : "=&r" ((USItype) (__q)), \ + "=&r" ((USItype) (__r)) \ + : "r" ((USItype) (__d)), \ + "1" ((USItype) (__n1)), \ + "0" ((USItype) (__n0)) : "g1" __AND_CLOBBER_CC) +#define UDIV_TIME (3+7*32) /* 7 instructions/iteration. 32 iterations. */ +#endif /* __sparclite__ */ +#endif /* __sparc_v8__ */ +#endif /* __sparc_v9__ */ +#endif /* sparc32 */ + +#if ((defined (__sparc__) && defined (__arch64__)) || defined (__sparcv9)) \ + && W_TYPE_SIZE == 64 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + do { \ + UDItype __carry = 0; \ + __asm__ ("addcc\t%r5,%6,%1\n\t" \ + "add\t%r3,%4,%0\n\t" \ + "movcs\t%%xcc, 1, %2\n\t" \ + "add\t%0, %2, %0" \ + : "=r" ((UDItype)(sh)), \ + "=&r" ((UDItype)(sl)), \ + "+r" (__carry) \ + : "%rJ" ((UDItype)(ah)), \ + "rI" ((UDItype)(bh)), \ + "%rJ" ((UDItype)(al)), \ + "rI" ((UDItype)(bl)) \ + __CLOBBER_CC); \ + } while (0) + +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + do { \ + UDItype __carry = 0; \ + __asm__ ("subcc\t%r5,%6,%1\n\t" \ + "sub\t%r3,%4,%0\n\t" \ + "movcs\t%%xcc, 1, %2\n\t" \ + "sub\t%0, %2, %0" \ + : "=r" ((UDItype)(sh)), \ + "=&r" ((UDItype)(sl)), \ + "+r" (__carry) \ + : "%rJ" ((UDItype)(ah)), \ + "rI" ((UDItype)(bh)), \ + "%rJ" ((UDItype)(al)), \ + "rI" ((UDItype)(bl)) \ + __CLOBBER_CC); \ + } while (0) + +#define umul_ppmm(wh, wl, u, v) \ + do { \ + UDItype tmp1, tmp2, tmp3, tmp4; \ + __asm__ __volatile__ ( \ + "srl %7,0,%3\n\t" \ + "mulx %3,%6,%1\n\t" \ + "srlx %6,32,%2\n\t" \ + "mulx %2,%3,%4\n\t" \ + "sllx %4,32,%5\n\t" \ + "srl %6,0,%3\n\t" \ + "sub %1,%5,%5\n\t" \ + "srlx %5,32,%5\n\t" \ + "addcc %4,%5,%4\n\t" \ + "srlx %7,32,%5\n\t" \ + "mulx %3,%5,%3\n\t" \ + "mulx %2,%5,%5\n\t" \ + "sethi %%hi(0x80000000),%2\n\t" \ + "addcc %4,%3,%4\n\t" \ + "srlx %4,32,%4\n\t" \ + "add %2,%2,%2\n\t" \ + "movcc %%xcc,%%g0,%2\n\t" \ + "addcc %5,%4,%5\n\t" \ + "sllx %3,32,%3\n\t" \ + "add %1,%3,%1\n\t" \ + "add %5,%2,%0" \ + : "=r" ((UDItype)(wh)), \ + "=&r" ((UDItype)(wl)), \ + "=&r" (tmp1), "=&r" (tmp2), "=&r" (tmp3), "=&r" (tmp4) \ + : "r" ((UDItype)(u)), \ + "r" ((UDItype)(v)) \ + __CLOBBER_CC); \ + } while (0) +#define UMUL_TIME 96 +#define UDIV_TIME 230 +#endif /* sparc64 */ + +#if defined (__vax__) && W_TYPE_SIZE == 32 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("addl2 %5,%1\n\tadwc %3,%0" \ + : "=g" ((USItype) (sh)), \ + "=&g" ((USItype) (sl)) \ + : "%0" ((USItype) (ah)), \ + "g" ((USItype) (bh)), \ + "%1" ((USItype) (al)), \ + "g" ((USItype) (bl))) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("subl2 %5,%1\n\tsbwc %3,%0" \ + : "=g" ((USItype) (sh)), \ + "=&g" ((USItype) (sl)) \ + : "0" ((USItype) (ah)), \ + "g" ((USItype) (bh)), \ + "1" ((USItype) (al)), \ + "g" ((USItype) (bl))) +#define umul_ppmm(xh, xl, m0, m1) \ + do { \ + union { \ + UDItype __ll; \ + struct {USItype __l, __h;} __i; \ + } __xx; \ + USItype __m0 = (m0), __m1 = (m1); \ + __asm__ ("emul %1,%2,$0,%0" \ + : "=r" (__xx.__ll) \ + : "g" (__m0), \ + "g" (__m1)); \ + (xh) = __xx.__i.__h; \ + (xl) = __xx.__i.__l; \ + (xh) += ((((SItype) __m0 >> 31) & __m1) \ + + (((SItype) __m1 >> 31) & __m0)); \ + } while (0) +#define sdiv_qrnnd(q, r, n1, n0, d) \ + do { \ + union {DItype __ll; \ + struct {SItype __l, __h;} __i; \ + } __xx; \ + __xx.__i.__h = n1; __xx.__i.__l = n0; \ + __asm__ ("ediv %3,%2,%0,%1" \ + : "=g" (q), "=g" (r) \ + : "g" (__xx.__ll), "g" (d)); \ + } while (0) +#endif /* __vax__ */ + +#ifdef _TMS320C6X +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + do \ + { \ + UDItype __ll; \ + __asm__ ("addu .l1 %1, %2, %0" \ + : "=a" (__ll) : "a" (al), "a" (bl)); \ + (sl) = (USItype)__ll; \ + (sh) = ((USItype)(__ll >> 32)) + (ah) + (bh); \ + } \ + while (0) + +#ifdef _TMS320C6400_PLUS +#define __umulsidi3(u,v) ((UDItype)(USItype)u*(USItype)v) +#define umul_ppmm(w1, w0, u, v) \ + do { \ + UDItype __x = (UDItype) (USItype) (u) * (USItype) (v); \ + (w1) = (USItype) (__x >> 32); \ + (w0) = (USItype) (__x); \ + } while (0) +#endif /* _TMS320C6400_PLUS */ + +#define count_leading_zeros(count, x) ((count) = __builtin_clz (x)) +#ifdef _TMS320C6400 +#define count_trailing_zeros(count, x) ((count) = __builtin_ctz (x)) +#endif +#define UMUL_TIME 4 +#define UDIV_TIME 40 +#endif /* _TMS320C6X */ + +#if defined (__xtensa__) && W_TYPE_SIZE == 32 +/* This code is not Xtensa-configuration-specific, so rely on the compiler + to expand builtin functions depending on what configuration features + are available. This avoids library calls when the operation can be + performed in-line. */ +#define umul_ppmm(w1, w0, u, v) \ + do { \ + DWunion __w; \ + __w.ll = __builtin_umulsidi3 (u, v); \ + w1 = __w.s.high; \ + w0 = __w.s.low; \ + } while (0) +#define __umulsidi3(u, v) __builtin_umulsidi3 (u, v) +#define count_leading_zeros(COUNT, X) ((COUNT) = __builtin_clz (X)) +#define count_trailing_zeros(COUNT, X) ((COUNT) = __builtin_ctz (X)) +#endif /* __xtensa__ */ + +#if defined xstormy16 +extern UHItype __stormy16_count_leading_zeros (UHItype); +#define count_leading_zeros(count, x) \ + do \ + { \ + UHItype size; \ + \ + /* We assume that W_TYPE_SIZE is a multiple of 16... */ \ + for ((count) = 0, size = W_TYPE_SIZE; size; size -= 16) \ + { \ + UHItype c; \ + \ + c = __clzhi2 ((x) >> (size - 16)); \ + (count) += c; \ + if (c != 16) \ + break; \ + } \ + } \ + while (0) +#define COUNT_LEADING_ZEROS_0 W_TYPE_SIZE +#endif + +#if defined (__z8000__) && W_TYPE_SIZE == 16 +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + __asm__ ("add %H1,%H5\n\tadc %H0,%H3" \ + : "=r" ((unsigned int)(sh)), \ + "=&r" ((unsigned int)(sl)) \ + : "%0" ((unsigned int)(ah)), \ + "r" ((unsigned int)(bh)), \ + "%1" ((unsigned int)(al)), \ + "rQR" ((unsigned int)(bl))) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + __asm__ ("sub %H1,%H5\n\tsbc %H0,%H3" \ + : "=r" ((unsigned int)(sh)), \ + "=&r" ((unsigned int)(sl)) \ + : "0" ((unsigned int)(ah)), \ + "r" ((unsigned int)(bh)), \ + "1" ((unsigned int)(al)), \ + "rQR" ((unsigned int)(bl))) +#define umul_ppmm(xh, xl, m0, m1) \ + do { \ + union {long int __ll; \ + struct {unsigned int __h, __l;} __i; \ + } __xx; \ + unsigned int __m0 = (m0), __m1 = (m1); \ + __asm__ ("mult %S0,%H3" \ + : "=r" (__xx.__i.__h), \ + "=r" (__xx.__i.__l) \ + : "%1" (__m0), \ + "rQR" (__m1)); \ + (xh) = __xx.__i.__h; (xl) = __xx.__i.__l; \ + (xh) += ((((signed int) __m0 >> 15) & __m1) \ + + (((signed int) __m1 >> 15) & __m0)); \ + } while (0) +#endif /* __z8000__ */ + +#endif /* __GNUC__ */ + +/* If this machine has no inline assembler, use C macros. */ + +#if !defined (add_ssaaaa) +#define add_ssaaaa(sh, sl, ah, al, bh, bl) \ + do { \ + UWtype __x; \ + __x = (al) + (bl); \ + (sh) = (ah) + (bh) + (__x < (al)); \ + (sl) = __x; \ + } while (0) +#endif + +#if !defined (sub_ddmmss) +#define sub_ddmmss(sh, sl, ah, al, bh, bl) \ + do { \ + UWtype __x; \ + __x = (al) - (bl); \ + (sh) = (ah) - (bh) - (__x > (al)); \ + (sl) = __x; \ + } while (0) +#endif + +/* If we lack umul_ppmm but have smul_ppmm, define umul_ppmm in terms of + smul_ppmm. */ +#if !defined (umul_ppmm) && defined (smul_ppmm) +#define umul_ppmm(w1, w0, u, v) \ + do { \ + UWtype __w1; \ + UWtype __xm0 = (u), __xm1 = (v); \ + smul_ppmm (__w1, w0, __xm0, __xm1); \ + (w1) = __w1 + (-(__xm0 >> (W_TYPE_SIZE - 1)) & __xm1) \ + + (-(__xm1 >> (W_TYPE_SIZE - 1)) & __xm0); \ + } while (0) +#endif + +/* If we still don't have umul_ppmm, define it using plain C. */ +#if !defined (umul_ppmm) +#define umul_ppmm(w1, w0, u, v) \ + do { \ + UWtype __x0, __x1, __x2, __x3; \ + UHWtype __ul, __vl, __uh, __vh; \ + \ + __ul = __ll_lowpart (u); \ + __uh = __ll_highpart (u); \ + __vl = __ll_lowpart (v); \ + __vh = __ll_highpart (v); \ + \ + __x0 = (UWtype) __ul * __vl; \ + __x1 = (UWtype) __ul * __vh; \ + __x2 = (UWtype) __uh * __vl; \ + __x3 = (UWtype) __uh * __vh; \ + \ + __x1 += __ll_highpart (__x0);/* this can't give carry */ \ + __x1 += __x2; /* but this indeed can */ \ + if (__x1 < __x2) /* did we get it? */ \ + __x3 += __ll_B; /* yes, add it in the proper pos. */ \ + \ + (w1) = __x3 + __ll_highpart (__x1); \ + (w0) = __ll_lowpart (__x1) * __ll_B + __ll_lowpart (__x0); \ + } while (0) +#endif + +#if !defined (__umulsidi3) +#define __umulsidi3(u, v) \ + ({DWunion __w; \ + umul_ppmm (__w.s.high, __w.s.low, u, v); \ + __w.ll; }) +#endif + +/* Define this unconditionally, so it can be used for debugging. */ +#define __udiv_qrnnd_c(q, r, n1, n0, d) \ + do { \ + UWtype __d1, __d0, __q1, __q0; \ + UWtype __r1, __r0, __m; \ + __d1 = __ll_highpart (d); \ + __d0 = __ll_lowpart (d); \ + \ + __r1 = (n1) % __d1; \ + __q1 = (n1) / __d1; \ + __m = (UWtype) __q1 * __d0; \ + __r1 = __r1 * __ll_B | __ll_highpart (n0); \ + if (__r1 < __m) \ + { \ + __q1--, __r1 += (d); \ + if (__r1 >= (d)) /* i.e. we didn't get carry when adding to __r1 */\ + if (__r1 < __m) \ + __q1--, __r1 += (d); \ + } \ + __r1 -= __m; \ + \ + __r0 = __r1 % __d1; \ + __q0 = __r1 / __d1; \ + __m = (UWtype) __q0 * __d0; \ + __r0 = __r0 * __ll_B | __ll_lowpart (n0); \ + if (__r0 < __m) \ + { \ + __q0--, __r0 += (d); \ + if (__r0 >= (d)) \ + if (__r0 < __m) \ + __q0--, __r0 += (d); \ + } \ + __r0 -= __m; \ + \ + (q) = (UWtype) __q1 * __ll_B | __q0; \ + (r) = __r0; \ + } while (0) + +/* If the processor has no udiv_qrnnd but sdiv_qrnnd, go through + __udiv_w_sdiv (defined in libgcc or elsewhere). */ +#if !defined (udiv_qrnnd) && defined (sdiv_qrnnd) +#define udiv_qrnnd(q, r, nh, nl, d) \ + do { \ + extern UWtype __udiv_w_sdiv (UWtype *, UWtype, UWtype, UWtype); \ + UWtype __r; \ + (q) = __udiv_w_sdiv (&__r, nh, nl, d); \ + (r) = __r; \ + } while (0) +#endif + +/* If udiv_qrnnd was not defined for this processor, use __udiv_qrnnd_c. */ +#if !defined (udiv_qrnnd) +#define UDIV_NEEDS_NORMALIZATION 1 +#define udiv_qrnnd __udiv_qrnnd_c +#endif + +#if !defined (count_leading_zeros) +#define count_leading_zeros(count, x) \ + do { \ + UWtype __xr = (x); \ + UWtype __a; \ + \ + if (W_TYPE_SIZE <= 32) \ + { \ + __a = __xr < ((UWtype)1<<2*__BITS4) \ + ? (__xr < ((UWtype)1<<__BITS4) ? 0 : __BITS4) \ + : (__xr < ((UWtype)1<<3*__BITS4) ? 2*__BITS4 : 3*__BITS4); \ + } \ + else \ + { \ + for (__a = W_TYPE_SIZE - 8; __a > 0; __a -= 8) \ + if (((__xr >> __a) & 0xff) != 0) \ + break; \ + } \ + \ + (count) = W_TYPE_SIZE - (__clz_tab[__xr >> __a] + __a); \ + } while (0) +#define COUNT_LEADING_ZEROS_0 W_TYPE_SIZE +#endif + +#if !defined (count_trailing_zeros) +/* Define count_trailing_zeros using count_leading_zeros. The latter might be + defined in asm, but if it is not, the C version above is good enough. */ +#define count_trailing_zeros(count, x) \ + do { \ + UWtype __ctz_x = (x); \ + UWtype __ctz_c; \ + count_leading_zeros (__ctz_c, __ctz_x & -__ctz_x); \ + (count) = W_TYPE_SIZE - 1 - __ctz_c; \ + } while (0) +#endif + +#ifndef UDIV_NEEDS_NORMALIZATION +#define UDIV_NEEDS_NORMALIZATION 0 +#endif diff --git a/am/src/riscv/ysyxsoc/libgcc/muldi3.S b/am/src/riscv/ysyxsoc/libgcc/muldi3.S new file mode 100644 index 0000000..16166d0 --- /dev/null +++ b/am/src/riscv/ysyxsoc/libgcc/muldi3.S @@ -0,0 +1,48 @@ +/* Integer multiplication routines for RISC-V. + + Copyright (C) 2016-2022 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 3, or (at your option) any later +version. + +GCC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +Under Section 7 of GPL version 3, you are granted additional +permissions described in the GCC Runtime Library Exception, version +3.1, as published by the Free Software Foundation. + +You should have received a copy of the GNU General Public License and +a copy of the GCC Runtime Library Exception along with this program; +see the files COPYING3 and COPYING.RUNTIME respectively. If not, see +. */ + +#include "riscv-asm.h" + + .text + .align 2 + +#if __riscv_xlen == 32 +/* Our RV64 64-bit routine is equivalent to our RV32 32-bit routine. */ +# define __muldi3 __mulsi3 +#endif + +FUNC_BEGIN (__muldi3) + mv a2, a0 + li a0, 0 +.L1: + andi a3, a1, 1 + beqz a3, .L2 + add a0, a0, a2 +.L2: + srli a1, a1, 1 + slli a2, a2, 1 + bnez a1, .L1 + ret +FUNC_END (__muldi3) diff --git a/am/src/riscv/ysyxsoc/libgcc/multi3.c b/am/src/riscv/ysyxsoc/libgcc/multi3.c new file mode 100644 index 0000000..ce357ed --- /dev/null +++ b/am/src/riscv/ysyxsoc/libgcc/multi3.c @@ -0,0 +1,86 @@ +/* Multiplication two double word integers for RISC-V. + + Copyright (C) 2016-2022 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 3, or (at your option) any later +version. + +GCC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +Under Section 7 of GPL version 3, you are granted additional +permissions described in the GCC Runtime Library Exception, version +3.1, as published by the Free Software Foundation. + +You should have received a copy of the GNU General Public License and +a copy of the GCC Runtime Library Exception along with this program; +see the files COPYING3 and COPYING.RUNTIME respectively. If not, see +. */ + +//#include "tconfig.h" +//#include "tsystem.h" +//#include "coretypes.h" +//#include "tm.h" +//#include "libgcc_tm.h" +#define LIBGCC2_UNITS_PER_WORD (__riscv_xlen / 8) + +#include "libgcc2.h" + +#if __riscv_xlen == 32 +/* Our RV64 64-bit routines are equivalent to our RV32 32-bit routines. */ +# define __multi3 __muldi3 +#endif + +DWtype +__multi3 (DWtype u, DWtype v) +{ + const DWunion uu = {.ll = u}; + const DWunion vv = {.ll = v}; + DWunion w; + UWtype u_low = uu.s.low; + UWtype v_low = vv.s.low; + UWtype u_low_msb; + UWtype w_low = 0; + UWtype new_w_low; + UWtype w_high = 0; + UWtype w_high_tmp = 0; + UWtype w_high_tmp2x; + UWtype carry; + + /* Calculate low half part of u and v, and get a UDWtype result just like + what __umulsidi3 do. */ + do + { + new_w_low = w_low + u_low; + w_high_tmp2x = w_high_tmp << 1; + w_high_tmp += w_high; + if (v_low & 1) + { + carry = new_w_low < w_low; + w_low = new_w_low; + w_high = carry + w_high_tmp; + } + u_low_msb = (u_low >> ((sizeof (UWtype) * 8) - 1)); + v_low >>= 1; + u_low <<= 1; + w_high_tmp = u_low_msb | w_high_tmp2x; + } + while (v_low); + + w.s.low = w_low; + w.s.high = w_high; + + if (uu.s.high) + w.s.high = w.s.high + __muluw3(vv.s.low, uu.s.high); + + if (vv.s.high) + w.s.high += __muluw3(uu.s.low, vv.s.high); + + return w.ll; +} diff --git a/am/src/riscv/ysyxsoc/libgcc/riscv-asm.h b/am/src/riscv/ysyxsoc/libgcc/riscv-asm.h new file mode 100644 index 0000000..b70930e --- /dev/null +++ b/am/src/riscv/ysyxsoc/libgcc/riscv-asm.h @@ -0,0 +1,41 @@ +/* Copyright (C) 2017-2022 Free Software Foundation, Inc. + +This file is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 3, or (at your option) any +later version. + +This file is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +Under Section 7 of GPL version 3, you are granted additional +permissions described in the GCC Runtime Library Exception, version +3.1, as published by the Free Software Foundation. + +You should have received a copy of the GNU General Public License and +a copy of the GCC Runtime Library Exception along with this program; +see the files COPYING3 and COPYING.RUNTIME respectively. If not, see +. */ + +#define FUNC_TYPE(X) .type X,@function +#define FUNC_SIZE(X) .size X,.-X + +#define FUNC_BEGIN(X) \ + .globl X; \ + FUNC_TYPE (X); \ +X: + +#define FUNC_END(X) \ + FUNC_SIZE(X) + +#define FUNC_ALIAS(X,Y) \ + .globl X; \ + X = Y + +#define CONCAT1(a, b) CONCAT2(a, b) +#define CONCAT2(a, b) a ## b +#define HIDDEN_JUMPTARGET(X) CONCAT1(__hidden_, X) +#define HIDDEN_DEF(X) FUNC_ALIAS(HIDDEN_JUMPTARGET(X), X); \ + .hidden HIDDEN_JUMPTARGET(X) diff --git a/am/src/riscv/ysyxsoc/libgcc/unused.c b/am/src/riscv/ysyxsoc/libgcc/unused.c new file mode 100644 index 0000000..bf95515 --- /dev/null +++ b/am/src/riscv/ysyxsoc/libgcc/unused.c @@ -0,0 +1,5 @@ +#include +#include + +double __muldf3 (double a, double b) { panic("Not implement"); } +long __fixdfdi (double a) { panic("Not implement"); } diff --git a/am/src/riscv/ysyxsoc/mpe.c b/am/src/riscv/ysyxsoc/mpe.c new file mode 100644 index 0000000..6715aa2 --- /dev/null +++ b/am/src/riscv/ysyxsoc/mpe.c @@ -0,0 +1,17 @@ +#include + +bool mpe_init(void (*entry)()) { + return false; +} + +int cpu_count() { + return 1; +} + +int cpu_current() { + return 0; +} + +int atomic_xchg(int *addr, int newval) { + return 0; +} diff --git a/am/src/riscv/ysyxsoc/start.S b/am/src/riscv/ysyxsoc/start.S new file mode 100644 index 0000000..3e56e5c --- /dev/null +++ b/am/src/riscv/ysyxsoc/start.S @@ -0,0 +1,8 @@ +.section entry, "ax" +.globl _start +.type _start, @function + +_start: + mv s0, zero + la sp, _stack_pointer + jal _trm_init diff --git a/am/src/riscv/ysyxsoc/timer.c b/am/src/riscv/ysyxsoc/timer.c new file mode 100644 index 0000000..bb808e0 --- /dev/null +++ b/am/src/riscv/ysyxsoc/timer.c @@ -0,0 +1,28 @@ +#include "amdev.h" +#include "riscv/riscv.h" +#include +#include + +#define RTC_ADDR 0xa0000048 +static uint64_t up = 0; + +void __am_timer_uptime(AM_TIMER_UPTIME_T *uptime) { + uint32_t h = inl(RTC_ADDR + 4); + uint32_t l = inl(RTC_ADDR); + uint64_t time = (uint64_t)h << 32 | l; + uptime->us = time - up; +} +void __am_timer_init() { + uint32_t h = inl(RTC_ADDR + 4); + uint32_t l = inl(RTC_ADDR); + up = (uint64_t)h << 32 | l; +} + +void __am_timer_rtc(AM_TIMER_RTC_T *rtc) { + rtc->second = 0; + rtc->minute = 0; + rtc->hour = 0; + rtc->day = 0; + rtc->month = 0; + rtc->year = 1900; +} diff --git a/am/src/riscv/ysyxsoc/trap.S b/am/src/riscv/ysyxsoc/trap.S new file mode 100644 index 0000000..18d208c --- /dev/null +++ b/am/src/riscv/ysyxsoc/trap.S @@ -0,0 +1,67 @@ +#define concat_temp(x, y) x ## y +#define concat(x, y) concat_temp(x, y) +#define MAP(c, f) c(f) + +#if __riscv_xlen == 32 +#define LOAD lw +#define STORE sw +#define XLEN 4 +#else +#define LOAD ld +#define STORE sd +#define XLEN 8 +#endif + +#define REGS_LO16(f) \ + f( 1) f( 3) f( 4) f( 5) f( 6) f( 7) f( 8) f( 9) \ +f(10) f(11) f(12) f(13) f(14) f(15) +#ifndef __riscv_e +#define REGS_HI16(f) \ + f(16) f(17) f(18) f(19) \ +f(20) f(21) f(22) f(23) f(24) f(25) f(26) f(27) f(28) f(29) \ +f(30) f(31) +#define NR_REGS 32 +#else +#define REGS_HI16(f) +#define NR_REGS 16 +#endif + +#define REGS(f) REGS_LO16(f) REGS_HI16(f) + +#define PUSH(n) STORE concat(x, n), (n * XLEN)(sp); +#define POP(n) LOAD concat(x, n), (n * XLEN)(sp); + +#define CONTEXT_SIZE ((NR_REGS + 3 + 1) * XLEN) +#define OFFSET_SP ( 2 * XLEN) +#define OFFSET_CAUSE ((NR_REGS + 0) * XLEN) +#define OFFSET_STATUS ((NR_REGS + 1) * XLEN) +#define OFFSET_EPC ((NR_REGS + 2) * XLEN) + +.align 3 +.globl __am_asm_trap +__am_asm_trap: + addi sp, sp, -CONTEXT_SIZE + + MAP(REGS, PUSH) + + csrr t0, mcause + csrr t1, mstatus + csrr t2, mepc + + STORE t0, OFFSET_CAUSE(sp) + STORE t1, OFFSET_STATUS(sp) + STORE t2, OFFSET_EPC(sp) + + mv a0, sp + jal __am_irq_handle + + mv sp, a0 + LOAD t1, OFFSET_STATUS(sp) + LOAD t2, OFFSET_EPC(sp) + csrw mstatus, t1 + csrw mepc, t2 + + MAP(REGS, POP) + + addi sp, sp, CONTEXT_SIZE + mret diff --git a/am/src/riscv/ysyxsoc/trm.c b/am/src/riscv/ysyxsoc/trm.c new file mode 100644 index 0000000..cfdcedb --- /dev/null +++ b/am/src/riscv/ysyxsoc/trm.c @@ -0,0 +1,76 @@ +#include "riscv/riscv.h" +#include +#include +#include +#include + +#define HEAP_SIZE 0x1000 +extern char _heap_start; +int main(const char *args); + +Area heap = RANGE(&_heap_start, &_heap_start + HEAP_SIZE); +#ifndef MAINARGS +#define MAINARGS "" +#endif +static const char mainargs[] = MAINARGS; + +void uart_16550_init(void) { +#define UART_BASE 0x10000000U +#define UART_TX 0 +#define UART_DLL 0 +#define UART_IER 1 +#define UART_DLM 1 +#define UART_FCR 2 +#define UART_LCR 3 +#define UART_LSR 5 + //1. set the Line Control Register to the desired line control parameters. + //Set bit 7 to '1' to allow access to the Divisor Latches. + outb(UART_BASE + UART_LCR, 0b10000111); + + //2. Set the Divisor Latches, MSB first, LSB next. We don't care the value at present. +#define BATE_RATE 115200 +#define CLK_FREQ 3686400 + uint16_t divisor = CLK_FREQ / ( 16 * BATE_RATE ); + //uint16_t divisor = 20; + + outb(UART_BASE + UART_DLM, divisor >> 8); + outb(UART_BASE + UART_DLL, divisor); + + //3. Set the bit '7' of LCR to '0' to disable access to Divisor Latches. + outb(UART_BASE + UART_LCR, 0b00000111); + //4. Set the FIFO trigger level. + outb(UART_BASE + UART_FCR, 0b11000111); + //5. Enable desired interrupts. + outb(UART_BASE + UART_IER, 0b00000000); + + +} + +void putch(char ch) { + //Check the status of the send queue before output. + while(!(inb(UART_BASE + UART_LSR) & 0b00100000)); + outb(UART_BASE + UART_TX, ch); +} + +void halt(int code) { + asm volatile("mv a0, %0; ebreak" :: "r"(code)); + while (1); +} + +void clear_bss(void) { + extern char _sbss; + extern char _ebss; + memset(&_sbss, 0, &_ebss - &_sbss); +} + +extern char _sdata; +extern char _data_size; +extern char _data_load_start; + +void _trm_init() { + memcpy(&_sdata, &_data_load_start, (size_t)&_data_size); + clear_bss(); + uart_16550_init(); + int ret = main(mainargs); + halt(ret); +} diff --git a/am/src/riscv/ysyxsoc/vme.c b/am/src/riscv/ysyxsoc/vme.c new file mode 100644 index 0000000..5134154 --- /dev/null +++ b/am/src/riscv/ysyxsoc/vme.c @@ -0,0 +1,18 @@ +#include + +bool vme_init(void* (*pgalloc_f)(int), void (*pgfree_f)(void*)) { + return false; +} + +void protect(AddrSpace *as) { +} + +void unprotect(AddrSpace *as) { +} + +void map(AddrSpace *as, void *va, void *pa, int prot) { +} + +Context *ucontext(AddrSpace *as, Area kstack, void *entry) { + return NULL; +} diff --git a/am/src/x86/qemu/boot/main.c b/am/src/x86/qemu/boot/main.c index 86bc56d..13910d1 100644 --- a/am/src/x86/qemu/boot/main.c +++ b/am/src/x86/qemu/boot/main.c @@ -64,29 +64,27 @@ static void load_elf32(Elf32_Ehdr *elf) { } void load_kernel(void) { - union { - Elf32_Ehdr elf32; - Elf64_Ehdr elf64; - } *u = (void *)0x8000; + Elf32_Ehdr *elf32 = (void *)0x8000; + Elf64_Ehdr *elf64 = (void *)0x8000; int is_ap = boot_record()->is_ap; if (!is_ap) { // load argument (string) to memory copy_from_disk((void *)MAINARG_ADDR, 1024, -1024); // load elf header to memory - copy_from_disk(u, 4096, 0); - if (u->elf32.e_machine == EM_X86_64) { - load_elf64(&u->elf64); + copy_from_disk(elf32, 4096, 0); + if (elf32->e_machine == EM_X86_64) { + load_elf64(elf64); } else { - load_elf32(&u->elf32); + load_elf32(elf32); } } else { // everything should be loaded } - if (u->elf32.e_machine == EM_X86_64) { - ((void(*)())(uint32_t)(u->elf64.e_entry))(); + if (elf32->e_machine == EM_X86_64) { + ((void(*)())(uint32_t)elf64->e_entry)(); } else { - ((void(*)())(uint32_t)(u->elf32.e_entry))(); + ((void(*)())(uint32_t)elf32->e_entry)(); } } diff --git a/klib/include/klib.h b/klib/include/klib.h index ecb24c8..80103e1 100644 --- a/klib/include/klib.h +++ b/klib/include/klib.h @@ -2,8 +2,8 @@ #define KLIB_H__ #include -#include #include +#include #ifdef __cplusplus extern "C" { @@ -12,43 +12,45 @@ extern "C" { //#define __NATIVE_USE_KLIB__ // string.h -void *memset (void *s, int c, size_t n); -void *memcpy (void *dst, const void *src, size_t n); -void *memmove (void *dst, const void *src, size_t n); -int memcmp (const void *s1, const void *s2, size_t n); -size_t strlen (const char *s); -char *strcat (char *dst, const char *src); -char *strcpy (char *dst, const char *src); -char *strncpy (char *dst, const char *src, size_t n); -int strcmp (const char *s1, const char *s2); -int strncmp (const char *s1, const char *s2, size_t n); +char *stpcpy(char *dst, const char *src); +char *stpncpy(char *dst, const char *src, size_t n); +void *memset(void *s, int c, size_t n); +void *memcpy(void *dst, const void *src, size_t n); +void *memmove(void *dst, const void *src, size_t n); +int memcmp(const void *s1, const void *s2, size_t n); +size_t strlen(const char *s); +char *strcat(char *dst, const char *src); +char *strcpy(char *dst, const char *src); +char *strncpy(char *dst, const char *src, size_t n); +int strcmp(const char *s1, const char *s2); +int strncmp(const char *s1, const char *s2, size_t n); -// stdlib.h -void srand (unsigned int seed); -int rand (void); -void *malloc (size_t size); -void free (void *ptr); -int abs (int x); -int atoi (const char *nptr); +//stdlib.h +void srand(unsigned int seed); +int rand(void); +void *malloc(size_t size); +void free(void *ptr); +int abs(int x); +int atoi(const char *nptr); // stdio.h -int printf (const char *format, ...); -int sprintf (char *str, const char *format, ...); -int snprintf (char *str, size_t size, const char *format, ...); -int vsprintf (char *str, const char *format, va_list ap); -int vsnprintf (char *str, size_t size, const char *format, va_list ap); +int printf(const char *format, ...); +int sprintf(char *str, const char *format, ...); +int snprintf(char *str, size_t size, const char *format, ...); +int vsprintf(char *str, const char *format, va_list ap); +int vsnprintf(char *str, size_t size, const char *format, va_list ap); // assert.h #ifdef NDEBUG - #define assert(ignore) ((void)0) +#define assert(ignore) ((void)0) #else - #define assert(cond) \ - do { \ - if (!(cond)) { \ - printf("Assertion fail at %s:%d\n", __FILE__, __LINE__); \ - halt(1); \ - } \ - } while (0) +#define assert(cond) \ + do { \ + if (!(cond)) { \ + printf("Assertion fail at %s:%d\n", __FILE__, __LINE__); \ + halt(1); \ + } \ + } while (0) #endif #ifdef __cplusplus diff --git a/klib/src/stdio.c b/klib/src/stdio.c index 1b19953..e38278b 100644 --- a/klib/src/stdio.c +++ b/klib/src/stdio.c @@ -1,28 +1,138 @@ #include -#include + #include +#include +#include #include +#include #if !defined(__ISA_NATIVE__) || defined(__NATIVE_USE_KLIB__) + +static int int2str(char *p, int v, size_t n) { + if (n == 0 || p == NULL) + return 0; + if (v == 0) { + *p = '0'; + return 1; + } + if (v == INT_MIN) { + return stpncpy(p, "-2147483648", n) - p; + } + const char *const s = p; + int idx = 0; + char buf[16] = {0}; + + int tmp = abs(v); + + while (tmp != 0) { + buf[idx] = tmp % 10 + '0'; + tmp /= 10; + idx++; + } + if(v < 0 && n > 0) { + *p = '-'; + n--; + p++; + } + idx--; + while (idx >= 0 && n > 0) { + *p = buf[idx]; + p++; + idx--; + n--; + } + return p - s; +} int printf(const char *fmt, ...) { - panic("Not implemented"); + + char buf[1024] = {0}; + va_list ap; + va_start(ap, fmt); + int n = vsnprintf(buf, 1024, fmt, ap); + va_end(ap); + for (size_t i = 0; i < n; i++) { + putch(buf[i]); + } + return n; } int vsprintf(char *out, const char *fmt, va_list ap) { - panic("Not implemented"); + + return vsnprintf(out, -1, fmt, ap); } int sprintf(char *out, const char *fmt, ...) { - panic("Not implemented"); + + va_list ap; + va_start(ap, fmt); + int res = vsprintf(out, fmt, ap); + va_end(ap); + return res; } int snprintf(char *out, size_t n, const char *fmt, ...) { - panic("Not implemented"); + va_list ap; + va_start(ap, fmt); + int res = vsnprintf(out, n, fmt, ap); + va_end(ap); + return res; } -int vsnprintf(char *out, size_t n, const char *fmt, va_list ap) { - panic("Not implemented"); +int vsnprintf(char *out, size_t n, const char *fmt, va_list ap1) { + + size_t count = 0; + va_list ap; + va_copy(ap, ap1); + + while (count < n - 1 && *fmt != '\0') { + switch (*fmt) { + case '%': { + fmt++; + if (*fmt == '%') { + *out = *fmt; + out++; + fmt++; + count++; + } else if (*fmt == 's') { + char *p = va_arg(ap, char *); + + while (count < n - 1 && *p) { + *out = *p; + out++; + count++; + p++; + } + fmt++; + + } else if (*fmt == 'd') { + int v = va_arg(ap, int); + int int_num = int2str(out, v, n - 1 - count); + count += int_num; + out += int_num; + fmt++; + } else if(*fmt == 'c'){ + char c = (char)va_arg(ap, int); + *out = c; + out++; + count++; + fmt++; + } + else { + //panic("not implemented"); + fmt++; + } + break; + } + default: + *out = *fmt; + out++; + fmt++; + count++; + } + } + *out = '\0'; + return count; } #endif diff --git a/klib/src/stdlib.c b/klib/src/stdlib.c index 382635d..e88eb69 100644 --- a/klib/src/stdlib.c +++ b/klib/src/stdlib.c @@ -4,7 +4,9 @@ #if !defined(__ISA_NATIVE__) || defined(__NATIVE_USE_KLIB__) static unsigned long int next = 1; - +#if defined(__ISA_RISCV32__) || defined (__ISA_RISCV32E__) || defined(__ISA_RISCV64__) +void *heap_alloc_ptr = NULL; +#endif int rand(void) { // RAND_MAX assumed to be 32767 next = next * 1103515245 + 12345; @@ -34,9 +36,19 @@ void *malloc(size_t size) { // Therefore do not call panic() here, else it will yield a dead recursion: // panic() -> putchar() -> (glibc) -> malloc() -> panic() #if !(defined(__ISA_NATIVE__) && defined(__NATIVE_USE_KLIB__)) - panic("Not implemented"); + +#if defined (__ISA_RISCV32__) || defined (__ISA_RISCV32E__) + void *p = heap_alloc_ptr; + heap_alloc_ptr = (void*)ROUNDUP(heap_alloc_ptr + size, 4); + panic_on(!IN_RANGE(heap_alloc_ptr, heap), "Heap overflow"); + return p; +#else + panic("not implemented"); +#endif + +#else + return NULL; #endif - return NULL; } void free(void *ptr) { diff --git a/klib/src/string.c b/klib/src/string.c index f1a1f22..21bfb78 100644 --- a/klib/src/string.c +++ b/klib/src/string.c @@ -1,47 +1,155 @@ -#include #include +#include +#include #include #if !defined(__ISA_NATIVE__) || defined(__NATIVE_USE_KLIB__) size_t strlen(const char *s) { - panic("Not implemented"); + if (s == NULL) + return 0; + size_t count = 0; + while (*s != '\0') { + count++; + s++; + } + + return count; } char *strcpy(char *dst, const char *src) { - panic("Not implemented"); -} + size_t i = 0; + while (src[i] != '\0') { + dst[i] = src[i]; + i++; + } + + dst[i] = '\0'; + return dst; +} +char *stpncpy(char *dst, const char *src, size_t n) { + + for (; n != 0 && (*dst = *src); src++, dst++, n--); + return dst; +} +// copied from musl +char *stpcpy(char *dst, const char *src) { + + for (; (*dst = *src); src++, dst++) + ; + return dst; +} char *strncpy(char *dst, const char *src, size_t n) { - panic("Not implemented"); + // If the specified size is less than or equal to the source string's length, + // strncpy doesn't not append a null terminator to the destination buffer. + for (size_t i = 0; i < n; i++) { + if (src[i] != '\0') + dst[i] = src[i]; + else { + while (i < n) { + dst[i] = 0; + i++; + } + break; + } + } + return dst; } char *strcat(char *dst, const char *src) { - panic("Not implemented"); + + strcpy(dst + (strlen(dst)), src); + return dst; } -int strcmp(const char *s1, const char *s2) { - panic("Not implemented"); -} +int strcmp(const char *s1, const char *s2) { return strncmp(s1, s2, -1); } +// refer to musl, more elegant than mine int strncmp(const char *s1, const char *s2, size_t n) { - panic("Not implemented"); + + unsigned char *l = (void *)s1, *r = (void *)s2; + if (!n--) + return 0; + + while (n && *l && *r && *l == *r) { + l++; + r++; + n--; + } + return *l - *r; } void *memset(void *s, int c, size_t n) { - panic("Not implemented"); + if (n == 0) + return s; + for (size_t i = 0; i < n; i++) + *((unsigned char *)s + i) = (unsigned char)c; + + return s; } void *memmove(void *dst, const void *src, size_t n) { - panic("Not implemented"); + + if (dst == src) + return dst; + // A simple way to deal with overlap areas, improve in the future. + // Can I use malloc here ? Will buf area and other areas overlap? try to find + // a better way. + size_t s = (size_t)src; + size_t d = (size_t)dst; + + if (s > d && (d + n - 1 >= s)) { + size_t overlap_n = d + n - s; + memcpy(dst, src, overlap_n); + memcpy((void *)(s + overlap_n), (void *)(d + overlap_n), n - overlap_n); + } else if (d > s && (s + n - 1 >= d)) { + size_t overlap_n = s + n - d; + memcpy((void *)(d + n - overlap_n), dst, overlap_n); + memcpy(dst, src, n - overlap_n); + } else { + memcpy(dst, src, n); + } + + return dst; } void *memcpy(void *out, const void *in, size_t n) { - panic("Not implemented"); -} + // Note that memcpy function require the memory areas do not overlap. + // Panic directly when the input is invalid to debug. It seems to violate the + // manual specifications. + if (out == in) + return out; + size_t dest = (size_t)out; + size_t src = (size_t)in; -int memcmp(const void *s1, const void *s2, size_t n) { - panic("Not implemented"); + if ((dest > src && src + n - 1 < dest) || + (src > dest && dest + n - 1 < src)) { + while (n != 0) { + *(char *)(dest + n - 1) = *(char *)(src + n - 1); + n--; + } + + } + return out; + } + int memcmp(const void *s1, const void *s2, size_t n) { + if (n == 0) + return 0; + const unsigned char *a = s1; + const unsigned char *b = s2; + while (n != 0) { + if (*a == *b) { + a++; + b++; + n--; + continue; + } else { + return *a - *b; + } + } + return 0; + } #endif diff --git a/scripts/isa/riscv.mk b/scripts/isa/riscv.mk index e478842..1315be9 100644 --- a/scripts/isa/riscv.mk +++ b/scripts/isa/riscv.mk @@ -1,8 +1,8 @@ CROSS_COMPILE := riscv64-linux-gnu- -COMMON_CFLAGS := -fno-pic -march=rv64g -mcmodel=medany -mstrict-align +COMMON_CFLAGS := -fno-pic -march=rv64g -mcmodel=medany -mstrict-align CFLAGS += $(COMMON_CFLAGS) -static ASFLAGS += $(COMMON_CFLAGS) -O0 -LDFLAGS += -melf64lriscv +LDFLAGS += -melf64lriscv -O2 # overwrite ARCH_H defined in $(AM_HOME)/Makefile ARCH_H := arch/riscv.h diff --git a/scripts/isa/riscv64.mk b/scripts/isa/riscv64.mk new file mode 100644 index 0000000..8cbbfff --- /dev/null +++ b/scripts/isa/riscv64.mk @@ -0,0 +1,7 @@ +# This file is from nutshell's am +CROSS_COMPILE := riscv64-unknown-linux-gnu- +COMMON_FLAGS := -fno-pic -march=rv64g -mcmodel=medany +CFLAGS += $(COMMON_FLAGS) -static +ASFLAGS += $(COMMON_FLAGS) -O0 +LDFLAGS += -melf64lriscv +ARCH_H := arch/riscv.h diff --git a/scripts/isa/x86.mk b/scripts/isa/x86.mk index 83af50a..d4e1b91 100644 --- a/scripts/isa/x86.mk +++ b/scripts/isa/x86.mk @@ -1,6 +1,5 @@ export CROSS_COMPILE := x86_64-linux-gnu- CFLAGS += -m32 -fno-pic -fno-omit-frame-pointer -march=i386 CFLAGS += -fcf-protection=none # remove endbr32 in Ubuntu 20.04 with a CPU newer than Comet Lake -CFLAGS += --param=min-pagesize=0 # fix warning about "array subscript 0 is outside array bounds" ASFLAGS += -m32 -fno-pic LDFLAGS += -melf_i386 diff --git a/scripts/isa/x86_64.mk b/scripts/isa/x86_64.mk index f42ad03..5241d71 100644 --- a/scripts/isa/x86_64.mk +++ b/scripts/isa/x86_64.mk @@ -1,5 +1,4 @@ export CROSS_COMPILE := x86_64-linux-gnu- CFLAGS += -m64 -fPIC -mno-sse -CFLAGS += --param=min-pagesize=0 # fix warning about "array subscript 0 is outside array bounds" ASFLAGS += -m64 -fPIC LDFLAGS += -melf_x86_64 diff --git a/scripts/linker-soc.ld b/scripts/linker-soc.ld new file mode 100644 index 0000000..e5ffae2 --- /dev/null +++ b/scripts/linker-soc.ld @@ -0,0 +1,41 @@ +ENTRY(_start) +MEMORY { + mrom : ORIGIN = 0x20000000, LENGTH = 4K + sram : ORIGIN = 0x0f000000, LENGTH = 8K +} + +SECTIONS { + .text : { + _stext = .; + *(entry); + *(.text*); + _etext = .; + } > mrom AT> mrom + + .rodata : { + _srodata = .; + *(.rodata*); + *(.srodata*); + _erodata = .; + } > mrom AT> mrom + .data : { + _sdata = .; + *(.data*); + *(.sdata*); + _edata = .; /* Note that this is VMA */ + } > sram AT> mrom + _data_size = SIZEOF(.data); + _data_load_start = LOADADDR(.data); + + .bss : { + _sbss = .; + *(.bss*); + *(.sbss*); + *(.scommon); + _ebss = .; + } > sram + _end = .; + _heap_start = ALIGN(0x1000); + _stack_pointer = _sram_start + _sram_limit; +} + diff --git a/scripts/linker.ld b/scripts/linker.ld index 8dfe8d7..36c906c 100644 --- a/scripts/linker.ld +++ b/scripts/linker.ld @@ -25,7 +25,7 @@ SECTIONS { *(.scommon) } _stack_top = ALIGN(0x1000); - . = _stack_top + 0x8000; + . = _stack_top + 0x10000; _stack_pointer = .; end = .; _end = .; diff --git a/scripts/native.mk b/scripts/native.mk index 2b9a294..901a665 100644 --- a/scripts/native.mk +++ b/scripts/native.mk @@ -12,13 +12,16 @@ AM_SRCS := native/trm.c \ native/ioe/audio.c \ native/ioe/disk.c \ -CFLAGS += -fpie $(shell sdl2-config --cflags) -ASFLAGS += -fpie -pie +CFLAGS += -fpie comma = , -LDFLAGS_CXX = $(addprefix -Wl$(comma), $(LDFLAGS)) -pie -ldl $(shell sdl2-config --libs) +LDFLAGS_CXX = $(addprefix -Wl$(comma), $(LDFLAGS)) + +image: + @echo + LD "->" $(IMAGE_REL) + @g++ -pie -o $(IMAGE) -Wl,--whole-archive $(LINKAGE) -Wl,-no-whole-archive $(LDFLAGS_CXX) -lSDL2 -ldl run: image - $(IMAGE).elf + $(IMAGE) gdb: image - gdb -ex "handle SIGUSR1 SIGUSR2 SIGSEGV noprint nostop" $(IMAGE).elf + gdb -ex "handle SIGUSR1 SIGUSR2 SIGSEGV noprint nostop" $(IMAGE) diff --git a/scripts/platform/nemu.mk b/scripts/platform/nemu.mk index 1c5a395..dd554bd 100644 --- a/scripts/platform/nemu.mk +++ b/scripts/platform/nemu.mk @@ -8,28 +8,23 @@ AM_SRCS := platform/nemu/trm.c \ platform/nemu/mpe.c CFLAGS += -fdata-sections -ffunction-sections -CFLAGS += -I$(AM_HOME)/am/src/platform/nemu/include -LDSCRIPTS += $(AM_HOME)/scripts/linker.ld -LDFLAGS += --defsym=_pmem_start=0x80000000 --defsym=_entry_offset=0x0 +LDFLAGS += -T $(AM_HOME)/scripts/linker.ld \ + --defsym=_pmem_start=0x80000000 --defsym=_entry_offset=0x0 LDFLAGS += --gc-sections -e _start -NEMUFLAGS += -l $(shell dirname $(IMAGE).elf)/nemu-log.txt +NEMUFLAGS += -b +#-l $(shell dirname $(IMAGE).elf)/nemu-log.txt -MAINARGS_MAX_LEN = 64 -MAINARGS_PLACEHOLDER = The insert-arg rule in Makefile will insert mainargs here. -CFLAGS += -DMAINARGS_MAX_LEN=$(MAINARGS_MAX_LEN) -DMAINARGS_PLACEHOLDER=\""$(MAINARGS_PLACEHOLDER)"\" +CFLAGS += -DMAINARGS=\"$(mainargs)\" +CFLAGS += -I$(AM_HOME)/am/src/platform/nemu/include +.PHONY: $(AM_HOME)/am/src/platform/nemu/trm.c -insert-arg: image - @python $(AM_HOME)/tools/insert-arg.py $(IMAGE).bin $(MAINARGS_MAX_LEN) "$(MAINARGS_PLACEHOLDER)" "$(mainargs)" - -image: image-dep +image: $(IMAGE).elf @$(OBJDUMP) -d $(IMAGE).elf > $(IMAGE).txt @echo + OBJCOPY "->" $(IMAGE_REL).bin @$(OBJCOPY) -S --set-section-flags .bss=alloc,contents -O binary $(IMAGE).elf $(IMAGE).bin -run: insert-arg +run: image $(MAKE) -C $(NEMU_HOME) ISA=$(ISA) run ARGS="$(NEMUFLAGS)" IMG=$(IMAGE).bin -gdb: insert-arg +gdb: image $(MAKE) -C $(NEMU_HOME) ISA=$(ISA) gdb ARGS="$(NEMUFLAGS)" IMG=$(IMAGE).bin - -.PHONY: insert-arg diff --git a/scripts/platform/npc.mk b/scripts/platform/npc.mk index 57c9f30..dfd7ca1 100644 --- a/scripts/platform/npc.mk +++ b/scripts/platform/npc.mk @@ -9,23 +9,22 @@ AM_SRCS := riscv/npc/start.S \ platform/dummy/mpe.c CFLAGS += -fdata-sections -ffunction-sections -LDSCRIPTS += $(AM_HOME)/scripts/linker.ld -LDFLAGS += --defsym=_pmem_start=0x80000000 --defsym=_entry_offset=0x0 +LDFLAGS += -T $(AM_HOME)/scripts/linker.ld \ + --defsym=_pmem_start=0x80000000 --defsym=_entry_offset=0x0 LDFLAGS += --gc-sections -e _start +CFLAGS += -DMAINARGS=\"$(mainargs)\" +.PHONY: $(AM_HOME)/am/src/riscv/npc/trm.c -MAINARGS_MAX_LEN = 64 -MAINARGS_PLACEHOLDER = The insert-arg rule in Makefile will insert mainargs here. -CFLAGS += -DMAINARGS_MAX_LEN=$(MAINARGS_MAX_LEN) -DMAINARGS_PLACEHOLDER=\""$(MAINARGS_PLACEHOLDER)"\" - -insert-arg: image - @python $(AM_HOME)/tools/insert-arg.py $(IMAGE).bin $(MAINARGS_MAX_LEN) "$(MAINARGS_PLACEHOLDER)" "$(mainargs)" - -image: image-dep +image: $(IMAGE).elf @$(OBJDUMP) -d $(IMAGE).elf > $(IMAGE).txt @echo + OBJCOPY "->" $(IMAGE_REL).bin @$(OBJCOPY) -S --set-section-flags .bss=alloc,contents -O binary $(IMAGE).elf $(IMAGE).bin -run: insert-arg - echo "TODO: add command here to run simulation" +ref= $(NEMU_HOME)/build/riscv32-nemu-interpreter-so -.PHONY: insert-arg +run: image + make -f $(NPC_HOME)/scripts/sim.mk all + $(NPC_HOME)/build/npc $(IMAGE).bin $(ref) +gdb: image + make -f $(NPC_HOME)/scripts/sim.mk all + gdb --args $(NPC_HOME)/build/npc $(IMAGE).bin diff --git a/scripts/platform/qemu.mk b/scripts/platform/qemu.mk index 776d91a..67bcd67 100644 --- a/scripts/platform/qemu.mk +++ b/scripts/platform/qemu.mk @@ -11,7 +11,7 @@ build-arg: image BOOT_HOME := $(AM_HOME)/am/src/x86/qemu/boot -image: image-dep +image: $(IMAGE).elf @$(MAKE) -s -C $(BOOT_HOME) @echo + CREATE "->" $(IMAGE_REL) @( cat $(BOOT_HOME)/bootblock.o; head -c 1024 /dev/zero; cat $(IMAGE).elf ) > $(IMAGE) diff --git a/scripts/platform/ysyxsoc.mk b/scripts/platform/ysyxsoc.mk new file mode 100644 index 0000000..2e1c095 --- /dev/null +++ b/scripts/platform/ysyxsoc.mk @@ -0,0 +1,31 @@ +AM_SRCS := riscv/ysyxsoc/start.S \ + riscv/ysyxsoc/trm.c \ + riscv/ysyxsoc/ioe.c \ + riscv/ysyxsoc/timer.c \ + riscv/ysyxsoc/input.c \ + riscv/ysyxsoc/cte.c \ + riscv/ysyxsoc/trap.S \ + platform/dummy/vme.c \ + platform/dummy/mpe.c + +CFLAGS += -fdata-sections -ffunction-sections +LDFLAGS += -T $(AM_HOME)/scripts/linker-soc.ld \ + --defsym=_mrom_start=0x20000000 --defsym=_sram_start=0x0f000000 \ + --defsym=_entry_offset=0x0 --defsym=_sram_limit=0x2000 #-M +LDFLAGS += --gc-sections -e _start +CFLAGS += -DMAINARGS=\"$(mainargs)\" +.PHONY: $(AM_HOME)/am/src/riscv/ysyxsoc/trm.c + +image: $(IMAGE).elf + @$(OBJDUMP) -d $(IMAGE).elf > $(IMAGE).txt + @echo + OBJCOPY "->" $(IMAGE_REL).bin + @$(OBJCOPY) -S --set-section-flags .bss=alloc,contents -O binary $(IMAGE).elf $(IMAGE).bin + +ref= $(NEMU_HOME)/riscv32-nemu-interpreter-so + +run: image + make -f $(NPC_HOME)/scripts/sim.mk all + $(NPC_HOME)/build/ysyxSoCFull $(IMAGE).bin $(ref) +gdb: image + make -f $(NPC_HOME)/scripts/sim.mk all + gdb --args $(NPC_HOME)/build/npc $(IMAGE).bin diff --git a/scripts/riscv32-nemu.mk b/scripts/riscv32-nemu.mk index e6ed838..7b3a274 100644 --- a/scripts/riscv32-nemu.mk +++ b/scripts/riscv32-nemu.mk @@ -1,8 +1,8 @@ include $(AM_HOME)/scripts/isa/riscv.mk include $(AM_HOME)/scripts/platform/nemu.mk CFLAGS += -DISA_H=\"riscv/riscv.h\" -COMMON_CFLAGS += -march=rv32im_zicsr -mabi=ilp32 # overwrite -LDFLAGS += -melf32lriscv # overwrite +COMMON_CFLAGS += -march=rv32im_zicsr -mabi=ilp32 # overwrite +LDFLAGS += -melf32lriscv # overwrite AM_SRCS += riscv/nemu/start.S \ riscv/nemu/cte.c \ diff --git a/scripts/riscv32e-ysyxsoc.mk b/scripts/riscv32e-ysyxsoc.mk new file mode 100644 index 0000000..b112249 --- /dev/null +++ b/scripts/riscv32e-ysyxsoc.mk @@ -0,0 +1,10 @@ +include $(AM_HOME)/scripts/isa/riscv.mk +include $(AM_HOME)/scripts/platform/ysyxsoc.mk +COMMON_CFLAGS += -march=rv32e_zicsr -mabi=ilp32e # overwrite +LDFLAGS += -melf32lriscv # overwrite + +AM_SRCS += riscv/ysyxsoc/libgcc/div.S \ + riscv/ysyxsoc/libgcc/muldi3.S \ + riscv/ysyxsoc/libgcc/multi3.c \ + riscv/ysyxsoc/libgcc/ashldi3.c \ + riscv/ysyxsoc/libgcc/unused.c diff --git a/scripts/riscv64-nutshell.mk b/scripts/riscv64-nutshell.mk new file mode 100644 index 0000000..bc9a38c --- /dev/null +++ b/scripts/riscv64-nutshell.mk @@ -0,0 +1,35 @@ +include $(AM_HOME)/scripts/isa/riscv.mk + +AM_SRCS := riscv/nutshell/isa/riscv/boot/start.S \ + riscv/nutshell/common/mainargs.S \ + riscv/nutshell/isa/riscv/trm.c \ + riscv/nutshell/common/uartlite.c \ + riscv/nutshell/common/ioe.c \ + riscv/nutshell/common/timer.c \ + platform/dummy/input.c \ + platform/dummy/video.c \ + platform/dummy/audio.c \ + platform/dummy/cte.c \ + platform/dummy/vme.c \ + platform/dummy/mpe.c \ + +COMMON_CFLAGS += -march=rv64im_zicsr -mabi=lp64 # overwrite +LDFLAGS += -melf64lriscv # overwrite + +CFLAGS += -I$(AM_HOME)/am/src/riscv/nutshell/include -DISA_H=\"riscv.h\" +ASFLAGS += -DMAINARGS=\"$(mainargs)\" # for mainargs.S, modify in the future +CFLAGS += -DMAINARGS=\"$(mainargs)\" # for trm.c +.PHONY: $(AM_HOME)/am/src/riscv/nutshell/common/mainargs.S + +LDFLAGS += -L $(AM_HOME)/am/src/riscv/nutshell/ldscript +LDFLAGS += -T $(AM_HOME)/am/src/riscv/nutshell/isa/riscv/boot/loader64.ld + +image: $(IMAGE).elf + @$(OBJDUMP) -d $(IMAGE).elf > $(IMAGE).txt + @echo + OBJCOPY "->" $(IMAGE_REL).bin + @$(OBJCOPY) -S --set-section-flags .bss=alloc,contents -O binary $(IMAGE).elf $(IMAGE).bin + +run: image + $(NUTSHELL_HOME)/build/emu --no-diff -i $(abspath $(IMAGE).bin) + + diff --git a/scripts/spike.mk b/scripts/spike.mk index 54fa947..4ea391c 100644 --- a/scripts/spike.mk +++ b/scripts/spike.mk @@ -10,10 +10,10 @@ AM_SRCS := riscv/spike/trm.c \ platform/dummy/mpe.c \ CFLAGS += -fdata-sections -ffunction-sections -LDSCRIPTS += $(AM_HOME)/am/src/riscv/spike/linker.ld +LDFLAGS += -T $(AM_HOME)/am/src/riscv/spike/linker.ld LDFLAGS += --gc-sections -e _start CFLAGS += -DMAINARGS=\"$(mainargs)\" .PHONY: $(AM_HOME)/am/src/riscv/spike/trm.c -image: image-dep +image: $(IMAGE).elf