Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (2)
javascript interpreter written in visual c++
no vote
it is small javascript interpreter called tiny-js.it is written by c++ language within microsoft visual studio 2008.Authored By Gordon Williams Copyright (C) 2009 Pur3 LtdVersion 0.1 : (gw) First published on Google Code Version 0.11 : Making sure the 'root' variable never changes 'symbol_base' added for the current base of the sybmbol table Version 0.12 : Added findChildOrCreate, changed string passing to use references Fixed broken string encoding in getJSString() Removed getInitCode and added getJSON instead Added nil Added rough JSON parsing Improved example app Version 0.13 : Added tokenEnd/tokenLastEnd to lexer to avoid parsing whitespace Ability to define functions without names Can now do "var mine = function(a,b) { ... };" Slightly better 'trace' function
showmic
2016-08-23
0
1
Stack Less JIT Compiler
no vote
A simple, machine independent JIT compiler Called SLJIT, which suitable for translating interpreted byte code to machine code. The sljitLir.h describes the LIR (low-level intermediate representation) of SLJIT.Compatible: Any C (C++) compiler. At least I hope so.Using sljit: Copy the content of sljit_src directory into your project source directory. Add sljitLir.c source file to your build environment. All other files are included by sljitLir.c (if required). Define the machine by SLJIT_CONFIG_* selector. See sljitConfig.h for all possible values. For C++ compilers, rename sljitLir.c to sljitLir.cpp.
showmic
2016-08-23
0
1
No more~