Home
last modified time | relevance | path

Searched refs:SCM_FRAME_LOCAL (Results 1 – 10 of 10) sorted by relevance

/dports/lang/guile/guile-3.0.7/libguile/
H A Dvm.c985 SCM_FRAME_LOCAL (fp, nlocals + n) = SCM_FRAME_LOCAL (fp, npositional + n); in bind_kwargs()
990 SCM_FRAME_LOCAL (fp, n++) = SCM_UNDEFINED; in bind_kwargs()
1069 SCM_FRAME_LOCAL (new_fp, 0) = proc; in push_interrupt_frame()
1285 SCM_FRAME_LOCAL (thread->vm.fp, 0) = ret; in foreign_call()
1429 tag = SCM_FRAME_LOCAL (vp->fp, 1); in abort_to_prompt()
1497 SCM proc = SCM_FRAME_LOCAL (vp->fp, 0); in get_callee_vcode()
1505 SCM_FRAME_LOCAL (vp->fp, 0) = proc; in get_callee_vcode()
1521 SCM_FRAME_LOCAL (vp->fp, n + 1) = SCM_FRAME_LOCAL (vp->fp, n); in get_callee_vcode()
1524 SCM_FRAME_LOCAL (vp->fp, 0) = proc; in get_callee_vcode()
1577 SCM_FRAME_LOCAL (call_fp, 0) = proc; in scm_call_n()
[all …]
H A Dframes.c130 return SCM_FRAME_LOCAL (fp, 0); in scm_c_frame_closure()
355 vals = scm_cons (SCM_FRAME_LOCAL (fp, n), vals); in scm_frame_return_values()
H A Dframes.h112 #define SCM_FRAME_LOCAL(fp,i) (SCM_FRAME_SLOT (fp, i)->as_scm) macro
H A Dintrinsics.c436 SCM callee = SCM_FRAME_LOCAL (thread->vm.fp, 0); in error_wrong_num_args()
H A Dvm-engine.c242 #define FP_REF(i) SCM_FRAME_LOCAL (VP->fp, i)
243 #define FP_SET(i,o) SCM_FRAME_LOCAL (VP->fp, i) = o
/dports/lang/guile2/guile-2.2.7/libguile/
H A Dframes.h109 #define SCM_FRAME_LOCAL(fp,i) (SCM_FRAME_SLOT (fp, i)->as_scm) macro
H A Dvm.c1234 SCM_FRAME_LOCAL (return_fp, 0) = vm_boot_continuation; in scm_call_n()
1241 SCM_FRAME_LOCAL (call_fp, 0) = proc; in scm_call_n()
1243 SCM_FRAME_LOCAL (call_fp, i + 1) = argv[i]; in scm_call_n()
H A Dframes.c114 return SCM_FRAME_LOCAL (fp, 0); in scm_c_frame_closure()
H A Dvm-engine.c247 #define FP_REF(i) SCM_FRAME_LOCAL (vp->fp, i)
248 #define FP_SET(i,o) SCM_FRAME_LOCAL (vp->fp, i) = o
/dports/lang/guile2/guile-2.2.7/
H A DChangeLog9225 (SCM_FRAME_LOCAL, SCM_FRAME_NUM_LOCALS): Adapt to stack representation
18507 (SCM_FRAME_LOCAL): New define, replaces SCM_FRAME_VARIABLE.