diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-01-16 17:02:55 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-01-16 17:02:55 -0300 |
commit | 4a8e48086433ad12f2991c07f3064278714fd0f1 (patch) | |
tree | 7efc32733ceff1ce51930d927292e7b7ce56b175 | |
parent | 17e0c29d9b435392016b707309ed51409b0aea12 (diff) | |
download | lua-4a8e48086433ad12f2991c07f3064278714fd0f1.tar.gz lua-4a8e48086433ad12f2991c07f3064278714fd0f1.tar.bz2 lua-4a8e48086433ad12f2991c07f3064278714fd0f1.zip |
New mechanism to query GC parameters
Diffstat (limited to '')
-rw-r--r-- | lapi.c | 5 | ||||
-rw-r--r-- | lbaselib.c | 8 | ||||
-rw-r--r-- | lua.h | 2 | ||||
-rw-r--r-- | manual/manual.of | 27 | ||||
-rw-r--r-- | testes/gc.lua | 14 | ||||
-rw-r--r-- | testes/gengc.lua | 6 |
6 files changed, 35 insertions, 27 deletions
@@ -1217,12 +1217,13 @@ LUA_API int lua_gc (lua_State *L, int what, ...) { | |||
1217 | luaC_changemode(L, KGC_INC); | 1217 | luaC_changemode(L, KGC_INC); |
1218 | break; | 1218 | break; |
1219 | } | 1219 | } |
1220 | case LUA_GCSETPARAM: { | 1220 | case LUA_GCPARAM: { |
1221 | int param = va_arg(argp, int); | 1221 | int param = va_arg(argp, int); |
1222 | int value = va_arg(argp, int); | 1222 | int value = va_arg(argp, int); |
1223 | api_check(L, 0 <= param && param < LUA_GCPN, "invalid parameter"); | 1223 | api_check(L, 0 <= param && param < LUA_GCPN, "invalid parameter"); |
1224 | res = luaO_applyparam(g->gcparams[param], 100); | 1224 | res = luaO_applyparam(g->gcparams[param], 100); |
1225 | g->gcparams[param] = luaO_codeparam(value); | 1225 | if (value >= 0) |
1226 | g->gcparams[param] = luaO_codeparam(value); | ||
1226 | break; | 1227 | break; |
1227 | } | 1228 | } |
1228 | default: res = -1; /* invalid option */ | 1229 | default: res = -1; /* invalid option */ |
@@ -199,10 +199,10 @@ static int pushmode (lua_State *L, int oldmode) { | |||
199 | static int luaB_collectgarbage (lua_State *L) { | 199 | static int luaB_collectgarbage (lua_State *L) { |
200 | static const char *const opts[] = {"stop", "restart", "collect", | 200 | static const char *const opts[] = {"stop", "restart", "collect", |
201 | "count", "step", "isrunning", "generational", "incremental", | 201 | "count", "step", "isrunning", "generational", "incremental", |
202 | "setparam", NULL}; | 202 | "param", NULL}; |
203 | static const char optsnum[] = {LUA_GCSTOP, LUA_GCRESTART, LUA_GCCOLLECT, | 203 | static const char optsnum[] = {LUA_GCSTOP, LUA_GCRESTART, LUA_GCCOLLECT, |
204 | LUA_GCCOUNT, LUA_GCSTEP, LUA_GCISRUNNING, LUA_GCGEN, LUA_GCINC, | 204 | LUA_GCCOUNT, LUA_GCSTEP, LUA_GCISRUNNING, LUA_GCGEN, LUA_GCINC, |
205 | LUA_GCSETPARAM}; | 205 | LUA_GCPARAM}; |
206 | int o = optsnum[luaL_checkoption(L, 1, "collect", opts)]; | 206 | int o = optsnum[luaL_checkoption(L, 1, "collect", opts)]; |
207 | switch (o) { | 207 | switch (o) { |
208 | case LUA_GCCOUNT: { | 208 | case LUA_GCCOUNT: { |
@@ -231,7 +231,7 @@ static int luaB_collectgarbage (lua_State *L) { | |||
231 | case LUA_GCINC: { | 231 | case LUA_GCINC: { |
232 | return pushmode(L, lua_gc(L, o)); | 232 | return pushmode(L, lua_gc(L, o)); |
233 | } | 233 | } |
234 | case LUA_GCSETPARAM: { | 234 | case LUA_GCPARAM: { |
235 | static const char *const params[] = { | 235 | static const char *const params[] = { |
236 | "minormul", "majorminor", "minormajor", | 236 | "minormul", "majorminor", "minormajor", |
237 | "pause", "stepmul", "stepsize", NULL}; | 237 | "pause", "stepmul", "stepsize", NULL}; |
@@ -239,7 +239,7 @@ static int luaB_collectgarbage (lua_State *L) { | |||
239 | LUA_GCPMINORMUL, LUA_GCPMAJORMINOR, LUA_GCPMINORMAJOR, | 239 | LUA_GCPMINORMUL, LUA_GCPMAJORMINOR, LUA_GCPMINORMAJOR, |
240 | LUA_GCPPAUSE, LUA_GCPSTEPMUL, LUA_GCPSTEPSIZE}; | 240 | LUA_GCPPAUSE, LUA_GCPSTEPMUL, LUA_GCPSTEPSIZE}; |
241 | int p = pnum[luaL_checkoption(L, 2, NULL, params)]; | 241 | int p = pnum[luaL_checkoption(L, 2, NULL, params)]; |
242 | lua_Integer value = luaL_checkinteger(L, 3); | 242 | lua_Integer value = luaL_optinteger(L, 3, -1); |
243 | lua_pushinteger(L, lua_gc(L, o, p, (int)value)); | 243 | lua_pushinteger(L, lua_gc(L, o, p, (int)value)); |
244 | return 1; | 244 | return 1; |
245 | } | 245 | } |
@@ -338,7 +338,7 @@ LUA_API void (lua_warning) (lua_State *L, const char *msg, int tocont); | |||
338 | #define LUA_GCISRUNNING 6 | 338 | #define LUA_GCISRUNNING 6 |
339 | #define LUA_GCGEN 7 | 339 | #define LUA_GCGEN 7 |
340 | #define LUA_GCINC 8 | 340 | #define LUA_GCINC 8 |
341 | #define LUA_GCSETPARAM 9 | 341 | #define LUA_GCPARAM 9 |
342 | 342 | ||
343 | 343 | ||
344 | /* | 344 | /* |
diff --git a/manual/manual.of b/manual/manual.of index 64bb5473..48f396d9 100644 --- a/manual/manual.of +++ b/manual/manual.of | |||
@@ -3345,9 +3345,9 @@ Changes the collector to generational mode. | |||
3345 | Returns the previous mode (@id{LUA_GCGEN} or @id{LUA_GCINC}). | 3345 | Returns the previous mode (@id{LUA_GCGEN} or @id{LUA_GCINC}). |
3346 | } | 3346 | } |
3347 | 3347 | ||
3348 | @item{@defid{LUA_GCSETPARAM} (int param, int value)| | 3348 | @item{@defid{LUA_GCPARAM} (int param, int val)| |
3349 | Changes the values of a parameter of the collector and returns | 3349 | Changes and/or returns the value of a parameter of the collector. |
3350 | the previous value of that parameter. | 3350 | If @id{val} is negative, the call only returns the current value. |
3351 | The argument @id{param} must have one of the following values: | 3351 | The argument @id{param} must have one of the following values: |
3352 | @description{ | 3352 | @description{ |
3353 | @item{@defid{LUA_GCPMINORMUL}| The minor multiplier. } | 3353 | @item{@defid{LUA_GCPMINORMUL}| The minor multiplier. } |
@@ -6390,13 +6390,12 @@ Changes the collector mode to incremental and returns the previous mode. | |||
6390 | Changes the collector mode to generational and returns the previous mode. | 6390 | Changes the collector mode to generational and returns the previous mode. |
6391 | } | 6391 | } |
6392 | 6392 | ||
6393 | @item{@St{setparam}| | 6393 | @item{@St{param}| |
6394 | Changes the values of a parameter of the collector and returns | 6394 | Changes and/or retrieves the values of a parameter of the collector. |
6395 | the previous value of that parameter. | 6395 | This option must be followed by one or two extra arguments: |
6396 | This option must be followed by two extra arguments: | 6396 | The name of the parameter being changed or retrieved (a string) |
6397 | The name of the parameter being changed (a string) | 6397 | and an optional new value for that parameter (an integer). |
6398 | and the new value for that parameter (an integer). | 6398 | The first argument must have one of the following values: |
6399 | The argument @id{param} must have one of the following values: | ||
6400 | @description{ | 6399 | @description{ |
6401 | @item{@St{minormul}| The minor multiplier. } | 6400 | @item{@St{minormul}| The minor multiplier. } |
6402 | @item{@St{majorminor}| The major-minor multiplier. } | 6401 | @item{@St{majorminor}| The major-minor multiplier. } |
@@ -6405,6 +6404,10 @@ The argument @id{param} must have one of the following values: | |||
6405 | @item{@St{stepmul}| The step multiplier. } | 6404 | @item{@St{stepmul}| The step multiplier. } |
6406 | @item{@St{stepsize}| The step size. } | 6405 | @item{@St{stepsize}| The step size. } |
6407 | } | 6406 | } |
6407 | The call always returns the previous value of the parameter. | ||
6408 | If the call does not give a new value, | ||
6409 | the value is left unchanged. | ||
6410 | |||
6408 | Lua rounds these values before storing them; | 6411 | Lua rounds these values before storing them; |
6409 | so, the value returned as the previous value may not be | 6412 | so, the value returned as the previous value may not be |
6410 | exactly the last value set. | 6413 | exactly the last value set. |
@@ -9298,7 +9301,7 @@ declare a local variable with the same name in the loop body. | |||
9298 | @item{ | 9301 | @item{ |
9299 | Parameters for the garbage collection are not set | 9302 | Parameters for the garbage collection are not set |
9300 | with the options @St{incremental} and @St{generational}; | 9303 | with the options @St{incremental} and @St{generational}; |
9301 | instead, there is a new option @St{setparam} to that end. | 9304 | instead, there is a new option @St{param} to that end. |
9302 | Moreover, there were some changes in the parameters themselves. | 9305 | Moreover, there were some changes in the parameters themselves. |
9303 | } | 9306 | } |
9304 | 9307 | ||
@@ -9327,7 +9330,7 @@ to signal the end of the dump. | |||
9327 | @item{ | 9330 | @item{ |
9328 | Parameters for the garbage collection are not set | 9331 | Parameters for the garbage collection are not set |
9329 | with the options @Lid{LUA_GCINC} and @Lid{LUA_GCGEN}; | 9332 | with the options @Lid{LUA_GCINC} and @Lid{LUA_GCGEN}; |
9330 | instead, there is a new option @Lid{LUA_GCSETPARAM} to that end. | 9333 | instead, there is a new option @Lid{LUA_GCPARAM} to that end. |
9331 | Moreover, there were some changes in the parameters themselves. | 9334 | Moreover, there were some changes in the parameters themselves. |
9332 | } | 9335 | } |
9333 | 9336 | ||
diff --git a/testes/gc.lua b/testes/gc.lua index c26de406..5b39bac1 100644 --- a/testes/gc.lua +++ b/testes/gc.lua | |||
@@ -28,19 +28,21 @@ end | |||
28 | -- test weird parameters to 'collectgarbage' | 28 | -- test weird parameters to 'collectgarbage' |
29 | do | 29 | do |
30 | collectgarbage("incremental") | 30 | collectgarbage("incremental") |
31 | local opause = collectgarbage("setparam", "pause", 100) | 31 | local opause = collectgarbage("param", "pause", 100) |
32 | local ostepmul = collectgarbage("setparam", "stepmul", 100) | 32 | local ostepmul = collectgarbage("param", "stepmul", 100) |
33 | assert(collectgarbage("param", "pause") == 100) | ||
34 | assert(collectgarbage("param", "stepmul") == 100) | ||
33 | local t = {0, 2, 10, 90, 500, 5000, 30000, 0x7ffffffe} | 35 | local t = {0, 2, 10, 90, 500, 5000, 30000, 0x7ffffffe} |
34 | for i = 1, #t do | 36 | for i = 1, #t do |
35 | collectgarbage("setparam", "pause", t[i]) | 37 | collectgarbage("param", "pause", t[i]) |
36 | for j = 1, #t do | 38 | for j = 1, #t do |
37 | collectgarbage("setparam", "stepmul", t[j]) | 39 | collectgarbage("param", "stepmul", t[j]) |
38 | collectgarbage("step", t[j]) | 40 | collectgarbage("step", t[j]) |
39 | end | 41 | end |
40 | end | 42 | end |
41 | -- restore original parameters | 43 | -- restore original parameters |
42 | collectgarbage("setparam", "pause", opause) | 44 | collectgarbage("param", "pause", opause) |
43 | collectgarbage("setparam", "stepmul", ostepmul) | 45 | collectgarbage("param", "stepmul", ostepmul) |
44 | collectgarbage() | 46 | collectgarbage() |
45 | end | 47 | end |
46 | 48 | ||
diff --git a/testes/gengc.lua b/testes/gengc.lua index 51872cc1..c4f6ca1b 100644 --- a/testes/gengc.lua +++ b/testes/gengc.lua | |||
@@ -163,15 +163,17 @@ assert(collectgarbage'isrunning') | |||
163 | 163 | ||
164 | 164 | ||
165 | do print"testing stop-the-world collection" | 165 | do print"testing stop-the-world collection" |
166 | local step = collectgarbage("setparam", "stepsize", 0); | 166 | local step = collectgarbage("param", "stepsize", 0); |
167 | collectgarbage("incremental") | 167 | collectgarbage("incremental") |
168 | assert(collectgarbage("param", "stepsize") == 0) | ||
168 | 169 | ||
169 | -- each step does a complete cycle | 170 | -- each step does a complete cycle |
170 | assert(collectgarbage("step")) | 171 | assert(collectgarbage("step")) |
171 | assert(collectgarbage("step")) | 172 | assert(collectgarbage("step")) |
172 | 173 | ||
173 | -- back to default value | 174 | -- back to default value |
174 | collectgarbage("setparam", "stepsize", step); | 175 | collectgarbage("param", "stepsize", step); |
176 | assert(collectgarbage("param", "stepsize") == step) | ||
175 | end | 177 | end |
176 | 178 | ||
177 | collectgarbage(oldmode) | 179 | collectgarbage(oldmode) |