diff options
author | Sverker Eriksson <[email protected]> | 2016-10-13 20:59:58 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-14 14:43:50 +0200 |
commit | 3582e6f420d84ddac64b55cb13100f1ae7f31b08 (patch) | |
tree | 6ece73414540dc8d923999b6ebb4e62f8e755b6d /erts/emulator/beam/module.c | |
parent | 7d5021bc9e1150b5d839438756851b3175f3ba85 (diff) | |
download | otp-3582e6f420d84ddac64b55cb13100f1ae7f31b08.tar.gz otp-3582e6f420d84ddac64b55cb13100f1ae7f31b08.tar.bz2 otp-3582e6f420d84ddac64b55cb13100f1ae7f31b08.zip |
erts: Replace unsafe Module.first_hipe_ref
with hash table mod2mfa_tab
Diffstat (limited to 'erts/emulator/beam/module.c')
-rw-r--r-- | erts/emulator/beam/module.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/erts/emulator/beam/module.c b/erts/emulator/beam/module.c index e9b18ba525..3e622c0f3a 100644 --- a/erts/emulator/beam/module.c +++ b/erts/emulator/beam/module.c @@ -91,9 +91,6 @@ static Module* module_alloc(Module* tmpl) erts_module_instance_init(&obj->curr); erts_module_instance_init(&obj->old); obj->on_load = 0; -#ifdef HIPE - obj->first_hipe_mfa = NULL; -#endif DBG_TRACE_MFA(make_atom(obj->module), 0, 0, "module_alloc"); return obj; } @@ -128,6 +125,7 @@ void init_module_table(void) erts_smp_atomic_init_nob(&tot_module_bytes, 0); } + Module* erts_get_module(Eterm mod, ErtsCodeIndex code_ix) { @@ -208,9 +206,6 @@ static ERTS_INLINE void copy_module(Module* dst_mod, Module* src_mod) dst_mod->curr = src_mod->curr; dst_mod->old = src_mod->old; dst_mod->on_load = src_mod->on_load; -#ifdef HIPE - dst_mod->first_hipe_mfa = src_mod->first_hipe_mfa; -#endif } void module_start_staging(void) |