Home
last modified time | relevance | path

Searched refs:stack_size (Results 1 – 13 of 13) sorted by relevance

/qemu/util/
H A Dcoroutine-ucontext.c48 size_t stack_size; member
109 leaderp->stack_size = size_old; in finish_switch_fiber()
167 leaderp->stack, leaderp->stack_size); in coroutine_trampoline()
201 co->stack_size = COROUTINE_STACK_SIZE; in qemu_coroutine_new()
202 co->stack = qemu_alloc_stack(&co->stack_size); in qemu_coroutine_new()
211 uc.uc_stack.ss_size = co->stack_size; in qemu_coroutine_new()
216 VALGRIND_STACK_REGISTER(co->stack, co->stack + co->stack_size); in qemu_coroutine_new()
227 start_switch_fiber_asan(&fake_stack_save, co->stack, co->stack_size); in qemu_coroutine_new()
275 start_switch_fiber_asan(NULL, to->stack, to->stack_size); in terminate_asan()
295 qemu_free_stack(co->stack, co->stack_size); in qemu_coroutine_delete()
[all …]
H A Dcoroutine-wasm.c31 size_t stack_size; member
64 co->stack_size = COROUTINE_STACK_SIZE; in qemu_coroutine_new()
65 co->stack = qemu_alloc_stack(&co->stack_size); in qemu_coroutine_new()
70 co->stack, co->stack_size, co->asyncify_stack, in qemu_coroutine_new()
80 qemu_free_stack(co->stack, co->stack_size); in qemu_coroutine_delete()
112 leaderp->stack_size = in qemu_coroutine_self()
H A Dcoroutine-sigaltstack.c39 size_t stack_size; member
171 co->stack_size = COROUTINE_STACK_SIZE; in qemu_coroutine_new()
172 co->stack = qemu_alloc_stack(&co->stack_size); in qemu_coroutine_new()
203 ss.ss_size = co->stack_size; in qemu_coroutine_new()
269 qemu_free_stack(co->stack, co->stack_size); in qemu_coroutine_delete()
H A Dcoroutine-windows.c74 const size_t stack_size = COROUTINE_STACK_SIZE; in qemu_coroutine_new() local
78 co->fiber = CreateFiber(stack_size, coroutine_trampoline, &co->base); in qemu_coroutine_new()
/qemu/system/
H A Dasync-teardown.c84 size_t stack_size = CLONE_STACK_SIZE; in new_stack_for_clone() local
88 stack_ptr = qemu_alloc_stack(&stack_size); in new_stack_for_clone()
89 stack_ptr += stack_size; in new_stack_for_clone()
/qemu/bsd-user/aarch64/
H A Dtarget_arch_thread.h25 abi_ulong arg, abi_ulong stack_base, abi_ulong stack_size) in target_thread_set_upcall() argument
33 sp = ROUND_DOWN(stack_base + stack_size, 16); in target_thread_set_upcall()
/qemu/bsd-user/riscv/
H A Dtarget_arch_thread.h26 abi_ulong stack_size) in target_thread_set_upcall() argument
30 sp = ROUND_DOWN(stack_base + stack_size, 16); in target_thread_set_upcall()
/qemu/bsd-user/arm/
H A Dtarget_arch_thread.h25 abi_ulong arg, abi_ulong stack_base, abi_ulong stack_size) in target_thread_set_upcall() argument
33 sp = (u_int)(stack_base + stack_size) & ~0x7; in target_thread_set_upcall()
/qemu/bsd-user/i386/
H A Dtarget_arch_thread.h25 abi_ulong arg, abi_ulong stack_base, abi_ulong stack_size) in target_thread_set_upcall() argument
/qemu/bsd-user/x86_64/
H A Dtarget_arch_thread.h25 abi_ulong arg, abi_ulong stack_base, abi_ulong stack_size) in target_thread_set_upcall() argument
/qemu/linux-user/
H A Dflat.h37 abi_ulong stack_size; /* Size of stack, in bytes */ member
H A Dflatload.c214 stack_len = ntohl(hdr->stack_size); in load_flat_file()
/qemu/target/hexagon/
H A Dcpu.c81 target_ulong stack_size = 0x10000; in adjust_stack_ptrs() local
87 if (stack_start + 0x1000 >= addr && addr >= (stack_start - stack_size)) { in adjust_stack_ptrs()