gambas-source-code/main/gbc/gbc_jit.h
gambas 23be942b6a Work continues on the new JIT system.
[BENCHMARKS]
* NEW: Little meaningless changes.

[INTERPRETER]
* NEW: JIT: Support for FOR EACH loops.
* BUG: JIT: Handle function values that are put on stack before calling them.

[COMPILER]
* NEW: JIT: Optimization of mathematic functions.
* NEW: JIT: Support for FOR EACH loops.
* NEW: JIT: Remove successive POP_x() / PUSH_x().
* NEW: JIT: Optimization of DIV and MOD.
* NEW: JIT: Support of internal control local variables used by SELECT and FOR EACH.
* NEW: JIT: Support for SWAP.

[GB.JIT]
* NEW: Optimization of mathematic functions.
* NEW: Variants management.
* NEW: All conversions are handled now.
* NEW: FOR EACH loops are implemented.
2018-06-05 11:43:39 +02:00

64 lines
1.6 KiB
C

/***************************************************************************
gbc_jit.h
(c) 2000-2018 Benoît Minisini <g4mba5@gmail.com>
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 2, 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., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
#ifndef __GBC_JIT_H
#define __GBC_JIT_H
#include "gbc_class.h"
#define T_UNKNOWN 17
#define T_CLASS 18
enum
{
CALL_UNKNOWN,
CALL_PRIVATE
};
#ifndef __GBC_JIT_C
EXTERN char *JIT_prefix;
#endif
// gbc_jit.c
void JIT_begin(bool has_fast);
void JIT_end(void);
void JIT_declare_func(FUNCTION *func, int index);
void JIT_translate_func(FUNCTION *func, int index);
void JIT_section(const char *str);
void JIT_print(const char *str, ...);
void JIT_vprint(const char *str, va_list args);
const char *JIT_get_type(TYPE type);
const char *JIT_get_gtype(TYPE type);
const char *JIT_get_ctype(TYPE type);
// gbc_jit_body.c
void JIT_translate_body(FUNCTION *func, int index);
#endif