root/rts/Apply.h

Revision abe2139ead3ec4aac34fee740eff89f1c50ccb56, 0.7 KB (checked in by Simon Marlow <marlowsd@…>, 21 months ago)

make stg_arg_bitmaps public, and available via the GHCi linker (#3672)

  • Property mode set to 100644
Line 
1/* -----------------------------------------------------------------------------
2 *
3 * (c) The University of Glasgow 2002-2004
4 *
5 * Declarations for things defined in AutoApply.cmm
6 *
7 * -------------------------------------------------------------------------- */
8
9#ifndef APPLY_H
10#define APPLY_H
11
12// canned slow entry points, indexed by arg type (ARG_P, ARG_PP, etc.)
13#ifdef IN_STG_CODE
14extern RTS_PRIVATE StgWord stg_ap_stack_entries[];
15#else
16extern RTS_PRIVATE StgFun *stg_ap_stack_entries[];
17#endif
18
19// canned register save code for heap check failure in a function
20#ifdef IN_STG_CODE
21extern RTS_PRIVATE StgWord stg_stack_save_entries[];
22#else
23extern RTS_PRIVATE StgFun *stg_stack_save_entries[];
24#endif
25
26#endif /* APPLY_H */
Note: See TracBrowser for help on using the browser.