diff options
author | Sverker Eriksson <[email protected]> | 2016-01-07 18:56:48 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-01-07 18:56:48 +0100 |
commit | 8c4e2a32656f98e20a970e5ab45fb7405ae0095c (patch) | |
tree | e2b93ef1a01c047cbac3a415637dc985e82acd20 /erts/emulator/beam/erl_gc.c | |
parent | 27cd49c16b442625782d68e6f802a1c76c48d349 (diff) | |
parent | 5db3a62f821413f267427b2bc38045324c57aaf6 (diff) | |
download | otp-8c4e2a32656f98e20a970e5ab45fb7405ae0095c.tar.gz otp-8c4e2a32656f98e20a970e5ab45fb7405ae0095c.tar.bz2 otp-8c4e2a32656f98e20a970e5ab45fb7405ae0095c.zip |
Merge branch 'sverk/proc-dict-opt'
OTP-13167
* sverk/proc-dict-opt:
erts: Add new test case pdict_SUITE:mixed
erts: Add 'fill_heap' to erts_debug:state_internal_state
erts: Rename proc dict size to arraySize
erts: Refactor proc dict with 'usedSlots'
erts: Add sizeMask for faster proc dict indexing
erts: Remove ProcDict.used
erts: Add proc dict macros ERTS_PD_START/SIZE
erts: Optimize away function "array_put" in proc dict
erts: Optimize hashing in process dictionary
Diffstat (limited to 'erts/emulator/beam/erl_gc.c')
-rw-r--r-- | erts/emulator/beam/erl_gc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/erts/emulator/beam/erl_gc.c b/erts/emulator/beam/erl_gc.c index f1962e5cac..0f86b9a25c 100644 --- a/erts/emulator/beam/erl_gc.c +++ b/erts/emulator/beam/erl_gc.c @@ -2203,8 +2203,8 @@ setup_rootset(Process *p, Eterm *objv, int nobj, Rootset *rootset) ++n; if (p->dictionary != NULL) { - roots[n].v = p->dictionary->data; - roots[n].sz = p->dictionary->used; + roots[n].v = ERTS_PD_START(p->dictionary); + roots[n].sz = ERTS_PD_SIZE(p->dictionary); ++n; } if (nobj > 0) { @@ -2818,8 +2818,8 @@ offset_one_rootset(Process *p, Sint offs, char* area, Uint area_size, Eterm* objv, int nobj) { if (p->dictionary) { - offset_heap(p->dictionary->data, - p->dictionary->used, + offset_heap(ERTS_PD_START(p->dictionary), + ERTS_PD_SIZE(p->dictionary), offs, area, area_size); } |