arch: Align the implementation of stack related functions

arm: Avoid call k[u]mm_memalign to save the code size
ceva: Correct stack_base_ptr usage(top of stack v.s. bottom of stack)
mips: Correct the stack alignment in up_use_stack
misoc: Correct the stack alignment in up_use_stack
or1k: Correct the stack alignment in up_use_stack

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2022-02-15 18:11:30 +08:00
committed by archer
parent 3bf416e8b8
commit 872c570343
10 changed files with 113 additions and 77 deletions
+14 -10
View File
@@ -84,8 +84,6 @@
int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype) int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
{ {
stack_size = STACK_ALIGN_UP(stack_size);
#ifdef CONFIG_TLS_ALIGNED #ifdef CONFIG_TLS_ALIGNED
/* The allocated stack size must not exceed the maximum possible for the /* The allocated stack size must not exceed the maximum possible for the
* TLS feature. * TLS feature.
@@ -138,14 +136,14 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
if (ttype == TCB_FLAG_TTYPE_KERNEL) if (ttype == TCB_FLAG_TTYPE_KERNEL)
{ {
tcb->stack_alloc_ptr = kmm_memalign(STACK_ALIGNMENT, stack_size); tcb->stack_alloc_ptr = kmm_malloc(stack_size);
} }
else else
#endif #endif
{ {
/* Use the user-space allocator if this is a task or pthread */ /* Use the user-space allocator if this is a task or pthread */
tcb->stack_alloc_ptr = kumm_memalign(STACK_ALIGNMENT, stack_size); tcb->stack_alloc_ptr = kumm_malloc(stack_size);
} }
#endif /* CONFIG_TLS_ALIGNED */ #endif /* CONFIG_TLS_ALIGNED */
@@ -163,6 +161,9 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
if (tcb->stack_alloc_ptr) if (tcb->stack_alloc_ptr)
{ {
uintptr_t top_of_stack;
size_t size_of_stack;
/* The ARM uses a "full descending" stack: /* The ARM uses a "full descending" stack:
* the stack grows toward lower addresses in memory. * the stack grows toward lower addresses in memory.
* The stack pointer register points to the last pushed item in * The stack pointer register points to the last pushed item in
@@ -170,14 +171,17 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
* Items on the stack are referenced as positive word offsets from sp. * Items on the stack are referenced as positive word offsets from sp.
*/ */
/* Since both stack_alloc_ptr and stack_size are in top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size;
* STACK_ALIGNMENT, and the stack ptr is decremented before
* the first write, we can directly save our variables to struct /* Align the top of stack to STACK_ALIGNMENT. */
* tcb_s.
*/ top_of_stack = STACK_ALIGN_DOWN(top_of_stack);
size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr;
/* Save the adjusted stack values in the struct tcb_s */
tcb->adj_stack_size = stack_size;
tcb->stack_base_ptr = tcb->stack_alloc_ptr; tcb->stack_base_ptr = tcb->stack_alloc_ptr;
tcb->adj_stack_size = size_of_stack;
#ifdef CONFIG_STACK_COLORATION #ifdef CONFIG_STACK_COLORATION
/* If stack debug is enabled, then fill the stack with a /* If stack debug is enabled, then fill the stack with a
+5 -4
View File
@@ -179,7 +179,7 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
if (tcb->stack_alloc_ptr) if (tcb->stack_alloc_ptr)
{ {
FAR void *top_of_stack; uintptr_t top_of_stack;
size_t size_of_stack; size_t size_of_stack;
/* The CEVA uses a push-down stack: the stack grows toward lower /* The CEVA uses a push-down stack: the stack grows toward lower
@@ -193,12 +193,13 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
* boundary * boundary
*/ */
size_of_stack = STACK_ALIGN_DOWN(stack_size); top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size;
top_of_stack = tcb->stack_alloc_ptr + size_of_stack; top_of_stack = STACK_ALIGN_DOWN(top_of_stack);
size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr;
/* Save the adjusted stack values in the struct tcb_s */ /* Save the adjusted stack values in the struct tcb_s */
tcb->stack_base_ptr = top_of_stack; tcb->stack_base_ptr = tcb->stack_alloc_ptr;
tcb->adj_stack_size = size_of_stack; tcb->adj_stack_size = size_of_stack;
#ifdef CONFIG_STACK_COLORATION #ifdef CONFIG_STACK_COLORATION
+8 -8
View File
@@ -67,7 +67,7 @@
FAR void *up_stack_frame(FAR struct tcb_s *tcb, size_t frame_size) FAR void *up_stack_frame(FAR struct tcb_s *tcb, size_t frame_size)
{ {
FAR void *topaddr; FAR void *ret;
/* Align the frame_size */ /* Align the frame_size */
@@ -82,15 +82,15 @@ FAR void *up_stack_frame(FAR struct tcb_s *tcb, size_t frame_size)
/* Save the adjusted stack values in the struct tcb_s */ /* Save the adjusted stack values in the struct tcb_s */
topaddr = tcb->stack_base_ptr - frame_size; ret = tcb->stack_base_ptr;
tcb->stack_base_ptr = topaddr; memset(ret, 0, frame_size);
/* Save the adjusted stack values in the struct tcb_s */
tcb->stack_base_ptr = (FAR uint8_t *)tcb->stack_base_ptr + frame_size;
tcb->adj_stack_size -= frame_size; tcb->adj_stack_size -= frame_size;
/* Reinitialize the task state after the stack is adjusted */
up_initial_state(tcb);
/* And return the pointer to the allocated region */ /* And return the pointer to the allocated region */
return topaddr; return ret;
} }
+5 -4
View File
@@ -66,7 +66,7 @@
int up_use_stack(FAR struct tcb_s *tcb, FAR void *stack, size_t stack_size) int up_use_stack(FAR struct tcb_s *tcb, FAR void *stack, size_t stack_size)
{ {
FAR void *top_of_stack; uintptr_t top_of_stack;
size_t size_of_stack; size_t size_of_stack;
#ifdef CONFIG_TLS #ifdef CONFIG_TLS
@@ -101,12 +101,13 @@ int up_use_stack(FAR struct tcb_s *tcb, FAR void *stack, size_t stack_size)
* boundary * boundary
*/ */
size_of_stack = STACK_ALIGN_DOWN(stack_size); top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size;
top_of_stack = tcb->stack_alloc_ptr + size_of_stack; top_of_stack = STACK_ALIGN_DOWN(top_of_stack);
size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr;
/* Save the adjusted stack values in the struct tcb_s */ /* Save the adjusted stack values in the struct tcb_s */
tcb->stack_base_ptr = top_of_stack; tcb->stack_base_ptr = tcb->stack_alloc_ptr;
tcb->adj_stack_size = size_of_stack; tcb->adj_stack_size = size_of_stack;
#ifdef CONFIG_STACK_COLORATION #ifdef CONFIG_STACK_COLORATION
+11 -7
View File
@@ -34,6 +34,8 @@
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/tls.h> #include <nuttx/tls.h>
#include "lm32.h"
/**************************************************************************** /****************************************************************************
* Public Functions * Public Functions
****************************************************************************/ ****************************************************************************/
@@ -98,19 +100,21 @@ int up_use_stack(struct tcb_s *tcb, void *stack, size_t stack_size)
memset(tcb->stack_alloc_ptr, 0xaa, stack_size); memset(tcb->stack_alloc_ptr, 0xaa, stack_size);
#endif #endif
/* The i486 uses a push-down stack: the stack grows toward loweraddresses /* LM32 uses a push-down stack: the stack grows toward lower
* in memory. The stack pointer register, points to the lowest, valid work * addresses in memory. The stack pointer register points to the
* address (the "top" of the stack). Items on the stack are referenced as * lowest, valid working address (the "top" of the stack). Items on
* positive word offsets from sp. * the stack are referenced as positive word offsets from sp.
*/ */
top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size; top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size;
/* The i486 stack must be aligned at word (4 byte) boundaries. If necessary /* The LM32 stack must be aligned at word (4 byte) boundaries; for
* top_of_stack must be rounded down to the next boundary * floating point use, the stack must be aligned to 8-byte addresses.
* If necessary top_of_stack must be rounded down to the next
* boundary to meet these alignment requirements.
*/ */
top_of_stack &= ~3; top_of_stack = STACK_ALIGN_DOWN(top_of_stack);
size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr; size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr;
/* Save the adjusted stack values in the struct tcb_s */ /* Save the adjusted stack values in the struct tcb_s */
+11 -7
View File
@@ -34,6 +34,8 @@
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/tls.h> #include <nuttx/tls.h>
#include "minerva.h"
/**************************************************************************** /****************************************************************************
* Public Functions * Public Functions
****************************************************************************/ ****************************************************************************/
@@ -98,19 +100,21 @@ int up_use_stack(struct tcb_s *tcb, void *stack, size_t stack_size)
memset(tcb->stack_alloc_ptr, 0xaa, stack_size); memset(tcb->stack_alloc_ptr, 0xaa, stack_size);
#endif #endif
/* The i486 uses a push-down stack: the stack grows toward loweraddresses /* MINERVA uses a push-down stack: the stack grows toward lower
* in memory. The stack pointer register, points to the lowest, valid work * addresses in memory. The stack pointer register points to the
* address (the "top" of the stack). Items on the stack are referenced as * lowest, valid working address (the "top" of the stack). Items on
* positive word offsets from sp. * the stack are referenced as positive word offsets from sp.
*/ */
top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size; top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size;
/* The i486 stack must be aligned at word (4 byte) boundaries. If necessary /* The MINERVA stack must be aligned at word (4 byte) boundaries; for
* top_of_stack must be rounded down to the next boundary * floating point use, the stack must be aligned to 8-byte addresses.
* If necessary top_of_stack must be rounded down to the next boundary
* to meet these alignment requirements.
*/ */
top_of_stack &= ~3; top_of_stack = STACK_ALIGN_DOWN(top_of_stack);
size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr; size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr;
/* Save the adjusted stack values in the struct tcb_s */ /* Save the adjusted stack values in the struct tcb_s */
+3 -12
View File
@@ -34,6 +34,8 @@
#include <nuttx/arch.h> #include <nuttx/arch.h>
#include <nuttx/tls.h> #include <nuttx/tls.h>
#include "up_internal.h"
/**************************************************************************** /****************************************************************************
* Public Functions * Public Functions
****************************************************************************/ ****************************************************************************/
@@ -98,19 +100,8 @@ int up_use_stack(struct tcb_s *tcb, void *stack, size_t stack_size)
memset(tcb->stack_alloc_ptr, 0xaa, stack_size); memset(tcb->stack_alloc_ptr, 0xaa, stack_size);
#endif #endif
/* The i486 uses a push-down stack: the stack grows toward loweraddresses
* in memory. The stack pointer register, points to the lowest, valid work
* address (the "top" of the stack). Items on the stack are referenced as
* positive word offsets from sp.
*/
top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size; top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size;
top_of_stack = STACK_ALIGN_DOWN(top_of_stack);
/* The i486 stack must be aligned at word (4 byte) boundaries. If necessary
* top_of_stack must be rounded down to the next boundary
*/
top_of_stack &= ~3;
size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr; size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr;
/* Save the adjusted stack values in the struct tcb_s */ /* Save the adjusted stack values in the struct tcb_s */
+34 -15
View File
@@ -73,9 +73,6 @@
int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype) int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
{ {
FAR uint8_t *stack_alloc_ptr;
int ret = ERROR;
stack_size += CONFIG_SIM_STACKSIZE_ADJUSTMENT; stack_size += CONFIG_SIM_STACKSIZE_ADJUSTMENT;
#ifdef CONFIG_TLS_ALIGNED #ifdef CONFIG_TLS_ALIGNED
@@ -90,27 +87,49 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
} }
#endif #endif
/* Move up to next even word boundary if necessary */ /* Is there already a stack allocated of a different size? Because of
* alignment issues, stack_size might erroneously appear to be of a
* different size. Fortunately, this is not a critical operation.
*/
size_t adj_stack_size = STACK_ALIGN_UP(stack_size); if (tcb->stack_alloc_ptr && tcb->adj_stack_size != stack_size)
{
/* Yes.. Release the old stack */
/* Allocate the memory for the stack */ up_release_stack(tcb, ttype);
}
/* Do we need to allocate a new stack? */
if (!tcb->stack_alloc_ptr)
{
/* Allocate the stack. If DEBUG is enabled (but not stack debug),
* then create a zeroed stack to make stack dumps easier to trace.
* If TLS is enabled, then we must allocate aligned stacks.
*/
#ifdef CONFIG_TLS_ALIGNED #ifdef CONFIG_TLS_ALIGNED
stack_alloc_ptr = kumm_memalign(TLS_STACK_ALIGN, adj_stack_size); tcb->stack_alloc_ptr = kumm_memalign(TLS_STACK_ALIGN, stack_size);
#else #else
stack_alloc_ptr = kumm_malloc(adj_stack_size); tcb->stack_alloc_ptr = kumm_malloc(stack_size);
#endif #endif
}
/* Was the allocation successful? */ /* Did we successfully allocate a stack? */
if (stack_alloc_ptr) if (tcb->stack_alloc_ptr)
{ {
uintptr_t top_of_stack;
size_t size_of_stack;
top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size;
top_of_stack = STACK_ALIGN_DOWN(top_of_stack);
size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr;
/* Save the values in the TCB */ /* Save the values in the TCB */
tcb->adj_stack_size = adj_stack_size; tcb->stack_base_ptr = tcb->stack_alloc_ptr;
tcb->stack_alloc_ptr = stack_alloc_ptr; tcb->adj_stack_size = size_of_stack;
tcb->stack_base_ptr = tcb->stack_alloc_ptr;
#ifdef CONFIG_STACK_COLORATION #ifdef CONFIG_STACK_COLORATION
/* If stack debug is enabled, then fill the stack with a /* If stack debug is enabled, then fill the stack with a
@@ -122,10 +141,10 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
#endif /* CONFIG_STACK_COLORATION */ #endif /* CONFIG_STACK_COLORATION */
tcb->flags |= TCB_FLAG_FREE_STACK; tcb->flags |= TCB_FLAG_FREE_STACK;
ret = OK; return OK;
} }
return ret; return ERROR;
} }
/**************************************************************************** /****************************************************************************
+20 -8
View File
@@ -69,24 +69,36 @@
int up_use_stack(FAR struct tcb_s *tcb, FAR void *stack, size_t stack_size) int up_use_stack(FAR struct tcb_s *tcb, FAR void *stack, size_t stack_size)
{ {
#if CONFIG_SIM_STACKSIZE_ADJUSTMENT == 0 #if CONFIG_SIM_STACKSIZE_ADJUSTMENT == 0
size_t adj_stack_size; uintptr_t top_of_stack;
size_t size_of_stack;
#ifdef CONFIG_TLS_ALIGNED #ifdef CONFIG_TLS_ALIGNED
/* Make certain that the user provided stack is properly aligned */ /* Make certain that the user provided stack is properly aligned */
DEBUGASSERT(((uintptr_t)stack & TLS_STACK_MASK) == 0); DEBUGASSERT(((uintptr_t)stack & TLS_STACK_MASK) == 0);
#endif #endif
/* Move down to next even word boundary within the pre-allocated stack
* memory, if necessary.
*/
adj_stack_size = STACK_ALIGN_DOWN(stack_size); /* Is there already a stack allocated? */
/* Save the values in the TCB */ if (tcb->stack_alloc_ptr)
{
/* Yes.. Release the old stack allocation */
up_release_stack(tcb, tcb->flags & TCB_FLAG_TTYPE_MASK);
}
/* Save the new stack allocation */
tcb->adj_stack_size = adj_stack_size;
tcb->stack_alloc_ptr = stack; tcb->stack_alloc_ptr = stack;
tcb->stack_base_ptr = tcb->stack_alloc_ptr;
/* Save the adjusted stack values in the struct tcb_s */
top_of_stack = (uintptr_t)tcb->stack_alloc_ptr + stack_size;
top_of_stack = STACK_ALIGN_DOWN(top_of_stack);
size_of_stack = top_of_stack - (uintptr_t)tcb->stack_alloc_ptr;
tcb->stack_base_ptr = tcb->stack_alloc_ptr;
tcb->adj_stack_size = size_of_stack;
#if defined(CONFIG_STACK_COLORATION) #if defined(CONFIG_STACK_COLORATION)
/* If stack debug is enabled, then fill the stack with a /* If stack debug is enabled, then fill the stack with a
+2 -2
View File
@@ -105,14 +105,14 @@ int up_create_stack(FAR struct tcb_s *tcb, size_t stack_size, uint8_t ttype)
if (ttype == TCB_FLAG_TTYPE_KERNEL) if (ttype == TCB_FLAG_TTYPE_KERNEL)
{ {
tcb->stack_alloc_ptr = (uint32_t *)kmm_malloc(stack_size); tcb->stack_alloc_ptr = kmm_malloc(stack_size);
} }
else else
#endif #endif
{ {
/* Use the user-space allocator if this is a task or pthread */ /* Use the user-space allocator if this is a task or pthread */
tcb->stack_alloc_ptr = (uint32_t *)kumm_malloc(stack_size); tcb->stack_alloc_ptr = kumm_malloc(stack_size);
} }
#ifdef CONFIG_DEBUG_FEATURES #ifdef CONFIG_DEBUG_FEATURES