Lines Matching refs:current_state
214 CLG_(current_state).cost = es->cost; in CLG_()
218 CLG_(init_exec_state)( &CLG_(current_state) ); in CLG_()
219 CLG_(current_state).sig = sigNum; in CLG_()
232 CLG_ASSERT(CLG_(current_state).sig >0); in CLG_()
235 CLG_(post_signal)( CLG_(current_tid), CLG_(current_state).sig ); in CLG_()
248 CLG_ASSERT(sigNum == CLG_(current_state).sig); in CLG_()
258 if (CLG_(current_state).cxt) { in CLG_()
260 fn_number = CLG_(current_state).cxt->fn[0]->number; in CLG_()
264 CLG_(current_state).cxt->fn[0]->name, *pactive); in CLG_()
281 CLG_ASSERT(CLG_(current_state).cost == es->cost); in CLG_()
284 CLG_(current_state).cost ); in CLG_()
290 CLG_(current_state).sig = es->sig; in CLG_()
415 es->cxt = CLG_(current_state).cxt; in exec_state_save()
416 es->collect = CLG_(current_state).collect; in exec_state_save()
417 es->jmps_passed = CLG_(current_state).jmps_passed; in exec_state_save()
418 es->bbcc = CLG_(current_state).bbcc; in exec_state_save()
419 es->nonskipped = CLG_(current_state).nonskipped; in exec_state_save()
420 CLG_ASSERT(es->cost == CLG_(current_state).cost); in exec_state_save()
430 CLG_ASSERT(CLG_(current_state).sig == es->sig); in exec_state_save()
440 CLG_(current_state).cxt = es->cxt; in exec_state_restore()
441 CLG_(current_state).collect = es->collect; in exec_state_restore()
442 CLG_(current_state).jmps_passed = es->jmps_passed; in exec_state_restore()
443 CLG_(current_state).bbcc = es->bbcc; in exec_state_restore()
444 CLG_(current_state).nonskipped = es->nonskipped; in exec_state_restore()
445 CLG_(current_state).cost = es->cost; in exec_state_restore()
446 CLG_(current_state).sig = es->sig; in exec_state_restore()