Searched refs:child_stack (Results 1 - 4 of 4) sorted by relevance

/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_s390.cpp58 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, argument
60 if (!fn || !child_stack) {
64 CHECK_EQ(0, (uptr)child_stack % 16);
67 child_stack = (char *)child_stack - 160;
69 child_stack = (char *)child_stack - 96;
72 ((unsigned long *)child_stack)[0] = 0;
74 ((unsigned long *)child_stack)[1] = (uptr)fn;
75 ((unsigned long *)child_stack)[
[all...]
H A Dsanitizer_linux.cpp1282 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, argument
1285 if (!fn || !child_stack)
1287 CHECK_EQ(0, (uptr)child_stack % 16);
1288 child_stack = (char *)child_stack - 2 * sizeof(unsigned long long);
1289 ((unsigned long long *)child_stack)[0] = (uptr)fn;
1290 ((unsigned long long *)child_stack)[1] = (uptr)arg;
1296 * %rsi = child_stack,
1329 "S"(child_stack),
1338 uptr internal_clone(int (*fn)(void *), void *child_stack, in argument
1414 internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1455 internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1506 internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1547 internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1656 internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
1721 internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg, int *parent_tidptr, void *newtls, int *child_tidptr) argument
[all...]
H A Dsanitizer_linux.h83 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg,
92 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg);
H A Dsanitizer_netbsd.cpp342 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, argument
346 return _REAL(clone, fn, child_stack, flags, arg);

Completed in 221 milliseconds