diff options
author | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
commit | 84adefa331c4159d432d22840663c38f155cd4c1 (patch) | |
tree | bff9a9c66adda4df2106dfd0e5c053ab182a12bd /erts/emulator/beam/beam_load.h | |
download | otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2 otp-84adefa331c4159d432d22840663c38f155cd4c1.zip |
The R13B03 release.OTP_R13B03
Diffstat (limited to 'erts/emulator/beam/beam_load.h')
-rw-r--r-- | erts/emulator/beam/beam_load.h | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/erts/emulator/beam/beam_load.h b/erts/emulator/beam/beam_load.h new file mode 100644 index 0000000000..c17844a553 --- /dev/null +++ b/erts/emulator/beam/beam_load.h @@ -0,0 +1,120 @@ +/* + * %CopyrightBegin% + * + * Copyright Ericsson AB 1999-2009. All Rights Reserved. + * + * The contents of this file are subject to the Erlang Public License, + * Version 1.1, (the "License"); you may not use this file except in + * compliance with the License. You should have received a copy of the + * Erlang Public License along with this software. If not, it can be + * retrieved online at http://www.erlang.org/. + * + * Software distributed under the License is distributed on an "AS IS" + * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + * the License for the specific language governing rights and limitations + * under the License. + * + * %CopyrightEnd% + */ + +#ifndef _BEAM_LOAD_H +# define _BEAM_LOAD_H + +#include "beam_opcodes.h" +#include "erl_process.h" + +int beam_make_current_old(Process *c_p, ErtsProcLocks c_p_locks, Eterm module); + +typedef struct gen_op_entry { + char* name; + int arity; + int specific; + int num_specific; + int transform; + int min_window; +} GenOpEntry; + +extern GenOpEntry gen_opc[]; + +#ifdef NO_JUMP_TABLE +#define BeamOp(Op) (Op) +#else +extern void** beam_ops; +#define BeamOp(Op) beam_ops[(Op)] +#endif + + +extern Eterm beam_debug_apply[]; +extern Eterm* em_call_error_handler; +extern Eterm* em_apply_bif; +extern Eterm* em_call_traced_function; +typedef struct { + Eterm* start; /* Pointer to start of module. */ + Eterm* end; /* Points one word beyond last function in module. */ +} Range; + +/* + * The following variables keep a sorted list of address ranges for + * each module. It allows us to quickly find a function given an + * instruction pointer. + */ + +extern Range* modules; +extern int num_loaded_modules; +extern int allocated_modules; +extern Range* mid_module; + +/* Total code size in bytes */ +extern Uint erts_total_code_size; +/* + * Index into start of code chunks which contains additional information + * about the loaded module. + * + * First number of functions. + */ + +#define MI_NUM_FUNCTIONS 0 + +/* + * The attributes retrieved by Mod:module_info(attributes). + */ + +#define MI_ATTR_PTR 1 +#define MI_ATTR_SIZE 2 +#define MI_ATTR_SIZE_ON_HEAP 3 + +/* + * The compilation information retrieved by Mod:module_info(compile). + */ + +#define MI_COMPILE_PTR 4 +#define MI_COMPILE_SIZE 5 +#define MI_COMPILE_SIZE_ON_HEAP 6 + +/* + * Number of breakpoints in module is stored in this word + */ +#define MI_NUM_BREAKPOINTS 7 + +/* + * Literal area (constant pool). + */ +#define MI_LITERALS_START 8 +#define MI_LITERALS_END 9 + +/* + * Pointer to the on_load function (or NULL if none). + */ +#define MI_ON_LOAD_FUNCTION_PTR 10 + +/* + * Start of function pointer table. This table contains pointers to + * all functions in the module plus an additional pointer just beyond + * the end of the last function. + * + * The actual loaded code (for the first function) start just beyond + * this table. + */ + +#define MI_FUNCTIONS 11 +#endif /* _BEAM_LOAD_H */ |