cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

stack.S (331B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * Common heap and stack allocations
      4 */
      5
      6#include <linux/linkage.h>
      7
      8	.data
      9SYM_DATA(HEAP,		.long rm_heap)
     10SYM_DATA(heap_end,	.long rm_stack)
     11
     12	.bss
     13	.balign	16
     14SYM_DATA(rm_heap,	.space 2048)
     15
     16SYM_DATA_START(rm_stack)
     17	.space	2048
     18SYM_DATA_END_LABEL(rm_stack, SYM_L_GLOBAL, rm_stack_end)