Searched refs:tg (Results 1 - 15 of 15) sorted by relevance

/barrelfish-2018-10-04/usr/replay/
H A Dmaster.c134 tg_stack_peek(struct task_graph *tg, int i) argument
136 assert(i < tg->stack_nr);
137 return tg->stack[tg->stack_size - i];
141 tg_pop(struct task_graph *tg) argument
144 if (tg->stack_nr == 0)
146 ret = tg->stack[tg->stack_size +1 - tg->stack_nr];
147 tg
153 tg_push(struct task_graph *tg, struct pid_entry *pe) argument
161 __build_taskgraph_stack(struct task_graph *tg) argument
172 build_taskgraph_stack(struct task_graph *tg) argument
182 tg_reset(struct task_graph *tg) argument
193 tg_complete(struct task_graph *tg, struct pid_entry *pe) argument
259 struct task_graph *tg = b->st; local
432 build_taskgraph(struct trace_list *tl, struct task_graph *tg) argument
512 print_taskgraph(struct task_graph *tg) argument
538 print_task(struct task_graph *tg, int pid) argument
584 trace_bufs_init(struct task_graph *tg) argument
609 print_all_tasks(struct task_graph *tg) argument
799 slaves_connect(struct task_graph *tg) argument
916 slaves_connect(struct task_graph *tg) argument
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Demu_par.c229 TG = GB = Chp(pw2)->tg;
1024 pword * gctg; /* tg after last gc */
1345 _put_memory(&cd->stacks, (generic_ptr) BChp(bcommon)->tg,
1346 (char *)BChp(bnew)->tg - (char*)BChp(bcommon)->tg);
1356 || cd->tg_copy != BChp(bcopy)->tg
1373 _put_memory(&cd->stacks, (generic_ptr) BChp(bcopy)->tg,
1374 (char *)BChp(bcommon)->tg - (char*)BChp(bcopy)->tg);
1377 BChp(broot)->sp, BChp(bcopy)->tg);
[all...]
H A Dproc_desc.c384 pword *tg = TG; local
389 Push_Struct_Frame(d_.syserror); ++tg;
390 Make_Integer(tg, -err); ++tg;
391 Make_Struct(tg, TG); ++tg;
392 tg->val.did = module;
393 tg++->tag.all = mod_tag.all;
394 tg->val.did = module;
395 tg
[all...]
H A Dtypes.h352 pword *tg; member in struct:control::choice_frame
360 pword *tg; member in struct:control::parallel_frame
371 pword *tg; member in struct:control::invocation_frame
408 pword *tg; member in struct:control::exception_frame
479 pword * tg; /* top of global stack */ member in struct:machine
518 pword * gctg; /* tg after last garbage collection */
H A Dbip_delay.c91 p_last_scheduled(value vg, type tg),
543 pword *tg = TG_ORIG; local
545 word gsize = 2 * (Gbl_Tg - tg);
553 while (tg < Gbl_Tg)
555 switch (TagType(tg->tag))
559 tg += SUSP_SIZE;
564 tg += 2;
568 size_hb += 2 * BufferPwords(tg);
569 tg += BufferPwords(tg);
2143 p_last_scheduled(value vg, type tg) argument
[all...]
H A Dbip_control.c87 p_make_tf(value vpush, type tpush, value vi, type ti, value vg, type tg, value vm, type tm, value vlm, type tlm, value vp, type tp, value vf, type tf),
1052 * If tg/vg is not a proper goal, we use true/0 for proc
1055 p_make_tf(value vpush, type tpush, value vi, type ti, value vg, type tg, value vm, type tm, value vlm, type tlm, value vp, type tp, value vf, type tf) argument
1074 goal_did = IsStructure(tg) ? vg.ptr->val.did
1075 : IsAtom(tg) ? vg.did
1076 : IsList(tg) ? d_.list
1077 : IsNil(tg) ? d_.nil
1095 Push_Dbg_Frame(pw, invoc, vg, tg, depth, vp.nint, proc, d_.empty, 0, 0, 0, vm.did);
1099 Make_Dbg_Frame(pw, invoc, vg, tg, depth, vp.nint, proc, d_.empty, 0, 0, 0, vm.did);
H A Dgc_stacks.c136 #define Chp_Tg(b) (((b).top - 1)->frame.chp->tg)
479 Safe_Add_To_Pointer(GCTG, GCTG - BChp(GCB.args)->tg, (pword *) TT, ideal_gc_trigger);
551 GCB.chp->tg = chp.chp->tg;
713 Print_Err("GB != B->tg");
719 chp->tg = TG;
733 pw->tag.kernel = TNIL; /* for updating chp->tg) */
752 TG = chp.chp->tg;
790 register pword *prev_tg = fp.chp->tg;
1312 * GCB must point to a frame that has tg,s
[all...]
H A Demu_export.h640 while (BChp(_gcb)->tg >= GCTG && \
987 OlderStampThanGlobalAddress(p,BChp(b)->tg)
989 #define OlderStampThanGlobalAddress(p,tg) \
990 ((p)->val.ptr < tg)
1001 (p)->val.ptr = BChp(B.args)->tg;\
1005 (p)[SUSP_STATE].val.ptr = BChp(B.args)->tg;\
1190 #define ChpOracle(b) (Chp(b)->tg - ORC_SIZE)
1191 #define BOracle(b) (BChp(b)->tg - ORC_SIZE)
H A Demu.c219 #define TG g_emu_.tg
235 #define Declare_Tg register pword *tg;
236 #define TG tg
238 #define Export_B_Sp_Tg_Tt g_emu_.sp=sp; g_emu_.e=e; g_emu_.tg=tg;\
241 #define Import_Tg_Tt tg=g_emu_.tg; Import_None
515 GB = Chp(Old_B_Reg)->tg; \
528 GB = Chp(pw)->tg; \
1537 Exception(pw1)->tg
[all...]
H A Demu_c_env.c169 /* wl_init() must be done between saving tg_before and tg */
208 b_aux.invoc->tg = GB = TG; /* for retry from this frame */
2452 pword *tg = TG;
2463 check_trail2(print, tt, BChp(fp.args)->tt, tg);
2465 tg = BChp(fp.args)->tg;
2450 pword *tg = TG; local
H A Demu_util.c566 " sp=0x%x tg=0x%x tt=0x%x e=0x%x ld=0x%x\n",
567 BChp(fp.args)->sp, BChp(fp.args)->tg,
H A Dsepia.h1319 #define TG g_emu_.tg
1397 #define Gbl_Tg g_emu_.tg
H A Dbip_arith.c769 p_gcd_ext(value v1, type t1, value v2, type t2, value s, type ts, value t, type tt, value g, type tg) argument
780 Check_Output_Integer_Or_Bignum(tg)
791 Request_Unify_Pw(g, tg, res3.val, res3.tag);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Dkssl.c2011 time_t now, tl, tg, tr, tz_offset; local
2128 tm_g = gmtime(&now); tg = mktime(tm_g);
2129 tz_offset = tg - tl;
/barrelfish-2018-10-04/usr/eclipseclp/documents/internal/kernel/
H A Dkernel.tex1801 sp, tg, tt, e, Catcher, Recovery, Module
1813 \item restore sp, tg, e from catch frame, untrail

Completed in 190 milliseconds