gambas-source-code/main/lib/eval/eval_code.h
Benoît Minisini 4c02c6d338 ******** Merged /branches/64bits r918:1003 into /trunk
[CONFIGURATION]
* NEW: 64 bits port.

[EXAMPLES]
* BUG: Fixed the AnalogWatch example.

[WIKI CGI SCRIPT]
* NEW: Some little cosmetic changes.

[INTERPRETER]
* NEW: The extern function implementation has been redesigned and is now
  based on libffi, so that it works on 64 bits system. Because of a flaw in
  the compiler design, projects that use the Pointer datatype must be
  recompiled to be used on a 64 bits system. This flaw will be fixed in
  Gambas 3.
* OPT: Put some tables into read-only memory. About 1000 bytes are saved
  for each running interpreter, except the first one.
* BUG: Does not crash anymore if a component cannot be loaded.
* NEW: Spanish translation updated.
* NEW: A new interpreter API for returning a pointer.

[COMPILER]
* BUG: Correctly compiles LONG constants inside code.

[GB.DEBUG]
* BUG: Compiles and links the gb.debug components with the thread
  libraries.

[GB.DB.SQLITE3]
* BUG: Getting the primary index of a table without primary index is safe
  now.

[GB.GTK]
* BUG: Modified the GLib priority of watched descriptors, as the main loop 
  could enter in a loop in which user interface events were not managed.
* BUG: Message boxes use application title without crashing now.

[GB.OPENGL]
* BUG: Disable dead code.

[GB.QT.EXT]
* BUG: TextEdit.TextWidth and TextEdit.TextHeight were not declared as
  read-only properties.

[GB.XML.XSLT]
* BUG: XSLT class is now declared as being not creatable.


git-svn-id: svn://localhost/gambas/trunk@1006 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-01-17 21:39:26 +00:00

111 lines
3.2 KiB
C
Raw Blame History

/***************************************************************************
code.h
P-code assembler
(c) 2000-2005 Beno<6E>t Minisini <gambas@users.sourceforge.net>
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
the Free Software Foundation; either version 1, or (at your option)
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
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***************************************************************************/
#ifndef __CODE_H
#define __CODE_H
#include "gb_pcode.h"
#ifndef __CODE_C
EXTERN short CODE_stack_usage;
#endif
PUBLIC void CODE_begin_function(FUNCTION *func);
PUBLIC void CODE_end_function(FUNCTION *func);
PUBLIC boolean CODE_popify_last(void);
PUBLIC boolean CODE_check_statement_last(void);
PUBLIC boolean CODE_check_pop_local_last(short *local);
PUBLIC int CODE_get_current_pos();
PUBLIC void CODE_dump(PCODE *code);
PUBLIC void CODE_push_number(int value);
PUBLIC void CODE_push_const(short value);
PUBLIC void CODE_push_local(short num);
PUBLIC void CODE_pop_local(short num);
PUBLIC void CODE_push_array(short nparam);
PUBLIC void CODE_push_global(short global, boolean is_static, boolean is_function);
PUBLIC void CODE_pop_global(short global, boolean is_static);
PUBLIC void CODE_push_symbol(short symbol);
PUBLIC void CODE_pop_symbol(short symbol);
PUBLIC void CODE_push_unknown(short symbol);
PUBLIC void CODE_pop_unknown(short symbol);
PUBLIC void CODE_push_class(short class);
PUBLIC void CODE_push_special(short spec);
PUBLIC void CODE_push_event(short event);
PUBLIC void CODE_pop_optional(short num);
PUBLIC void CODE_jump(void);
PUBLIC void CODE_jump_first(short local);
PUBLIC void CODE_jump_next(void);
PUBLIC void CODE_jump_if_true(void);
PUBLIC void CODE_jump_if_false(void);
PUBLIC void CODE_jump_length(short src, short dst);
PUBLIC void CODE_first(short local);
PUBLIC void CODE_next(void);
PUBLIC void CODE_op(short op, short nparam, boolean fixed);
PUBLIC void CODE_new(ushort nparam, boolean array, boolean event);
PUBLIC void CODE_push_me(void);
PUBLIC void CODE_push_last(void);
PUBLIC void CODE_push_null(void);
PUBLIC void CODE_push_boolean(boolean value);
PUBLIC void CODE_dup(void);
PUBLIC void CODE_return(boolean return_value);
PUBLIC void CODE_quit(void);
PUBLIC void CODE_stop(void);
PUBLIC void CODE_push_char(char car);
PUBLIC void CODE_push_void(void);
PUBLIC void CODE_event(boolean on);
PUBLIC void CODE_subr(short subr, short nparam, short optype, boolean output, boolean fixed);
PUBLIC void CODE_call(short nparam, boolean output);
PUBLIC void CODE_drop(void);
PUBLIC void CODE_push_return(void);
PUBLIC void CODE_try(void);
PUBLIC void CODE_end_try(void);
PUBLIC void CODE_catch(void);
PUBLIC void CODE_pop_ctrl(short num);
PUBLIC void CODE_break(void);
#endif