Searched refs:STACK_SIZE (Results 1 – 24 of 24) sorted by relevance
/xen-4.10.0-shim-comet/xen/include/asm-arm/ |
A D | current.h | 30 return (struct cpu_info *)((sp & ~(STACK_SIZE - 1)) + STACK_SIZE - sizeof(struct cpu_info)); in get_cpu_info()
|
A D | regs.h | 44 ASSERT(diff < STACK_SIZE); \
|
A D | config.h | 192 #define STACK_SIZE (PAGE_SIZE << STACK_ORDER) macro
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/ |
A D | current.h | 33 return (sp & (STACK_SIZE-1)) >> PAGE_SHIFT; in get_stack_page() 57 return (struct cpu_info *)((sp | (STACK_SIZE - 1)) + 1) - 1; in get_cpu_info()
|
A D | regs.h | 11 ASSERT(diff < STACK_SIZE); \
|
A D | config.h | 69 #define STACK_SIZE (PAGE_SIZE << STACK_ORDER) macro
|
A D | asm_defns.h | 132 movl $STACK_SIZE-1, %e##reg; \
|
/xen-4.10.0-shim-comet/xen/arch/x86/oprofile/ |
A D | backtrace.c | 137 unsigned long stack_base = (stack & ~(STACK_SIZE - 1)) + STACK_SIZE; in valid_hypervisor_stack()
|
/xen-4.10.0-shim-comet/xen/arch/arm/ |
A D | smpboot.c | 50 static unsigned char __initdata cpu0_boot_stack[STACK_SIZE] 51 __attribute__((__aligned__(STACK_SIZE)));
|
A D | xen.lds.S | 178 . = ALIGN(STACK_SIZE);
|
A D | domain.c | 521 BUILD_BUG_ON( sizeof(struct cpu_info) > STACK_SIZE ); in vcpu_initialise() 528 + STACK_SIZE in vcpu_initialise()
|
A D | traps.c | 1174 high = (low & ~(STACK_SIZE - 1)) + in show_trace() 1175 (STACK_SIZE - sizeof(struct cpu_info)); in show_trace() 1210 if ( ((long)stack & (STACK_SIZE-BYTES_PER_LONG)) == 0 ) in show_stack()
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | traps.c | 194 unsigned int i, *stack, addr, mask = STACK_SIZE; in compat_show_guest_stack() 246 BUILD_BUG_ON(PAGE_SIZE == STACK_SIZE); in compat_show_guest_stack() 258 unsigned long mask = STACK_SIZE; in show_guest_stack() 316 BUILD_BUG_ON(PAGE_SIZE == STACK_SIZE); in show_guest_stack() 362 return ROUNDUP(sp, STACK_SIZE) - in get_stack_trace_bottom() 381 return ROUNDUP(sp, STACK_SIZE) - sizeof(unsigned long); in get_stack_dump_bottom() 515 unsigned long curr_stack_base = esp & ~(STACK_SIZE - 1); in show_stack_overflow() 525 esp_bottom = (esp | (STACK_SIZE - 1)) + 1; in show_stack_overflow()
|
A D | xen.lds.S | 319 ASSERT(IS_ALIGNED(cpu0_stack, STACK_SIZE), "cpu0_stack misaligned")
|
A D | setup.c | 96 char __section(".bss.stack_aligned") __aligned(STACK_SIZE) 97 cpu0_stack[STACK_SIZE]; 616 unsigned long *stack = (void*)(get_stack_bottom() & ~(STACK_SIZE - 1)); in reinit_bsp_stack() 1116 "1" (__va(__pa(cpu0_stack))), "2" (STACK_SIZE / 8) in __start_xen()
|
A D | tboot.c | 260 p = (void *)((unsigned long)stack_base[i] + STACK_SIZE - in mfn_in_guarded_stack()
|
A D | mm.c | 5507 BUILD_BUG_ON((PRIMARY_STACK_SIZE + PAGE_SIZE) > STACK_SIZE); in memguard_guard_stack() 5508 p = (void *)((unsigned long)p + STACK_SIZE - in memguard_guard_stack() 5515 p = (void *)((unsigned long)p + STACK_SIZE - in memguard_unguard_stack()
|
/xen-4.10.0-shim-comet/xen/arch/x86/boot/ |
A D | x86_64.S | 19 or $(STACK_SIZE-CPUINFO_sizeof),%rsp
|
A D | head.S | 398 lea STACK_SIZE + sym_esi(cpu0_stack), %esp 444 lea STACK_SIZE + sym_esi(cpu0_stack), %esp
|
/xen-4.10.0-shim-comet/xen/arch/x86/x86_64/ |
A D | traps.c | 310 BUILD_BUG_ON((IST_MAX + 2) * PAGE_SIZE + PRIMARY_STACK_SIZE > STACK_SIZE); in subarch_percpu_traps_init()
|
/xen-4.10.0-shim-comet/xen/arch/arm/arm32/ |
A D | head.S | 448 add sp, #STACK_SIZE /* (which grows down from the top). */
|
/xen-4.10.0-shim-comet/xen/arch/arm/arm64/ |
A D | head.S | 587 add x0, x0, #STACK_SIZE /* (which grows down from the top). */
|
/xen-4.10.0-shim-comet/xen/arch/x86/cpu/ |
A D | common.c | 717 stack_top = stack_bottom & ~(STACK_SIZE - 1); in load_system_tables()
|
/xen-4.10.0-shim-comet/xen/arch/x86/efi/ |
A D | efi-boot.h | 268 [stkoff] "i" (STACK_SIZE - sizeof(struct cpu_info)), in efi_arch_post_exit_boot()
|
Completed in 45 milliseconds