Lines Matching refs:current_state

215     CLG_(current_state).cost = es->cost;  in CLG_()
219 CLG_(init_exec_state)( &CLG_(current_state) ); in CLG_()
220 CLG_(current_state).sig = sigNum; in CLG_()
233 CLG_ASSERT(CLG_(current_state).sig >0); in CLG_()
236 CLG_(post_signal)( CLG_(current_tid), CLG_(current_state).sig ); in CLG_()
249 CLG_ASSERT(sigNum == CLG_(current_state).sig); in CLG_()
259 if (CLG_(current_state).cxt) { in CLG_()
261 fn_number = CLG_(current_state).cxt->fn[0]->number; in CLG_()
265 CLG_(current_state).cxt->fn[0]->name, *pactive); in CLG_()
282 CLG_ASSERT(CLG_(current_state).cost == es->cost); in CLG_()
285 CLG_(current_state).cost ); in CLG_()
291 CLG_(current_state).sig = es->sig; in CLG_()
416 es->cxt = CLG_(current_state).cxt; in exec_state_save()
417 es->collect = CLG_(current_state).collect; in exec_state_save()
418 es->jmps_passed = CLG_(current_state).jmps_passed; in exec_state_save()
419 es->bbcc = CLG_(current_state).bbcc; in exec_state_save()
420 es->nonskipped = CLG_(current_state).nonskipped; in exec_state_save()
421 CLG_ASSERT(es->cost == CLG_(current_state).cost); in exec_state_save()
431 CLG_ASSERT(CLG_(current_state).sig == es->sig); in exec_state_save()
441 CLG_(current_state).cxt = es->cxt; in exec_state_restore()
442 CLG_(current_state).collect = es->collect; in exec_state_restore()
443 CLG_(current_state).jmps_passed = es->jmps_passed; in exec_state_restore()
444 CLG_(current_state).bbcc = es->bbcc; in exec_state_restore()
445 CLG_(current_state).nonskipped = es->nonskipped; in exec_state_restore()
446 CLG_(current_state).cost = es->cost; in exec_state_restore()
447 CLG_(current_state).sig = es->sig; in exec_state_restore()