From 0d881bc974b74dff75c00a3cab5d535cbb2ace46 Mon Sep 17 00:00:00 2001 From: johannst Date: Fri, 26 Feb 2021 23:19:03 +0100 Subject: added implementation for armv7a --- lib/arch/arm/init_stack.cc | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib/arch/arm/init_stack.cc (limited to 'lib/arch/arm/init_stack.cc') diff --git a/lib/arch/arm/init_stack.cc b/lib/arch/arm/init_stack.cc new file mode 100644 index 0000000..422be64 --- /dev/null +++ b/lib/arch/arm/init_stack.cc @@ -0,0 +1,35 @@ +#include +#include // uintN_t + +extern "C" void thread_create(); + +void* init_stack(void* stack_ptr, void (*entry)(void*), const void* ctx) { + static_assert(sizeof(uint32_t) == sizeof(std::uintptr_t), "Pointer must be 32bit!"); + + // Setup initial stack frame which will be popped when yielding + // first time into the thread. + // Basic idea is to yield into Thread::entry() function which will + // then call the user function. + + uint32_t* stack = static_cast(stack_ptr); + // Arguments for `thread_create`. + *(--stack) = reinterpret_cast(ctx); + *(--stack) = reinterpret_cast(entry); + + // Yield epilogue. + *(--stack) = reinterpret_cast(thread_create); // r15 (PC) + *(--stack) = static_cast(0); // r11 (FP) + + // Callee saved registers. + *(--stack) = static_cast(0); // r11 + *(--stack) = static_cast(0); // r10 + *(--stack) = static_cast(0); // r9 + *(--stack) = static_cast(0); // r8 + *(--stack) = static_cast(0); // r7 + *(--stack) = static_cast(0); // r6 + *(--stack) = static_cast(0); // r5 + *(--stack) = static_cast(0); // r4 + + assert((reinterpret_cast(stack) & 0x7) == 0); // 8byte aligned + return static_cast(stack); +} -- cgit v1.2.3