mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 18:40:58 +01:00
add disable-codegen option
This commit is contained in:
parent
c935149c1e
commit
15a9cd5275
5 changed files with 17 additions and 8 deletions
|
@ -17,7 +17,11 @@ enum PromptState {
|
||||||
|
|
||||||
/// Launch an interactive REPL (default)
|
/// Launch an interactive REPL (default)
|
||||||
#[derive(Debug, Clone, Default, Parser)]
|
#[derive(Debug, Clone, Default, Parser)]
|
||||||
pub struct ReplCommand {}
|
pub struct ReplCommand {
|
||||||
|
/// If native codegen should be disabled. This is useful for benchmarking.
|
||||||
|
#[clap(long)]
|
||||||
|
disable_codegen: bool,
|
||||||
|
}
|
||||||
|
|
||||||
impl ReplCommand {
|
impl ReplCommand {
|
||||||
pub async fn run(self) -> Result<ExitCode> {
|
pub async fn run(self) -> Result<ExitCode> {
|
||||||
|
@ -38,7 +42,7 @@ impl ReplCommand {
|
||||||
let mut prompt_state = PromptState::Regular;
|
let mut prompt_state = PromptState::Regular;
|
||||||
let mut source_code = String::new();
|
let mut source_code = String::new();
|
||||||
|
|
||||||
let mut lune_instance = Runtime::new();
|
let mut lune_instance = Runtime::new(!self.disable_codegen);
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let prompt = match prompt_state {
|
let prompt = match prompt_state {
|
||||||
|
|
|
@ -16,6 +16,9 @@ use super::utils::files::{discover_script_path_including_lune_dirs, strip_sheban
|
||||||
pub struct RunCommand {
|
pub struct RunCommand {
|
||||||
/// Script name or full path to the file to run
|
/// Script name or full path to the file to run
|
||||||
script_path: String,
|
script_path: String,
|
||||||
|
/// If native codegen should be disabled. This is useful for benchmarking.
|
||||||
|
#[clap(long)]
|
||||||
|
disable_codegen: bool,
|
||||||
/// Arguments to pass to the script, stored in process.args
|
/// Arguments to pass to the script, stored in process.args
|
||||||
script_args: Vec<String>,
|
script_args: Vec<String>,
|
||||||
}
|
}
|
||||||
|
@ -41,7 +44,7 @@ impl RunCommand {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Create a new lune runtime with all globals & run the script
|
// Create a new lune runtime with all globals & run the script
|
||||||
let mut rt = Runtime::new().with_args(self.script_args);
|
let mut rt = Runtime::new(!self.disable_codegen).with_args(self.script_args);
|
||||||
|
|
||||||
let result = rt
|
let result = rt
|
||||||
.run(&script_display_name, strip_shebang(script_contents))
|
.run(&script_display_name, strip_shebang(script_contents))
|
||||||
|
|
|
@ -27,9 +27,11 @@ self_cell! {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RuntimeInner {
|
impl RuntimeInner {
|
||||||
fn create() -> LuaResult<Self> {
|
fn create(codegen: bool) -> LuaResult<Self> {
|
||||||
let lua = Rc::new(Lua::new());
|
let lua = Rc::new(Lua::new());
|
||||||
|
|
||||||
|
lua.enable_jit(codegen);
|
||||||
|
|
||||||
lua.set_app_data(Rc::downgrade(&lua));
|
lua.set_app_data(Rc::downgrade(&lua));
|
||||||
lua.set_app_data(Vec::<String>::new());
|
lua.set_app_data(Vec::<String>::new());
|
||||||
|
|
||||||
|
@ -110,9 +112,9 @@ impl Runtime {
|
||||||
*/
|
*/
|
||||||
#[must_use]
|
#[must_use]
|
||||||
#[allow(clippy::new_without_default)]
|
#[allow(clippy::new_without_default)]
|
||||||
pub fn new() -> Self {
|
pub fn new(codegen: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
inner: RuntimeInner::create().expect("Failed to create runtime"),
|
inner: RuntimeInner::create(codegen).expect("Failed to create runtime"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ pub async fn run(patched_bin: impl AsRef<[u8]>) -> Result<ExitCode> {
|
||||||
let args = env::args().skip(1).collect::<Vec<_>>();
|
let args = env::args().skip(1).collect::<Vec<_>>();
|
||||||
let meta = Metadata::from_bytes(patched_bin).expect("must be a standalone binary");
|
let meta = Metadata::from_bytes(patched_bin).expect("must be a standalone binary");
|
||||||
|
|
||||||
let mut rt = Runtime::new().with_args(args);
|
let mut rt = Runtime::new(true).with_args(args);
|
||||||
|
|
||||||
let result = rt.run("STANDALONE", meta.bytecode).await;
|
let result = rt.run("STANDALONE", meta.bytecode).await;
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ macro_rules! create_tests {
|
||||||
// The rest of the test logic can continue as normal
|
// The rest of the test logic can continue as normal
|
||||||
let full_name = format!("{}/tests/{}.luau", workspace_dir.display(), $value);
|
let full_name = format!("{}/tests/{}.luau", workspace_dir.display(), $value);
|
||||||
let script = read_to_string(&full_name).await?;
|
let script = read_to_string(&full_name).await?;
|
||||||
let mut lune = Runtime::new().with_args(
|
let mut lune = Runtime::new(true).with_args(
|
||||||
ARGS
|
ARGS
|
||||||
.clone()
|
.clone()
|
||||||
.iter()
|
.iter()
|
||||||
|
|
Loading…
Add table
Reference in a new issue