Home | History | Annotate | Download | only in helgrind

Lines Matching defs:ec

264    struct { ULong ull; ExeContext* ec; }
3709 pair.ec = main_get_EC( thr );
3710 tl_assert(pair.ec);
3722 VG_(printf)("LOCAL Kw: thr %p, Kw %llu, ec %p (!!! gc !!!)\n",
3723 thr, pair.ull, pair.ec );
3733 pair.ec = NULL;
3738 VG_(printf)("LOCAL Kw: thr %p, Kw %llu, ec %p\n",
3739 thr, pair.ull, pair.ec );
3741 VG_(pp_ExeContext)(pair.ec);
3923 static void ctxt__rcdec ( RCEC* ec )
3926 tl_assert(ec && ec->magic == RCEC_MAGIC);
3927 tl_assert(ec->rc > 0);
3928 ec->rc--;
3931 static void ctxt__rcinc ( RCEC* ec )
3933 tl_assert(ec && ec->magic == RCEC_MAGIC);
3934 ec->rc++;
3952 /* Find 'ec' in the RCEC list whose head pointer lives at 'headp' and
3955 static void move_RCEC_one_step_forward ( RCEC** headp, RCEC* ec )
3958 if (ec == *headp)
3960 tl_assert(ec != NULL);
3965 if (ec0 == NULL || ec0 == ec) break;
3970 tl_assert(ec0 == ec);
3973 /* ec0 points to ec, ec1 to its predecessor, and ec2 to ec1's
4891 key.ec = NULL;
4913 hist1_seg_start = pair_start->ec;
4920 hist1_seg_end = pair_end->ec;