Home | History | Annotate | Download | only in helgrind

Lines Matching defs:TSW

160    in tsw not only a ThrID but also minimum 4+1 other bits (access size
4208 This binds a TSW triple (thread, size, R/W) to an RCEC.
4430 /// OldRef in the hashtable by using ask key the guestaddress ^ tsw.
4438 This allows to use a TSW as a fully initialised UInt e.g. in
4447 } TSW; // Thread+Size+Writeness
4450 TSW tsw;
4467 /* Returns the or->tsw as an UInt */
4470 return *(const UInt*)(&or->acc.tsw);
4473 /* Compare the tsw component for 2 OldRef.
4603 example.acc.tsw = (TSW) {.thrid = thrid,
4622 tl_assert(ref->acc.tsw.thrid == thrid);
4635 ref->acc.tsw = (TSW) {.thrid = thrid,
4699 if (cand_ref->acc.tsw.thrid == thrid)
4704 if ((!cand_ref->acc.tsw.isW) && (!isW))
4709 cand_ref_szB = cand_ref->acc.tsw.szB;
4731 tl_assert(ref->acc.tsw.thrid);
4742 *resThr = Thr__from_ThrID(ref->acc.tsw.thrid);
4744 *resIsW = ref->acc.tsw.isW;
4766 ref_szB = ref->acc.tsw.szB;
4775 Thr__from_ThrID(ref->acc.tsw.thrid),
4778 ref->acc.tsw.isW,
4826 mru.acc = (Thr_n_RCEC) {.tsw = {.thrid = 0,
4863 tl_assert (oldref->acc.tsw.thrid);
6232 Thr_n_RCEC and TSW). */
6241 STATIC_ASSERT(sizeof(TSW) == sizeof(UInt));
6469 VG_(printf)( " libhb: oldref bind tsw/rcec "