blob: de07aef1c341f33408ee8f2d7af00b7ee4b751f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/* ----------------------------------------------------------------------------
*
* (c) The GHC Team, 2013-
*
* Check whether dynamically-loaded object code can be safely
* unloaded, by searching for references to it from the heap and RTS
* data structures.
*
* --------------------------------------------------------------------------*/
#pragma once
#include "BeginPrivate.h"
#include "LinkerInternals.h"
// Currently live objects
extern ObjectCode *objects;
// Root set for object collection
extern ObjectCode *loaded_objects;
// Mark bit for live objects
extern uint8_t object_code_mark_bit;
// Number of object code currently marked for unloading. See the definition in
// CheckUnload.c for details.
extern int n_unloaded_objects;
void initUnloadCheck(void);
void exitUnloadCheck(void);
// Call before major GC to prepare section index table for marking
bool prepareUnloadCheck(void);
// Mark object code of a static closure address as 'live'
void markObjectCode(const void *addr);
// Call after major GC to unload unused and unmarked object code
void checkUnload(void);
// Call on loaded object code
void insertOCSectionIndices(ObjectCode *oc);
#include "EndPrivate.h"
|