OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shadow_stack_pos
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/tsan/tests/unit/
tsan_stack_test.cc
30
*thr.
shadow_stack_pos
++ = 100;
31
*thr.
shadow_stack_pos
++ = 101;
65
*thr.
shadow_stack_pos
++ = 100;
66
*thr.
shadow_stack_pos
++ = 101;
67
*thr.
shadow_stack_pos
++ = 102;
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc
89
,
shadow_stack_pos
(&shadow_stack[0])
300
if (thr->
shadow_stack_pos
== 0) // May happen during bootstrap.
303
thr->
shadow_stack_pos
[0] = pc;
304
thr->
shadow_stack_pos
++;
307
thr->
shadow_stack_pos
- thr->shadow_stack);
309
thr->
shadow_stack_pos
--;
641
DCHECK_GE(thr->
shadow_stack_pos
, &thr->shadow_stack[0]);
643
DCHECK_LT(thr->
shadow_stack_pos
, &thr->shadow_stack[kShadowStackSize]);
645
if (thr->
shadow_stack_pos
== thr->shadow_stack_end) {
653
thr->
shadow_stack_pos
= newstack + sz
[
all
...]
tsan_sync.cc
257
n_ = thr->
shadow_stack_pos
- thr->shadow_stack;
tsan_rtl.h
392
uptr *
shadow_stack_pos
;
member in struct:__tsan::JmpBuf
414
uptr *
shadow_stack_pos
;
member in struct:__tsan::ThreadState
tsan_interceptors.cc
336
if (thr->
shadow_stack_pos
== 0) // called from libc guts during bootstrap
344
buf->
shadow_stack_pos
= thr->
shadow_stack_pos
;
353
CHECK_GE(thr->
shadow_stack_pos
, buf->
shadow_stack_pos
);
355
while (thr->
shadow_stack_pos
> buf->
shadow_stack_pos
)
[
all
...]
tsan_rtl_thread.cc
103
args->thr->
shadow_stack_pos
= thr->shadow_stack;
Completed in 68 milliseconds