Searched refs:CSTACK_END_ADDR (Results 1 – 2 of 2) sorted by relevance
/kernel/liteos_m/components/backtrace/ |
D | los_backtrace.h | 64 #define CSTACK_END_ADDR ((UINTPTR)__section_end(CSTACK_SECTION_NAME)) macro 92 #define CSTACK_END_ADDR ((UINTPTR)&CSTACK_SECTION_END(CSTACK_SECTION_NAME)) 114 #define CSTACK_END_ADDR ((UINTPTR)&CSTACK_SECTION_END) 137 #define CSTACK_END_ADDR ((UINTPTR)&CSTACK_SECTION_END) 159 #define CSTACK_END_ADDR ((UINTPTR)&CSTACK_SECTION_END) 186 #define CSTACK_END_ADDR ((UINTPTR)&CSTACK_SECTION_END) 213 #define CSTACK_END_ADDR ((UINTPTR)&CSTACK_SECTION_END)
|
D | los_backtrace.c | 83 if ((SP >= CSTACK_START_ADDR) && (SP < CSTACK_END_ADDR)) { in OsStackAddrGet() 84 *stackEnd = CSTACK_END_ADDR; in OsStackAddrGet() 91 … CSTACK_START_ADDR, CSTACK_END_ADDR, (UINTPTR)taskCB->topOfStack, *stackEnd, SP); in OsStackAddrGet() 98 *stackEnd = CSTACK_END_ADDR; in OsStackAddrGet() 99 if ((*stackStart < CSTACK_START_ADDR) || (*stackStart >= CSTACK_END_ADDR)) { in OsStackAddrGet() 101 CSTACK_START_ADDR, CSTACK_END_ADDR, *stackStart); in OsStackAddrGet() 292 if ((SP >= CSTACK_START_ADDR) && (SP < CSTACK_END_ADDR)) { in OsStackAddrGet() 293 *stackEnd = CSTACK_END_ADDR; in OsStackAddrGet() 300 … CSTACK_START_ADDR, CSTACK_END_ADDR, (UINTPTR)taskCB->topOfStack, *stackEnd, SP); in OsStackAddrGet() 307 *stackEnd = CSTACK_END_ADDR; in OsStackAddrGet() [all …]
|