Searched refs:stack (Results 1 – 25 of 51) sorted by relevance
123
/bionic/libc/arch-arm/bionic/ |
D | __bionic_clone.S | 34 # save registers to parent stack 45 # Push 'fn' and 'arg' onto the child stack. 66 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
|
/bionic/libc/arch-common/bionic/ |
D | crtend_so.S | 30 .section .note.GNU-stack,"",%progbits
|
D | crtend.S | 44 .section .note.GNU-stack,"",%progbits
|
/bionic/libc/arch-arm64/bionic/ |
D | __bionic_clone.S | 34 # Push 'fn' and 'arg' onto the child stack.
|
/bionic/libc/arch-x86_64/bionic/ |
D | __bionic_clone.S | 33 # Copy 'fn' and 'arg' onto the child stack.
|
/bionic/libc/malloc_hooks/ |
D | Android.bp | 33 "-fno-stack-protector",
|
/bionic/libc/kernel/uapi/linux/ |
D | sched.h | 55 __aligned_u64 stack; member
|
/bionic/libc/arch-x86/bionic/ |
D | __bionic_clone.S | 22 # Copy 'fn' and 'arg' onto the child stack
|
/bionic/linker/ |
D | Android.bp | 29 "-fno-stack-protector", 70 "-fno-stack-protector", 81 "-fno-stack-protector", 266 // Leave the symbols in the shared library so that stack unwinders can produce
|
/bionic/libc/malloc_debug/ |
D | Android.bp | 98 "-fno-stack-protector",
|
/bionic/libm/x86_64/ |
D | e_hypot.S | 194 .section .note.GNU-stack, ""
|
D | s_atan.S | 907 .section .note.GNU-stack, ""
|
D | e_log10.S | 787 .section .note.GNU-stack, ""
|
D | s_cbrt.S | 734 .section .note.GNU-stack, ""
|
D | s_log1p.S | 809 .section .note.GNU-stack, ""
|
/bionic/libm/x86/ |
D | e_hypot.S | 219 .section .note.GNU-stack, ""
|
D | s_sin.S | 906 .section .note.GNU-stack, ""
|
D | s_cos.S | 891 .section .note.GNU-stack, ""
|
D | s_cbrt.S | 737 .section .note.GNU-stack, ""
|
D | e_log10.S | 794 .section .note.GNU-stack, ""
|
D | s_tan.S | 1765 .section .note.GNU-stack, ""
|
D | s_atan.S | 933 .section .note.GNU-stack, ""
|
D | e_cosh.S | 1348 .section .note.GNU-stack, ""
|
/bionic/libc/ |
D | Android.bp | 136 // libc_bootstrap.a - -fno-stack-protector and -ffreestanding 139 // Code that implements the stack protector (or that runs before TLS has been set up) needs to be 140 // compiled with -fno-stack-protector, since it accesses the stack canary TLS slot. In the linker, 168 cflags: ["-fno-stack-protector", "-ffreestanding"], 172 // libc_init_static.cpp and libc_init_dynamic.cpp need to be built without stack protector. 174 // the stack protector global variable. 181 "-fno-stack-protector", 193 cflags: ["-fno-stack-protector"], 211 // Don't use ridiculous amounts of stack. 1458 "-fno-stack-protector", [all …]
|
/bionic/tests/ |
D | pthread_test.cpp | 165 void* stack = mmap(nullptr, stack_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); in TEST() local 166 ASSERT_NE(MAP_FAILED, stack); in TEST() 167 memset(stack, 0xff, stack_size); in TEST() 171 ASSERT_EQ(0, pthread_attr_setstack(&attr, stack, stack_size)); in TEST() 180 ASSERT_EQ(0, munmap(stack, stack_size)); in TEST() 710 void* stack = mmap(nullptr, stack_size, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0); in TEST() local 714 pthread_attr_setstack(&a, stack, stack_size); in TEST() 719 ASSERT_EQ(0, munmap(stack, stack_size)); in TEST()
|
123