Searched refs:STACK_SIZE (Results 1 – 25 of 25) sorted by relevance
/xen/xen/include/asm-x86/ |
A D | current.h | 33 return (sp & (STACK_SIZE-1)) >> PAGE_SHIFT; in get_stack_page() 82 return (struct cpu_info *)((sp | (STACK_SIZE - 1)) + 1) - 1; in get_cpu_info_from_stack() 172 [stack_mask] "i" (STACK_SIZE - 1), \
|
A D | regs.h | 11 ASSERT(diff < STACK_SIZE); \
|
A D | asm_defns.h | 138 movq $STACK_SIZE-1, %r##reg; \ 140 movl $STACK_SIZE-1, %e##reg; \
|
A D | config.h | 67 #define STACK_SIZE (PAGE_SIZE << STACK_ORDER) macro
|
/xen/xen/include/asm-arm/arm64/ |
A D | macros.h | 8 add \dst, sp, #STACK_SIZE 9 and \dst, \dst, #~(STACK_SIZE - 1)
|
/xen/xen/include/asm-arm/ |
A D | current.h | 40 return (struct cpu_info *)((sp & ~(STACK_SIZE - 1)) + in get_cpu_info() 41 STACK_SIZE - sizeof(struct cpu_info)); in get_cpu_info()
|
A D | regs.h | 53 ASSERT(diff < STACK_SIZE); in guest_mode()
|
A D | config.h | 187 #define STACK_SIZE (PAGE_SIZE << STACK_ORDER) macro
|
/xen/xen/arch/x86/oprofile/ |
A D | backtrace.c | 134 unsigned long stack_base = (stack & ~(STACK_SIZE - 1)) + STACK_SIZE; in valid_hypervisor_stack()
|
/xen/xen/arch/x86/boot/ |
A D | x86_64.S | 50 and $~(STACK_SIZE - 1), %eax 76 .quad cpu0_stack + STACK_SIZE - CPUINFO_sizeof
|
A D | head.S | 401 lea STACK_SIZE - CPUINFO_sizeof + sym_esi(cpu0_stack), %esp 451 lea STACK_SIZE - CPUINFO_sizeof + sym_esi(cpu0_stack), %esp
|
/xen/xen/arch/arm/ |
A D | smpboot.c | 53 static unsigned char __initdata cpu0_boot_stack[STACK_SIZE] 54 __attribute__((__aligned__(STACK_SIZE)));
|
A D | xen.lds.S | 199 . = ALIGN(STACK_SIZE);
|
A D | domain.c | 562 BUILD_BUG_ON( sizeof(struct cpu_info) > STACK_SIZE ); in arch_vcpu_create() 569 + STACK_SIZE in arch_vcpu_create()
|
A D | traps.c | 1124 high = (low & ~(STACK_SIZE - 1)) + in show_trace() 1125 (STACK_SIZE - sizeof(struct cpu_info)); in show_trace() 1160 if ( ((long)stack & (STACK_SIZE-BYTES_PER_LONG)) == 0 ) in show_stack()
|
/xen/xen/arch/x86/acpi/ |
A D | wakeup_prot.S | 102 and $~(STACK_SIZE - 1), %eax
|
/xen/xen/arch/x86/ |
A D | traps.c | 237 unsigned int i, *stack, addr, mask = STACK_SIZE; in compat_show_guest_stack() 300 unsigned long mask = STACK_SIZE; in show_guest_stack() 395 return ROUNDUP(sp, STACK_SIZE) - in get_stack_trace_bottom() 423 return ROUNDUP(sp, STACK_SIZE) - sizeof(unsigned long); in get_stack_dump_bottom() 576 unsigned long curr_stack_base = esp & ~(STACK_SIZE - 1); in show_stack_overflow() 586 esp_bottom = (esp | (STACK_SIZE - 1)) + 1; in show_stack_overflow()
|
A D | xen.lds.S | 380 ASSERT(IS_ALIGNED(cpu0_stack, STACK_SIZE), "cpu0_stack misaligned")
|
A D | smpboot.c | 566 stack_start = stack_base[cpu] + STACK_SIZE - sizeof(struct cpu_info); in do_boot_cpu() 827 for ( off = rc = 0; !rc && off < STACK_SIZE; off += PAGE_SIZE ) in setup_cpu_root_pgt() 1118 stack_base[0] = (void *)((unsigned long)stack_start & ~(STACK_SIZE - 1)); in smp_prepare_cpus()
|
A D | setup.c | 138 char __section(".bss.stack_aligned") __aligned(STACK_SIZE) 139 cpu0_stack[STACK_SIZE]; 660 unsigned long *stack = (void*)(get_stack_bottom() & ~(STACK_SIZE - 1)); in reinit_bsp_stack() 1340 "1" (__va(__pa(cpu0_stack))), "2" (STACK_SIZE / 8) in __start_xen()
|
A D | tboot.c | 261 p = (void *)((unsigned long)stack_base[i] + STACK_SIZE - in mfn_in_guarded_stack()
|
/xen/xen/arch/x86/x86_64/ |
A D | traps.c | 313 BUILD_BUG_ON((IST_MAX + 1) * PAGE_SIZE + PRIMARY_STACK_SIZE > STACK_SIZE); in subarch_percpu_traps_init()
|
/xen/xen/arch/arm/arm64/ |
A D | head.S | 793 add x3, x3, #STACK_SIZE /* (which grows down from the top). */
|
/xen/xen/arch/arm/arm32/ |
A D | head.S | 654 add sp, #STACK_SIZE /* (which grows down from the top). */
|
/xen/xen/arch/x86/cpu/ |
A D | common.c | 740 stack_top = stack_bottom & ~(STACK_SIZE - 1); in load_system_tables()
|
Completed in 44 milliseconds