2007-12-30 16:41:49 +00:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 10:41:51 +00:00
|
|
|
gb_code.h
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2018-02-12 02:53:46 +01:00
|
|
|
(c) 2000-2017 Benoît Minisini <g4mba5@gmail.com>
|
2007-12-30 16:41:49 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2009-08-17 10:41:51 +00:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 16:41:49 +00:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2011-06-03 00:51:09 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 02:39:20 +00:00
|
|
|
MA 02110-1301, USA.
|
2007-12-30 16:41:49 +00:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GB_CODE_H
|
|
|
|
#define __GB_CODE_H
|
|
|
|
|
|
|
|
#include "gb_pcode.h"
|
|
|
|
|
2021-10-14 03:01:14 +02:00
|
|
|
#ifndef __GB_CODE_C
|
2007-12-30 16:41:49 +00:00
|
|
|
EXTERN short CODE_stack_usage;
|
2018-12-16 00:35:46 +01:00
|
|
|
EXTERN unsigned char CODE_disabled;
|
2007-12-30 16:41:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Number of instruction added to a function code buffer at once. Must be a power of 2 */
|
2010-05-22 18:02:34 +00:00
|
|
|
#define CODE_INSTR_INC 1024
|
2013-04-29 21:27:11 +00:00
|
|
|
#define CODE_NO_POS (ushort)0xFFFF
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2018-12-16 00:35:46 +01:00
|
|
|
#define CODE_disable() (CODE_disabled++)
|
|
|
|
#define CODE_enable() (CODE_disabled--)
|
2007-12-30 16:41:49 +00:00
|
|
|
|
|
|
|
#ifdef PROJECT_EXEC
|
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_begin_function(void);
|
|
|
|
void CODE_end_function(void);
|
2009-05-26 22:34:39 +00:00
|
|
|
bool CODE_popify_last(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include "gb_common_swap.h"
|
|
|
|
|
2021-10-14 03:01:14 +02:00
|
|
|
#ifndef __GB_CODE_C
|
|
|
|
EXTERN FUNCTION *CODE_current_func;
|
|
|
|
EXTERN bool CODE_break_is_allowed;
|
|
|
|
#endif
|
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_begin_function(FUNCTION *func);
|
|
|
|
void CODE_end_function(FUNCTION *func);
|
2021-06-01 23:12:55 +02:00
|
|
|
FUNCTION *CODE_set_function(FUNCTION *func);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
bool CODE_popify_last(void);
|
|
|
|
bool CODE_check_statement_last(void);
|
|
|
|
bool CODE_check_pop_local_last(short *local);
|
[DEVELOPMENT ENVIRONMENT]
* BUG: Use TextEdit.RichText insted of TextEdit.Text.
* BUG: END SUB can be the end of a method. The class analyze now takes
that into account.
[HELP]
* BUG: Fixed the generated treeview.
[COMPILER]
* OPT: The NOT operator used just at the beginning of a conditional
expression is optimized. Consequently, an expression like 'IF NOT 2' is
now equivalent to 'IF 2 = 0' and not to 'IF (NOT 2) <> 0' as before. In
other words, the boolean conversion is now done before the NOT, and not
after. The following instructions are concerned: IF, WHILE, UNTIL.
* NEW: BYREF is new keyword that is a more readable synonymous of '@'.
[GB.DB.FORM]
* BUG: Correctly manage data controls inside TabStrip-like containers.
* BUG: Setting the focus on a non-initialized DataControl does not raise
an error anymore.
[GB.GTK]
* BUG: HSplitter.Layout and VSplitter.Layout now work correctly. It is a
list of children widths, hidden children having a zero width.
* BUG: Window arrangement is done before the Open event is raised, as in
gb.qt.
* BUG: Keyboard, focus and mouse events now work correctly on Window and
DrawingArea controls.
[GB.QT]
* BUG: HSplitter.Layout and VSplitter.Layout now work correctly. It is a
list of children widths, hidden children having a zero width.
* BUG: Many warning fixes.
* BUG: Now the Control.Visible property works like in gb.gtk, i.e. it
returns if the control was not explicitely hidden.
git-svn-id: svn://localhost/gambas/trunk@1060 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-02-06 00:25:48 +00:00
|
|
|
bool CODE_check_jump_not(void);
|
2020-04-04 16:18:10 +02:00
|
|
|
bool CODE_check_fast_cat(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
bool CODE_check_varptr(void);
|
2014-05-08 15:10:21 +00:00
|
|
|
bool CODE_check_ismissing(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2021-10-14 03:01:14 +02:00
|
|
|
#define CODE_allow_break() (CODE_break_is_allowed = TRUE)
|
2010-05-22 18:02:34 +00:00
|
|
|
//void CODE_break(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_pop_local(short num);
|
|
|
|
//void CODE_pop_param(short num);
|
|
|
|
void CODE_pop_global(short global, bool is_static);
|
|
|
|
void CODE_pop_symbol(short symbol);
|
|
|
|
void CODE_pop_unknown(short symbol);
|
|
|
|
void CODE_pop_optional(short num);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
//void CODE_push_special(short spec);
|
|
|
|
void CODE_push_event(short event);
|
|
|
|
void CODE_push_extern(short index);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_jump(void);
|
2012-05-23 19:26:15 +00:00
|
|
|
void CODE_gosub(int ctrl_local);
|
2012-05-21 01:09:35 +00:00
|
|
|
void CODE_on(uchar num);
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_jump_first(short local);
|
|
|
|
void CODE_jump_next(void);
|
|
|
|
void CODE_jump_if_true(void);
|
|
|
|
void CODE_jump_if_false(void);
|
2013-04-29 21:27:11 +00:00
|
|
|
void CODE_jump_length(ushort src, ushort dst);
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_first(short local);
|
|
|
|
void CODE_next(bool drop);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_new(ushort nparam, bool array, bool event);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2012-10-19 21:00:35 +00:00
|
|
|
void CODE_quit(bool ret);
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_stop(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_event(bool on);
|
|
|
|
void CODE_stop_event(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_try(void);
|
|
|
|
void CODE_end_try(void);
|
|
|
|
void CODE_catch(void);
|
|
|
|
|
|
|
|
void CODE_pop_ctrl(short num);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2021-10-14 03:01:14 +02:00
|
|
|
#endif /* PROJECT_EXEC */
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2021-10-14 03:01:14 +02:00
|
|
|
#ifdef PROJECT_EXEC
|
2013-04-29 21:27:11 +00:00
|
|
|
ushort CODE_get_current_pos(void);
|
2021-10-14 03:01:14 +02:00
|
|
|
#else
|
|
|
|
#define CODE_get_current_pos() (CODE_current_func->ncode)
|
|
|
|
#endif
|
|
|
|
|
2013-04-29 21:27:11 +00:00
|
|
|
ushort CODE_set_current_pos(ushort pos);
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_ignore_next_stack_usage(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_dump(PCODE *code, int count);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_push_number(int value);
|
2010-12-20 03:56:43 +00:00
|
|
|
void CODE_push_const(ushort value);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_push_local(short num);
|
|
|
|
//void CODE_push_param(short num);
|
|
|
|
void CODE_push_array(short nparam);
|
|
|
|
void CODE_push_global(short global, bool is_static, bool is_function);
|
|
|
|
void CODE_push_symbol(short symbol);
|
|
|
|
void CODE_push_unknown(short symbol);
|
2012-11-24 18:52:11 +00:00
|
|
|
void CODE_push_unknown_event(short symbol);
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_push_class(short class);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2009-09-27 09:28:52 +00:00
|
|
|
void CODE_op(short op, short subcode, short nparam, bool fixed);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_push_me(bool);
|
|
|
|
void CODE_push_super(bool);
|
|
|
|
void CODE_push_last(void);
|
|
|
|
void CODE_push_null(void);
|
2009-09-17 20:58:27 +00:00
|
|
|
void CODE_push_void_string();
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_push_boolean(bool value);
|
2012-01-31 02:33:01 +00:00
|
|
|
void CODE_push_inf(bool neg);
|
2012-07-08 23:23:24 +00:00
|
|
|
void CODE_push_complex();
|
2014-05-05 20:16:41 +00:00
|
|
|
|
2014-05-05 20:07:00 +00:00
|
|
|
void CODE_push_vargs();
|
2014-05-05 20:16:41 +00:00
|
|
|
void CODE_drop_vargs();
|
2019-11-09 11:58:57 +01:00
|
|
|
void CODE_end_vargs();
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_dup(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_return(int return_value);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2014-09-16 01:10:58 +00:00
|
|
|
void CODE_push_char(uchar car);
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_push_void(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2014-01-27 23:46:37 +00:00
|
|
|
void CODE_subr(short subr, short nparam, short optype, bool fixed);
|
|
|
|
//void CODE_subr_output(short subr, short nparam, int output);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2008-01-19 17:52:05 +00:00
|
|
|
void CODE_call(short nparam);
|
|
|
|
void CODE_call_byref(short nparam, uint64_t byref);
|
2008-02-24 16:29:02 +00:00
|
|
|
void CODE_byref(uint64_t byref);
|
2008-01-19 01:36:38 +00:00
|
|
|
void CODE_drop(void);
|
|
|
|
void CODE_push_return(void);
|
2007-12-30 16:41:49 +00:00
|
|
|
|
2012-05-21 01:09:35 +00:00
|
|
|
void CODE_nop(void);
|
|
|
|
|
2012-09-17 11:13:32 +00:00
|
|
|
void CODE_string_add(void);
|
|
|
|
|
2007-12-30 16:41:49 +00:00
|
|
|
#endif
|