* arch/x86_64/src/intel64/intel64_checkstack.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include "sched/sched.h"
#include "x86_64_internal.h"
* Pre-processor Definitions
****************************************************************************/
#define X86_64_RED_ZONE 256
* Public Functions
****************************************************************************/
#ifdef CONFIG_STACK_COLORATION
* Name: x86_64_stack_check
*
* Description:
* Determine (approximately) how much stack has been used by searching the
* stack memory for a high water mark. That is, the deepest level of the
* stack that clobbered some recognizable marker in the stack memory.
*
* Input Parameters:
* alloc - Allocation base address of the stack
* size - The size of the stack in bytes
*
* Returned Value:
* The estimated amount of stack space used.
*
****************************************************************************/
size_t x86_64_stack_check(void *stackbase, size_t nbytes)
{
uintptr_t start;
uintptr_t end;
uint32_t *ptr;
size_t mark;
if (nbytes == 0)
{
return 0;
}
start = STACKFRAME_ALIGN_UP((uintptr_t)stackbase + X86_64_RED_ZONE);
end = STACKFRAME_ALIGN_DOWN((uintptr_t)stackbase + nbytes);
nbytes = end - start;
* in memory. We need to start at the lowest address in the stack memory
* allocation and search to higher addresses. The first word we encounter
* that does not have the magic value is the high water mark.
*/
for (ptr = (uint32_t *)start, mark = (nbytes >> 2);
mark > 0 && *ptr == STACK_COLOR;
ptr++, mark--);
return mark << 2;
}
* Name: x86_64_stack_color
*
* Description:
* Write a well know value into the stack
*
****************************************************************************/
void x86_64_stack_color(void *stackbase, size_t nbytes)
{
uint32_t *stkptr;
uintptr_t stkend;
size_t nwords;
uintptr_t sp;
stkptr = (uint32_t *)STACKFRAME_ALIGN_UP(
(uintptr_t)(stackbase + X86_64_RED_ZONE));
if (nbytes == 0)
{
stkend = up_getsp();
if (stkend > (uintptr_t)&sp)
{
stkend = (uintptr_t)&sp;
}
}
else
{
stkend = (uintptr_t)stackbase + nbytes;
}
stkend = STACKFRAME_ALIGN_DOWN(stkend);
nwords = (stkend - (uintptr_t)stkptr) >> 2;
while (nwords-- > 0)
{
*stkptr++ = STACK_COLOR;
}
}
* Name: up_check_tcbstack and friends
*
* Description:
* Determine (approximately) how much stack has been used be searching the
* stack memory for a high water mark. That is, the deepest level of the
* stack that clobbered some recognizable marker in the stack memory.
*
* Input Parameters:
* None
*
* Returned Value:
* The estimated amount of stack space used.
*
****************************************************************************/
size_t up_check_tcbstack(struct tcb_s *tcb, size_t check_size)
{
size_t size;
#ifdef CONFIG_ARCH_ADDRENV
struct addrenv_s *oldenv;
if (tcb->group->tg_addrenv_own != NULL)
{
addrenv_select(tcb->group->tg_addrenv_own, &oldenv);
}
#endif
size = x86_64_stack_check(tcb->stack_base_ptr, check_size);
#ifdef CONFIG_ARCH_ADDRENV
if (tcb->group->tg_addrenv_own != NULL)
{
addrenv_restore(oldenv);
}
#endif
return size;
}
#if CONFIG_ARCH_INTERRUPTSTACK > 3
size_t up_check_intstack(int cpu, size_t check_size)
{
if (check_size == 0)
{
check_size = STACKFRAME_ALIGN_DOWN(CONFIG_ARCH_INTERRUPTSTACK);
}
return x86_64_stack_check((void *)up_get_intstackbase(cpu), check_size);
}
#endif
#endif