Lines Matching defs:ThreadState
396 struct ThreadState { struct
405 // QUESTION: can we can squeeze this into ThreadState::Fast? argument
409 u64 fast_synch_epoch;
413 int ignore_reads_and_writes;
414 uptr *shadow_stack_pos;
415 u64 *racy_shadow_addr;
416 u64 racy_state[2];
419 uptr shadow_stack[kShadowStackSize];
422 uptr *shadow_stack;
423 uptr *shadow_stack_end;
425 MutexSet mset;
426 ThreadClock clock;
428 AllocatorCache alloc_cache;
429 InternalAllocatorCache internal_alloc_cache;
430 Vector<JmpBuf> jmp_bufs;
432 u64 stat[StatCnt];
433 const int tid;
434 const int unique_id;
435 int in_rtl;
459 explicit ThreadState(Context *ctx, int tid, int unique_id, u64 epoch, argument