• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..02-Aug-2016-

doc/tutorial/H03-May-2022-1,054688

regex_src/H02-Aug-2016-3,0192,326

sljit_src/H02-Aug-2016-36,35430,159

test_src/H02-Aug-2016-5,2974,276

API_CHANGESH A D02-Aug-20163.4 KiB9272

INTERNAL_CHANGESH A D02-Aug-2016245 96

MakefileH A D02-Aug-20162.3 KiB6849

READMEH A D02-Aug-2016912 3325

histH A D02-Aug-20163 KiB6158

README

1
2                     SLJIT - Stack Less JIT Compiler
3
4Purpose:
5  A simple, machine independent JIT compiler, which suitable for
6  translating interpreted byte code to machine code. The sljitLir.h
7  describes the LIR (low-level intermediate representation) of SLJIT.
8
9Compatible:
10  Any C (C++) compiler. At least I hope so.
11
12Using sljit:
13  Copy the content of sljit_src directory into your project source directory.
14  Add sljitLir.c source file to your build environment. All other files are
15  included by sljitLir.c (if required). Define the machine by SLJIT_CONFIG_*
16  selector. See sljitConfig.h for all possible values. For C++ compilers,
17  rename sljitLir.c to sljitLir.cpp.
18
19More info:
20  http://sljit.sourceforge.net/
21
22Contact:
23  hzmester@freemail.hu
24
25Special thanks:
26  Alexander Nasonov
27  Daniel Richard G.
28  Giuseppe D'Angelo
29  Jiong Wang (TileGX support)
30  Michael McConville
31  Walter Lee
32  Wen Xichang
33