You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/src/ravi_nojit.c

182 lines
4.3 KiB

/******************************************************************************
* Copyright (C) 2015-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************/
#include "ravi_jit.h"
#include "ravi_jitshared.h"
int raviV_compile(struct lua_State *L, struct Proto *p,
ravi_compile_options_t *options) {
(void)L;
(void)p;
(void)options;
return 0;
}
8 years ago
int raviV_compile_n(struct lua_State *L, struct Proto *p[], int n,
ravi_compile_options_t *options) {
(void)L;
(void)p;
(void)n;
(void)options;
return 0;
}
void raviV_freeproto(struct lua_State *L, struct Proto *p) {
(void)L;
(void)p;
}
// Initialize the JIT State and attach it to the
// Global Lua State
// If a JIT State already exists then this function
// will return -1
int raviV_initjit(struct lua_State *L) {
(void)L;
return 0;
}
// Free up the JIT State
void raviV_close(struct lua_State *L) {
(void)L;
}
// Dump the LLVM IR
void raviV_dumpIR(struct lua_State *L, struct Proto *p) {
membuff_t buf;
membuff_init(&buf, 4096);
// TODO enhance this to allow user to specify name
// and also whether to dump header or body or both
char fname[30];
snprintf(fname, sizeof fname, "jitfunction");
ravi_compile_options_t options = {0, 0, 0, RAVI_CODEGEN_ALL};
if (raviJ_codegen(L, p, &options, fname, &buf)) { puts(buf.buf); }
membuff_free(&buf);
}
// Dump the LLVM ASM
void raviV_dumpASM(struct lua_State *L, struct Proto *p) {
(void)L;
(void)p;
}
void raviV_setminexeccount(struct lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_getminexeccount(struct lua_State *L) {
(void)L;
return 0;
}
void raviV_setmincodesize(struct lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_getmincodesize(struct lua_State *L) {
(void)L;
return 0;
}
void raviV_setauto(struct lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_getauto(struct lua_State *L) {
(void)L;
return 0;
}
// Turn on/off the JIT compiler
void raviV_setjitenabled(struct lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_getjitenabled(struct lua_State *L) {
(void)L;
return 0;
}
void raviV_setoptlevel(struct lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_getoptlevel(struct lua_State *L) {
(void)L;
return 0;
}
void raviV_setsizelevel(struct lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_getsizelevel(struct lua_State *L) {
(void)L;
return 0;
}
void raviV_setverbosity(lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_getverbosity(lua_State *L) {
(void)L;
return 0;
}
void raviV_setvalidation(struct lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_getvalidation(struct lua_State *L) {
(void)L;
return 0;
}
// Turn on/off the JIT compiler
void raviV_settraceenabled(struct lua_State *L, int value) {
(void)L;
(void)value;
}
int raviV_gettraceenabled(struct lua_State *L) {
(void)L;
return 0;
}
6 years ago
int ravi_compile_C(lua_State *L) {
(void)L;
6 years ago
return 0;
}
const char *raviV_jit_id(struct lua_State *L) {
return "nojit";
}
#define RAVI_OPTION_STRING3 "nojit"
#define RAVI_OPTIONS RAVI_OPTION_STRING1 RAVI_OPTION_STRING2 RAVI_OPTION_STRING3
const char *raviV_options(struct lua_State *L) {
return RAVI_OPTIONS;
}