gambas-source-code/gb.jit
Benoît Minisini 65158cb4e6 [CONFIGURATION]
* NEW: The GB_FIND macro now searches files one directory deeper.

[DEVELOPMENT ENVIRONMENT]
* BUG: Reset correctly the Application.Busy property after a program has 
  crashed.

[WEBSITE]
* NEW: Update for 3.5.3.

[GB.DB.FORM]
* NEW: Raise the maximum size of a DataView text column to 65536 characters 
  instead of 1024.

[GB.JIT]
* BUG: Explicitely search for the 'llvm-c/Core.h' include file.


git-svn-id: svn://localhost/gambas/trunk@6246 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-04-23 22:31:28 +00:00
..
src [DEVELOPMENT ENVIRONMENT] 2013-08-02 21:57:49 +00:00
acinclude.m4 [INTERPRETER] 2012-05-23 19:26:15 +00:00
AUTHORS [INTERPRETER] 2012-05-23 19:26:15 +00:00
ChangeLog [INTERPRETER] 2012-05-23 19:26:15 +00:00
component.am [INTERPRETER] 2012-05-23 19:26:15 +00:00
configure.ac [CONFIGURATION] 2014-04-23 22:31:28 +00:00
COPYING [INTERPRETER] 2012-05-23 19:26:15 +00:00
gambas.h [INTERPRETER] 2012-05-23 19:26:15 +00:00
gb_common.h [INTERPRETER] 2012-05-23 19:26:15 +00:00
INSTALL [INTERPRETER] 2012-05-23 19:26:15 +00:00
m4 [INTERPRETER] 2012-05-23 19:26:15 +00:00
Makefile.am [INTERPRETER] 2012-05-23 19:26:15 +00:00
missing [INTERPRETER] 2012-05-23 19:26:15 +00:00
NEWS [INTERPRETER] 2012-05-23 19:26:15 +00:00
README [CONFIGURATION] 2012-05-23 21:35:58 +00:00
reconf [INTERPRETER] 2012-05-23 19:26:15 +00:00

You should use the latest version of LLVM. To check it out, run:

svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm
cd llvm
mkdir build
cd build
../configure --prefix=/usr --enable-optimized --enable-jit --enable-shared
make -j4
sudo make install

You might need to edit the configure.ac file in order to set the llvm
location settings appropriate, followed by ./reconf.

To enable the JIT for all functions in a Gambas class, add the word "Fast"
on a separate line at the top of the class file. The functions will then be
JIT compiled to native machine code, instead of letting the interpreter to
run it, if gb.jit is available.