Searched refs:stackBottom (Results 1 – 7 of 7) sorted by relevance
/kernel/liteos_a/kernel/base/misc/ |
D | los_stackinfo.c | 44 UINT32 OsStackWaterLineGet(const UINTPTR *stackBottom, const UINTPTR *stackTop, UINT32 *peakUsed) in OsStackWaterLineGet() argument 50 while ((tmp < stackBottom) && (*tmp == OS_STACK_INIT)) { in OsStackWaterLineGet() 53 size = (UINT32)((UINTPTR)stackBottom - (UINTPTR)tmp); in OsStackWaterLineGet()
|
/kernel/liteos_a/arch/arm/arm/src/include/ |
D | asm.h | 50 .macro EXC_SP_SET stackBottom, stackSize, reg0, reg1 55 ldr \reg0, =\stackBottom
|
/kernel/uniproton/src/arch/cpu/armv7-m/common/exc/ |
D | prt_exc.c | 75 excInfo->stackBottom = OsGetSysStackBottom(); in OsExcGetThreadInfo() 77 …excInfo->stackBottom = TRUNCATE((taskInfo.topOfStack + taskInfo.stackSize), OS_TSK_STACK_ADDR_ALIG… in OsExcGetThreadInfo() 125 excInfo->stackBottom = INVALIDSTACKBOTTOM; in OsExcSaveInfo()
|
/kernel/liteos_m/components/backtrace/ |
D | los_backtrace.c | 167 UINTPTR stackTop, stackBottom; in IsValidFP() local 177 stackBottom = taskCB->topOfStack + taskCB->stackSize; in IsValidFP() 182 stackBottom = 0; in IsValidFP() 187 … if (((fp > stackTop) && (fp <= stackBottom)) || ((fp > irqStackTop) && (fp <= irqStackBottom))) { in IsValidFP() 535 UINTPTR stackBottom; in LOS_RecordLR() local 550 if (FindSuitableStack(stackPointer, &topOfStack, &stackBottom) == FALSE) { in LOS_RecordLR() 554 while ((stackPointer < stackBottom) && (count < LRSize)) { in LOS_RecordLR() 555 if (IsValidSP(*(UINT32 *)stackPointer, topOfStack, stackBottom) in LOS_RecordLR()
|
/kernel/liteos_a/kernel/base/include/ |
D | los_stackinfo_pri.h | 76 extern UINT32 OsStackWaterLineGet(const UINTPTR *stackBottom, const UINTPTR *stackTop, UINT32 *peak…
|
/kernel/uniproton/src/include/uapi/hw/armv7-m/ |
D | prt_exc.h | 100 U32 stackBottom; member
|
/kernel/liteos_a/arch/arm/arm/src/ |
D | los_exc.c | 881 UINTPTR stackBottom = runTask->topOfStack + runTask->stackSize; in OsCallStackInfo() local 882 UINT32 *stackPointer = (UINT32 *)stackBottom; in OsCallStackInfo() 894 (*(stackPointer - 1) < stackBottom) && in OsCallStackInfo()
|