HomeSort by: relevance | last modified time | path
    Searched refs:shadow_stack_pos (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_stack_test.cc 25 thr.shadow_stack_pos = &stack[0];
35 *thr.shadow_stack_pos++ = 100;
36 *thr.shadow_stack_pos++ = 101;
55 thr.shadow_stack_pos = &stack[0];
59 *thr.shadow_stack_pos++ = 100 + i;
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_rtl.cpp 155 shadow_stack_pos = shadow_stack;
161 shadow_stack_pos = shadow_stack;
549 thr->shadow_stack_pos = newstack + sz;
559 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
561 if (thr->shadow_stack_pos == thr->shadow_stack_end)
564 thr->shadow_stack_pos[0] = pc;
565 thr->shadow_stack_pos++;
568 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack));
570 thr->shadow_stack_pos--;
628 for (uptr *pos = &thr->shadow_stack[0]; pos < thr->shadow_stack_pos; pos++
    [all...]
tsan_rtl.h 100 uptr *shadow_stack_pos; member in struct:__tsan::JmpBuf
169 uptr *shadow_stack_pos; member in struct:__tsan::ThreadState
417 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
764 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
766 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
768 if (thr->shadow_stack_pos == thr->shadow_stack_end)
771 thr->shadow_stack_pos[0] = pc;
772 thr->shadow_stack_pos++;
783 DCHECK_GT(thr->shadow_stack_pos, thr->shadow_stack);
785 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end)
    [all...]
tsan_rtl_thread.cpp 236 thr->shadow_stack_pos = nullptr;
tsan_interceptors_posix.cpp 497 buf->shadow_stack_pos = thr->shadow_stack_pos;
513 CHECK_GE(thr->shadow_stack_pos, buf->shadow_stack_pos);
515 while (thr->shadow_stack_pos > buf->shadow_stack_pos)
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.cc 529 thr->shadow_stack_pos = newstack + sz;
539 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
541 if (thr->shadow_stack_pos == thr->shadow_stack_end)
544 thr->shadow_stack_pos[0] = pc;
545 thr->shadow_stack_pos++;
548 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack));
550 thr->shadow_stack_pos--;
990 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
992 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
994 if (thr->shadow_stack_pos == thr->shadow_stack_end
    [all...]
tsan_rtl_thread.cc 100 thr->shadow_stack_pos = thr->shadow_stack;
107 thr->shadow_stack_pos = thr->shadow_stack;
132 thr->shadow_stack_pos = nullptr;
tsan_rtl.h 340 uptr *shadow_stack_pos; member in struct:__tsan::JmpBuf
403 uptr *shadow_stack_pos; member in struct:__tsan::ThreadState
645 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
tsan_interceptors.cc 504 buf->shadow_stack_pos = thr->shadow_stack_pos;
541 CHECK_GE(thr->shadow_stack_pos, buf->shadow_stack_pos);
543 while (thr->shadow_stack_pos > buf->shadow_stack_pos)
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_rtl.cpp 429 shadow_stack_pos = shadow_stack;
886 thr->shadow_stack_pos = newstack + sz;
898 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
900 if (thr->shadow_stack_pos == thr->shadow_stack_end)
903 thr->shadow_stack_pos[0] = pc;
904 thr->shadow_stack_pos++;
907 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack));
909 thr->shadow_stack_pos--;
992 uptr* pos = Max(&thr->shadow_stack[0], thr->shadow_stack_pos - kMaxFrames);
993 for (; pos < thr->shadow_stack_pos; pos++)
    [all...]
tsan_rtl.h 102 uptr *shadow_stack_pos; member in struct:__tsan::JmpBuf
165 uptr *shadow_stack_pos; member in struct:__tsan::ThreadState
467 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
784 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
786 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
788 if (thr->shadow_stack_pos == thr->shadow_stack_end)
791 thr->shadow_stack_pos[0] = pc;
792 thr->shadow_stack_pos++;
800 DCHECK_GT(thr->shadow_stack_pos, thr->shadow_stack);
802 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end)
    [all...]
tsan_rtl_thread.cpp 244 thr->shadow_stack_pos = nullptr;
tsan_interceptors_posix.cpp 553 buf->shadow_stack_pos = thr->shadow_stack_pos;
567 CHECK_GE(thr->shadow_stack_pos, buf->shadow_stack_pos);
569 while (thr->shadow_stack_pos > buf->shadow_stack_pos)

Completed in 25 milliseconds