Lines Matching full:stack
3 MPU Stack Objects
6 Thread Stack Creation
14 implementation of other features such as stack protection and userspace. The
19 Stack Guards
22 Stack protection mechanisms require hardware support that can restrict access
28 Stack guards are implemented by using a single MPU region and setting the
30 occur, a fault ensues. The stack guard is defined at the bottom (the lowest
31 address) of the stack.
36 During stack creation, a set of constraints are enforced on the allocation of
37 memory. These constraints include determining the alignment of the stack and
38 the correct sizing of the stack. During linking of the binary, these
48 This means that a 1500 byte stack should be aligned to a 2kB boundary and the
49 stack size should also be adjusted to 2kB to ensure that nothing else is
61 Size and alignment constraints may result in stack allocations being larger
63 some added complexity when implementing stack guards.