FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
emscripten/tests/lua/src/lgc.h at universal-python · JavaScriptIOT/emscripten · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
JavaScriptIOT
/
emscripten
Public
forked from
emscripten-core/emscripten
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
emscripten
/
tests
/
lua
/
src
/
lgc.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
157 lines (118 loc) · 5.27 KB
Breadcrumbs
emscripten
/
tests
/
lua
/
src
/
lgc.h
Copy path
File metadata and controls
157 lines (118 loc) · 5.27 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
** $Id: lgc.h,v 2.58 2012/09/11 12:53:08 roberto Exp $
** Garbage Collector
** See Copyright Notice in lua.h
*/
#ifndef
lgc_h
#define
lgc_h
#include
"lobject.h"
#include
"lstate.h"
/*
** Collectable objects may have one of three colors: white, which
** means the object is not marked; gray, which means the
** object is marked, but its references may be not marked; and
** black, which means that the object and all its references are marked.
** The main invariant of the garbage collector, while marking objects,
** is that a black object can never point to a white one. Moreover,
** any gray object must be in a "gray list" (gray, grayagain, weak,
** allweak, ephemeron) so that it can be visited again before finishing
** the collection cycle. These lists have no meaning when the invariant
** is not being enforced (e.g., sweep phase).
*/
/* how much to allocate before next GC step */
#if
!defined(
GCSTEPSIZE
)
/* ~100 small strings */
#define
GCSTEPSIZE
(cast_int(100 * sizeof(TString)))
#endif
/*
** Possible states of the Garbage Collector
*/
#define
GCSpropagate
0
#define
GCSatomic
1
#define
GCSsweepstring
2
#define
GCSsweepudata
3
#define
GCSsweep
4
#define
GCSpause
5
#define
issweepphase
(
g
) \
(GCSsweepstring <= (g)->gcstate && (g)->gcstate <= GCSsweep)
#define
isgenerational
(
g
) ((g)->gckind == KGC_GEN)
/*
** macros to tell when main invariant (white objects cannot point to black
** ones) must be kept. During a non-generational collection, the sweep
** phase may break the invariant, as objects turned white may point to
** still-black objects. The invariant is restored when sweep ends and
** all objects are white again. During a generational collection, the
** invariant must be kept all times.
*/
#define
keepinvariant
(
g
) (isgenerational(g) || g->gcstate <= GCSatomic)
/*
** Outside the collector, the state in generational mode is kept in
** 'propagate', so 'keepinvariant' is always true.
*/
#define
keepinvariantout
(
g
) \
check_exp(g->gcstate == GCSpropagate || !isgenerational(g), \
g->gcstate <= GCSatomic)
/*
** some useful bit tricks
*/
#define
resetbits
(
x
,
m
) ((x) &= cast(lu_byte, ~(m)))
#define
setbits
(
x
,
m
) ((x) |= (m))
#define
testbits
(
x
,
m
) ((x) & (m))
#define
bitmask
(
b
) (1<<(b))
#define
bit2mask
(
b1
,
b2
) (bitmask(b1) | bitmask(b2))
#define
l_setbit
(
x
,
b
) setbits(x, bitmask(b))
#define
resetbit
(
x
,
b
) resetbits(x, bitmask(b))
#define
testbit
(
x
,
b
) testbits(x, bitmask(b))
/* Layout for bit use in `marked' field: */
#define
WHITE0BIT
0
/* object is white (type 0) */
#define
WHITE1BIT
1
/* object is white (type 1) */
#define
BLACKBIT
2
/* object is black */
#define
FINALIZEDBIT
3
/* object has been separated for finalization */
#define
SEPARATED
4
/* object is in 'finobj' list or in 'tobefnz' */
#define
FIXEDBIT
5
/* object is fixed (should not be collected) */
#define
OLDBIT
6
/* object is old (only in generational mode) */
/* bit 7 is currently used by tests (luaL_checkmemory) */
#define
WHITEBITS
bit2mask(WHITE0BIT, WHITE1BIT)
#define
iswhite
(
x
) testbits((x)->gch.marked, WHITEBITS)
#define
isblack
(
x
) testbit((x)->gch.marked, BLACKBIT)
#define
isgray
(
x
)
/* neither white nor black */
\
(!testbits((x)->gch.marked, WHITEBITS | bitmask(BLACKBIT)))
#define
isold
(
x
) testbit((x)->gch.marked, OLDBIT)
/* MOVE OLD rule: whenever an object is moved to the beginning of
a GC list, its old bit must be cleared */
#define
resetoldbit
(
o
) resetbit((o)->gch.marked, OLDBIT)
#define
otherwhite
(
g
) (g->currentwhite ^ WHITEBITS)
#define
isdeadm
(
ow
,
m
) (!(((m) ^ WHITEBITS) & (ow)))
#define
isdead
(
g
,
v
) isdeadm(otherwhite(g), (v)->gch.marked)
#define
changewhite
(
x
) ((x)->gch.marked ^= WHITEBITS)
#define
gray2black
(
x
) l_setbit((x)->gch.marked, BLACKBIT)
#define
valiswhite
(
x
) (iscollectable(x) && iswhite(gcvalue(x)))
#define
luaC_white
(
g
) cast(lu_byte, (g)->currentwhite & WHITEBITS)
#define
luaC_condGC
(
L
,
c
) \
{if (G(L)->GCdebt > 0) {c;}; condchangemem(L);}
#define
luaC_checkGC
(
L
) luaC_condGC(L, luaC_step(L);)
#define
luaC_barrier
(
L
,
p
,
v
) { if (valiswhite(v) && isblack(obj2gco(p))) \
luaC_barrier_(L,obj2gco(p),gcvalue(v)); }
#define
luaC_barrierback
(
L
,
p
,
v
) { if (valiswhite(v) && isblack(obj2gco(p))) \
luaC_barrierback_(L,p); }
#define
luaC_objbarrier
(
L
,
p
,
o
) \
{ if (iswhite(obj2gco(o)) && isblack(obj2gco(p))) \
luaC_barrier_(L,obj2gco(p),obj2gco(o)); }
#define
luaC_objbarrierback
(
L
,
p
,
o
) \
{ if (iswhite(obj2gco(o)) && isblack(obj2gco(p))) luaC_barrierback_(L,p); }
#define
luaC_barrierproto
(
L
,
p
,
c
) \
{ if (isblack(obj2gco(p))) luaC_barrierproto_(L,p,c); }
LUAI_FUNC
void
luaC_freeallobjects
(
lua_State
*
L
);
LUAI_FUNC
void
luaC_step
(
lua_State
*
L
);
LUAI_FUNC
void
luaC_forcestep
(
lua_State
*
L
);
LUAI_FUNC
void
luaC_runtilstate
(
lua_State
*
L
,
int
statesmask
);
LUAI_FUNC
void
luaC_fullgc
(
lua_State
*
L
,
int
isemergency
);
LUAI_FUNC
GCObject
*
luaC_newobj
(
lua_State
*
L
,
int
tt
,
size_t
sz
,
GCObject
*
*
list
,
int
offset
);
LUAI_FUNC
void
luaC_barrier_
(
lua_State
*
L
,
GCObject
*
o
,
GCObject
*
v
);
LUAI_FUNC
void
luaC_barrierback_
(
lua_State
*
L
,
GCObject
*
o
);
LUAI_FUNC
void
luaC_barrierproto_
(
lua_State
*
L
,
Proto
*
p
,
Closure
*
c
);
LUAI_FUNC
void
luaC_checkfinalizer
(
lua_State
*
L
,
GCObject
*
o
,
Table
*
mt
);
LUAI_FUNC
void
luaC_checkupvalcolor
(
global_State
*
g
,
UpVal
*
uv
);
LUAI_FUNC
void
luaC_changemode
(
lua_State
*
L
,
int
mode
);
#endif
Back
|
FazBrowse Home
|
New Git URL