2021-10-06 16:07:42 +08:00
|
|
|
use std::collections::{HashMap, HashSet};
|
2021-09-27 22:12:25 +08:00
|
|
|
use std::fs;
|
2021-09-23 21:30:13 +08:00
|
|
|
use std::process::Command;
|
2021-12-04 22:25:52 +08:00
|
|
|
use std::rc::Rc;
|
2021-09-30 22:30:54 +08:00
|
|
|
use std::sync::Arc;
|
2020-12-19 15:29:39 +08:00
|
|
|
|
2021-09-23 19:30:03 +08:00
|
|
|
use inkwell::{
|
2021-12-04 17:52:03 +08:00
|
|
|
memory_buffer::MemoryBuffer,
|
2021-09-23 19:30:03 +08:00
|
|
|
passes::{PassManager, PassManagerBuilder},
|
|
|
|
targets::*,
|
|
|
|
OptimizationLevel,
|
|
|
|
};
|
2022-03-25 22:42:01 +08:00
|
|
|
use nac3core::codegen::gen_func_impl;
|
2022-03-16 23:42:08 +08:00
|
|
|
use nac3core::toplevel::builtins::get_exn_constructor;
|
2022-02-21 18:27:46 +08:00
|
|
|
use nac3core::typecheck::typedef::{TypeEnum, Unifier};
|
2021-11-03 17:11:00 +08:00
|
|
|
use nac3parser::{
|
2022-02-12 21:17:37 +08:00
|
|
|
ast::{self, ExprKind, Stmt, StmtKind, StrRef},
|
2021-10-10 16:26:01 +08:00
|
|
|
parser::{self, parse_program},
|
2021-09-30 22:30:54 +08:00
|
|
|
};
|
2021-11-20 21:15:15 +08:00
|
|
|
use pyo3::prelude::*;
|
2021-12-04 22:57:48 +08:00
|
|
|
use pyo3::{exceptions, types::PyBytes, types::PyDict, types::PySet};
|
2022-02-26 17:17:06 +08:00
|
|
|
use pyo3::create_exception;
|
2021-09-30 22:30:54 +08:00
|
|
|
|
2021-10-10 16:26:01 +08:00
|
|
|
use parking_lot::{Mutex, RwLock};
|
2020-12-19 16:23:12 +08:00
|
|
|
|
2021-09-23 19:30:03 +08:00
|
|
|
use nac3core::{
|
2022-01-08 22:16:55 +08:00
|
|
|
codegen::irrt::load_irrt,
|
2022-02-21 18:27:46 +08:00
|
|
|
codegen::{concrete_type::ConcreteTypeStore, CodeGenTask, WithCall, WorkerRegistry},
|
2021-09-23 19:30:03 +08:00
|
|
|
symbol_resolver::SymbolResolver,
|
2022-02-12 21:17:37 +08:00
|
|
|
toplevel::{
|
|
|
|
composer::{ComposerConfig, TopLevelComposer},
|
|
|
|
DefinitionId, GenCall, TopLevelDef,
|
|
|
|
},
|
2021-10-08 23:13:46 +08:00
|
|
|
typecheck::typedef::{FunSignature, FuncArg},
|
2021-09-30 22:30:54 +08:00
|
|
|
typecheck::{type_inferencer::PrimitiveStore, typedef::Type},
|
|
|
|
};
|
|
|
|
|
2021-11-06 13:03:45 +08:00
|
|
|
use tempfile::{self, TempDir};
|
|
|
|
|
2022-03-25 22:42:01 +08:00
|
|
|
use crate::codegen::attributes_writeback;
|
2021-11-20 21:15:15 +08:00
|
|
|
use crate::{
|
2022-02-12 21:17:37 +08:00
|
|
|
codegen::{rpc_codegen_callback, ArtiqCodeGenerator},
|
2022-03-24 21:29:46 +08:00
|
|
|
symbol_resolver::{InnerResolver, PythonHelper, Resolver, DeferredEvaluationStore},
|
2021-11-20 21:15:15 +08:00
|
|
|
};
|
2020-12-19 15:29:39 +08:00
|
|
|
|
2021-10-31 17:16:21 +08:00
|
|
|
mod codegen;
|
2021-09-23 19:30:03 +08:00
|
|
|
mod symbol_resolver;
|
2021-10-10 16:26:01 +08:00
|
|
|
mod timeline;
|
2020-12-19 15:29:39 +08:00
|
|
|
|
2021-10-08 23:13:46 +08:00
|
|
|
use timeline::TimeFns;
|
|
|
|
|
2021-10-02 19:05:35 +08:00
|
|
|
#[derive(PartialEq, Clone, Copy)]
|
2021-09-29 15:33:12 +08:00
|
|
|
enum Isa {
|
2021-10-31 23:02:21 +08:00
|
|
|
Host,
|
2021-11-11 23:43:50 +08:00
|
|
|
RiscV32G,
|
|
|
|
RiscV32IMA,
|
2021-09-30 22:30:54 +08:00
|
|
|
CortexA9,
|
2021-09-29 15:33:12 +08:00
|
|
|
}
|
|
|
|
|
2021-10-06 16:07:42 +08:00
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct PrimitivePythonId {
|
|
|
|
int: u64,
|
|
|
|
int32: u64,
|
|
|
|
int64: u64,
|
2022-03-05 03:45:09 +08:00
|
|
|
uint32: u64,
|
|
|
|
uint64: u64,
|
2021-10-06 16:07:42 +08:00
|
|
|
float: u64,
|
2022-04-12 10:33:28 +08:00
|
|
|
float64: u64,
|
2021-10-06 16:07:42 +08:00
|
|
|
bool: u64,
|
|
|
|
list: u64,
|
|
|
|
tuple: u64,
|
2021-12-01 22:44:53 +08:00
|
|
|
typevar: u64,
|
|
|
|
none: u64,
|
2022-02-12 21:17:37 +08:00
|
|
|
exception: u64,
|
2021-12-01 22:44:53 +08:00
|
|
|
generic_alias: (u64, u64),
|
|
|
|
virtual_id: u64,
|
2022-03-26 15:09:15 +08:00
|
|
|
option: u64,
|
2021-10-06 16:07:42 +08:00
|
|
|
}
|
|
|
|
|
2021-12-04 22:57:48 +08:00
|
|
|
type TopLevelComponent = (Stmt, String, PyObject);
|
2021-12-04 22:25:52 +08:00
|
|
|
|
2021-10-02 18:28:44 +08:00
|
|
|
// TopLevelComposer is unsendable as it holds the unification table, which is
|
|
|
|
// unsendable due to Rc. Arc would cause a performance hit.
|
2021-09-30 22:30:54 +08:00
|
|
|
#[pyclass(unsendable, name = "NAC3")]
|
2020-12-19 15:29:39 +08:00
|
|
|
struct Nac3 {
|
2021-09-29 15:33:12 +08:00
|
|
|
isa: Isa,
|
2021-11-01 00:03:15 +08:00
|
|
|
time_fns: &'static (dyn TimeFns + Sync),
|
2021-09-23 19:30:03 +08:00
|
|
|
primitive: PrimitiveStore,
|
2021-12-04 22:25:52 +08:00
|
|
|
builtins: Vec<(StrRef, FunSignature, Arc<GenCall>)>,
|
2021-09-30 22:30:54 +08:00
|
|
|
pyid_to_def: Arc<RwLock<HashMap<u64, DefinitionId>>>,
|
2021-10-06 16:07:42 +08:00
|
|
|
primitive_ids: PrimitivePythonId,
|
2021-11-06 13:03:45 +08:00
|
|
|
working_directory: TempDir,
|
2021-12-04 22:25:52 +08:00
|
|
|
top_levels: Vec<TopLevelComponent>,
|
2022-02-12 21:17:37 +08:00
|
|
|
string_store: Arc<RwLock<HashMap<String, i32>>>,
|
2022-03-05 00:26:35 +08:00
|
|
|
exception_ids: Arc<RwLock<HashMap<usize, usize>>>,
|
2022-03-24 21:29:46 +08:00
|
|
|
deferred_eval_store: DeferredEvaluationStore
|
2021-09-30 22:30:54 +08:00
|
|
|
}
|
|
|
|
|
2022-02-26 17:17:06 +08:00
|
|
|
create_exception!(nac3artiq, CompileError, exceptions::PyException);
|
|
|
|
|
2021-09-30 22:30:54 +08:00
|
|
|
impl Nac3 {
|
2021-11-20 21:15:15 +08:00
|
|
|
fn register_module(
|
|
|
|
&mut self,
|
|
|
|
module: PyObject,
|
|
|
|
registered_class_ids: &HashSet<u64>,
|
|
|
|
) -> PyResult<()> {
|
2021-12-04 22:57:48 +08:00
|
|
|
let (module_name, source_file) = Python::with_gil(|py| -> PyResult<(String, String)> {
|
|
|
|
let module: &PyAny = module.extract(py)?;
|
2022-02-21 18:27:46 +08:00
|
|
|
Ok((module.getattr("__name__")?.extract()?, module.getattr("__file__")?.extract()?))
|
2021-12-04 22:57:48 +08:00
|
|
|
})?;
|
2021-09-30 22:30:54 +08:00
|
|
|
|
2021-12-28 01:28:55 +08:00
|
|
|
let source = fs::read_to_string(&source_file).map_err(|e| {
|
2021-09-30 22:30:54 +08:00
|
|
|
exceptions::PyIOError::new_err(format!("failed to read input file: {}", e))
|
|
|
|
})?;
|
2021-12-28 01:28:55 +08:00
|
|
|
let parser_result = parser::parse_program(&source, source_file.into())
|
2021-10-06 16:07:42 +08:00
|
|
|
.map_err(|e| exceptions::PySyntaxError::new_err(format!("parse error: {}", e)))?;
|
2021-11-20 21:15:15 +08:00
|
|
|
|
2021-09-30 22:30:54 +08:00
|
|
|
for mut stmt in parser_result.into_iter() {
|
|
|
|
let include = match stmt.node {
|
|
|
|
ast::StmtKind::ClassDef {
|
2022-02-21 18:27:46 +08:00
|
|
|
ref decorator_list, ref mut body, ref mut bases, ..
|
2021-09-30 22:30:54 +08:00
|
|
|
} => {
|
2021-11-11 16:35:40 +08:00
|
|
|
let nac3_class = decorator_list.iter().any(|decorator| {
|
2021-09-30 22:30:54 +08:00
|
|
|
if let ast::ExprKind::Name { id, .. } = decorator.node {
|
2021-11-05 18:07:43 +08:00
|
|
|
id.to_string() == "nac3"
|
2021-09-30 22:30:54 +08:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
});
|
2021-11-11 16:35:40 +08:00
|
|
|
if !nac3_class {
|
|
|
|
continue;
|
|
|
|
}
|
2021-11-11 16:08:29 +08:00
|
|
|
// Drop unregistered (i.e. host-only) base classes.
|
|
|
|
bases.retain(|base| {
|
|
|
|
Python::with_gil(|py| -> PyResult<bool> {
|
|
|
|
let id_fn = PyModule::import(py, "builtins")?.getattr("id")?;
|
|
|
|
match &base.node {
|
|
|
|
ast::ExprKind::Name { id, .. } => {
|
2022-02-12 21:17:37 +08:00
|
|
|
if *id == "Exception".into() {
|
|
|
|
Ok(true)
|
|
|
|
} else {
|
|
|
|
let base_obj = module.getattr(py, id.to_string())?;
|
|
|
|
let base_id = id_fn.call1((base_obj,))?.extract()?;
|
|
|
|
Ok(registered_class_ids.contains(&base_id))
|
|
|
|
}
|
2021-11-20 21:15:15 +08:00
|
|
|
}
|
|
|
|
_ => Ok(true),
|
2021-11-11 16:08:29 +08:00
|
|
|
}
|
2021-11-20 21:15:15 +08:00
|
|
|
})
|
|
|
|
.unwrap()
|
2021-11-11 16:08:29 +08:00
|
|
|
});
|
2021-09-30 22:30:54 +08:00
|
|
|
body.retain(|stmt| {
|
2022-02-21 18:27:46 +08:00
|
|
|
if let ast::StmtKind::FunctionDef { ref decorator_list, .. } = stmt.node {
|
2021-09-30 22:30:54 +08:00
|
|
|
decorator_list.iter().any(|decorator| {
|
|
|
|
if let ast::ExprKind::Name { id, .. } = decorator.node {
|
2022-02-12 21:17:37 +08:00
|
|
|
id.to_string() == "kernel"
|
|
|
|
|| id.to_string() == "portable"
|
|
|
|
|| id.to_string() == "rpc"
|
2021-09-30 22:30:54 +08:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
});
|
2021-11-11 16:35:40 +08:00
|
|
|
true
|
2021-09-30 22:30:54 +08:00
|
|
|
}
|
2022-02-21 18:27:46 +08:00
|
|
|
ast::StmtKind::FunctionDef { ref decorator_list, .. } => {
|
|
|
|
decorator_list.iter().any(|decorator| {
|
|
|
|
if let ast::ExprKind::Name { id, .. } = decorator.node {
|
|
|
|
let id = id.to_string();
|
|
|
|
id == "extern" || id == "portable" || id == "kernel" || id == "rpc"
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-09-30 22:30:54 +08:00
|
|
|
_ => false,
|
|
|
|
};
|
|
|
|
|
|
|
|
if include {
|
2022-02-21 18:27:46 +08:00
|
|
|
self.top_levels.push((stmt, module_name.clone(), module.clone()));
|
2021-09-30 22:30:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-01-13 05:55:37 +08:00
|
|
|
|
|
|
|
fn report_modinit(
|
|
|
|
arg_names: &[String],
|
|
|
|
method_name: &str,
|
|
|
|
resolver: Arc<dyn SymbolResolver + Send + Sync>,
|
|
|
|
top_level_defs: &[Arc<RwLock<TopLevelDef>>],
|
|
|
|
unifier: &mut Unifier,
|
|
|
|
primitives: &PrimitiveStore,
|
|
|
|
) -> Option<String> {
|
|
|
|
let base_ty =
|
|
|
|
match resolver.get_symbol_type(unifier, top_level_defs, primitives, "base".into()) {
|
|
|
|
Ok(ty) => ty,
|
2022-02-21 18:27:46 +08:00
|
|
|
Err(e) => return Some(format!("type error inside object launching kernel: {}", e)),
|
2022-01-13 05:55:37 +08:00
|
|
|
};
|
2022-02-12 21:17:37 +08:00
|
|
|
|
2022-01-13 05:55:37 +08:00
|
|
|
let fun_ty = if method_name.is_empty() {
|
|
|
|
base_ty
|
|
|
|
} else if let TypeEnum::TObj { fields, .. } = &*unifier.get_ty(base_ty) {
|
2022-02-21 17:52:34 +08:00
|
|
|
match fields.get(&(*method_name).into()) {
|
2022-01-13 05:55:37 +08:00
|
|
|
Some(t) => t.0,
|
2022-02-21 18:27:46 +08:00
|
|
|
None => {
|
|
|
|
return Some(format!(
|
|
|
|
"object launching kernel does not have method `{}`",
|
|
|
|
method_name
|
|
|
|
))
|
|
|
|
}
|
2022-01-13 05:55:37 +08:00
|
|
|
}
|
|
|
|
} else {
|
2022-02-21 18:27:46 +08:00
|
|
|
return Some("cannot launch kernel by calling a non-callable".into());
|
2022-01-13 05:55:37 +08:00
|
|
|
};
|
2022-02-12 21:17:37 +08:00
|
|
|
|
2022-02-21 17:52:34 +08:00
|
|
|
if let TypeEnum::TFunc(FunSignature { args, .. }) = &*unifier.get_ty(fun_ty) {
|
2022-01-13 05:55:37 +08:00
|
|
|
if arg_names.len() > args.len() {
|
|
|
|
return Some(format!(
|
|
|
|
"launching kernel function with too many arguments (expect {}, found {})",
|
|
|
|
args.len(),
|
|
|
|
arg_names.len(),
|
2022-02-21 18:27:46 +08:00
|
|
|
));
|
2022-01-13 05:55:37 +08:00
|
|
|
}
|
|
|
|
for (i, FuncArg { ty, default_value, name }) in args.iter().enumerate() {
|
|
|
|
let in_name = match arg_names.get(i) {
|
|
|
|
Some(n) => n,
|
2022-02-21 18:27:46 +08:00
|
|
|
None if default_value.is_none() => {
|
|
|
|
return Some(format!(
|
|
|
|
"argument `{}` not provided when launching kernel function",
|
|
|
|
name
|
|
|
|
))
|
|
|
|
}
|
2022-01-13 05:55:37 +08:00
|
|
|
_ => break,
|
|
|
|
};
|
|
|
|
let in_ty = match resolver.get_symbol_type(
|
|
|
|
unifier,
|
|
|
|
top_level_defs,
|
|
|
|
primitives,
|
2022-02-21 18:27:46 +08:00
|
|
|
in_name.clone().into(),
|
2022-01-13 05:55:37 +08:00
|
|
|
) {
|
|
|
|
Ok(t) => t,
|
2022-02-21 18:27:46 +08:00
|
|
|
Err(e) => {
|
|
|
|
return Some(format!(
|
|
|
|
"type error ({}) at parameter #{} when calling kernel function",
|
|
|
|
e, i
|
|
|
|
))
|
|
|
|
}
|
2022-01-13 05:55:37 +08:00
|
|
|
};
|
|
|
|
if let Err(e) = unifier.unify(in_ty, *ty) {
|
|
|
|
return Some(format!(
|
2022-02-21 18:27:46 +08:00
|
|
|
"type error ({}) at parameter #{} when calling kernel function",
|
|
|
|
e.to_display(unifier).to_string(),
|
|
|
|
i
|
2022-01-13 05:55:37 +08:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2022-02-21 18:27:46 +08:00
|
|
|
return Some("cannot launch kernel by calling a non-callable".into());
|
2022-01-13 05:55:37 +08:00
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
2020-12-19 15:29:39 +08:00
|
|
|
}
|
|
|
|
|
2022-03-16 23:42:08 +08:00
|
|
|
fn add_exceptions(
|
|
|
|
composer: &mut TopLevelComposer,
|
|
|
|
builtin_def: &mut HashMap<StrRef, DefinitionId>,
|
|
|
|
builtin_ty: &mut HashMap<StrRef, Type>,
|
|
|
|
error_names: &[&str]
|
|
|
|
) -> Vec<Type> {
|
|
|
|
let mut types = Vec::new();
|
|
|
|
// note: this is only for builtin exceptions, i.e. the exception name is "0:{exn}"
|
|
|
|
for name in error_names {
|
|
|
|
let def_id = composer.definition_ast_list.len();
|
|
|
|
let (exception_fn, exception_class, exception_cons, exception_type) = get_exn_constructor(
|
|
|
|
name,
|
|
|
|
// class id
|
|
|
|
def_id,
|
|
|
|
// constructor id
|
|
|
|
def_id + 1,
|
|
|
|
&mut composer.unifier,
|
|
|
|
&composer.primitives_ty
|
|
|
|
);
|
|
|
|
composer.definition_ast_list.push((Arc::new(RwLock::new(exception_class)), None));
|
|
|
|
composer.definition_ast_list.push((Arc::new(RwLock::new(exception_fn)), None));
|
|
|
|
builtin_ty.insert((*name).into(), exception_cons);
|
|
|
|
builtin_def.insert((*name).into(), DefinitionId(def_id));
|
|
|
|
types.push(exception_type);
|
|
|
|
}
|
|
|
|
types
|
|
|
|
}
|
|
|
|
|
2020-12-19 15:29:39 +08:00
|
|
|
#[pymethods]
|
|
|
|
impl Nac3 {
|
|
|
|
#[new]
|
2021-10-06 16:07:42 +08:00
|
|
|
fn new(isa: &str, py: Python) -> PyResult<Self> {
|
2021-09-29 15:33:12 +08:00
|
|
|
let isa = match isa {
|
2021-10-31 23:02:21 +08:00
|
|
|
"host" => Isa::Host,
|
2021-11-11 23:43:50 +08:00
|
|
|
"rv32g" => Isa::RiscV32G,
|
|
|
|
"rv32ima" => Isa::RiscV32IMA,
|
2021-09-29 15:33:12 +08:00
|
|
|
"cortexa9" => Isa::CortexA9,
|
2021-09-30 22:30:54 +08:00
|
|
|
_ => return Err(exceptions::PyValueError::new_err("invalid ISA")),
|
2021-09-29 15:33:12 +08:00
|
|
|
};
|
2021-10-08 23:13:46 +08:00
|
|
|
let time_fns: &(dyn TimeFns + Sync) = match isa {
|
2021-10-31 23:02:21 +08:00
|
|
|
Isa::Host => &timeline::EXTERN_TIME_FNS,
|
2021-11-13 12:10:55 +08:00
|
|
|
Isa::RiscV32G => &timeline::NOW_PINNING_TIME_FNS_64,
|
2021-11-11 23:43:50 +08:00
|
|
|
Isa::RiscV32IMA => &timeline::NOW_PINNING_TIME_FNS,
|
2021-10-08 23:13:46 +08:00
|
|
|
Isa::CortexA9 => &timeline::EXTERN_TIME_FNS,
|
2021-10-06 16:07:42 +08:00
|
|
|
};
|
2021-10-08 23:13:46 +08:00
|
|
|
let primitive: PrimitiveStore = TopLevelComposer::make_primitives().0;
|
|
|
|
let builtins = vec![
|
|
|
|
(
|
|
|
|
"now_mu".into(),
|
2022-02-21 18:27:46 +08:00
|
|
|
FunSignature { args: vec![], ret: primitive.int64, vars: HashMap::new() },
|
2022-02-12 21:17:37 +08:00
|
|
|
Arc::new(GenCall::new(Box::new(move |ctx, _, _, _, _| {
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(Some(time_fns.emit_now_mu(ctx)))
|
2021-10-10 16:26:01 +08:00
|
|
|
}))),
|
2021-10-08 23:13:46 +08:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"at_mu".into(),
|
|
|
|
FunSignature {
|
|
|
|
args: vec![FuncArg {
|
|
|
|
name: "t".into(),
|
|
|
|
ty: primitive.int64,
|
|
|
|
default_value: None,
|
|
|
|
}],
|
|
|
|
ret: primitive.none,
|
|
|
|
vars: HashMap::new(),
|
|
|
|
},
|
2022-04-08 03:26:42 +08:00
|
|
|
Arc::new(GenCall::new(Box::new(move |ctx, _, fun, args, generator| {
|
|
|
|
let arg_ty = fun.0.args[0].ty;
|
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty).unwrap();
|
2022-02-12 21:17:37 +08:00
|
|
|
time_fns.emit_at_mu(ctx, arg);
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(None)
|
2021-10-10 16:26:01 +08:00
|
|
|
}))),
|
2021-10-08 23:13:46 +08:00
|
|
|
),
|
|
|
|
(
|
|
|
|
"delay_mu".into(),
|
|
|
|
FunSignature {
|
|
|
|
args: vec![FuncArg {
|
|
|
|
name: "dt".into(),
|
|
|
|
ty: primitive.int64,
|
|
|
|
default_value: None,
|
|
|
|
}],
|
|
|
|
ret: primitive.none,
|
|
|
|
vars: HashMap::new(),
|
|
|
|
},
|
2022-04-08 03:26:42 +08:00
|
|
|
Arc::new(GenCall::new(Box::new(move |ctx, _, fun, args, generator| {
|
|
|
|
let arg_ty = fun.0.args[0].ty;
|
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty).unwrap();
|
2022-02-12 21:17:37 +08:00
|
|
|
time_fns.emit_delay_mu(ctx, arg);
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(None)
|
2021-10-10 16:26:01 +08:00
|
|
|
}))),
|
2021-10-08 23:13:46 +08:00
|
|
|
),
|
|
|
|
];
|
2021-10-06 16:07:42 +08:00
|
|
|
|
|
|
|
let builtins_mod = PyModule::import(py, "builtins").unwrap();
|
|
|
|
let id_fn = builtins_mod.getattr("id").unwrap();
|
|
|
|
let numpy_mod = PyModule::import(py, "numpy").unwrap();
|
2021-12-01 22:44:53 +08:00
|
|
|
let typing_mod = PyModule::import(py, "typing").unwrap();
|
|
|
|
let types_mod = PyModule::import(py, "types").unwrap();
|
2022-03-16 23:42:08 +08:00
|
|
|
|
|
|
|
let get_id = |x| id_fn.call1((x,)).unwrap().extract().unwrap();
|
|
|
|
let get_attr_id = |obj: &PyModule, attr| id_fn.call1((obj.getattr(attr).unwrap(),))
|
|
|
|
.unwrap().extract().unwrap();
|
2021-10-06 16:07:42 +08:00
|
|
|
let primitive_ids = PrimitivePythonId {
|
2022-03-16 23:42:08 +08:00
|
|
|
virtual_id: get_id(
|
|
|
|
builtins_mod
|
|
|
|
.getattr("globals")
|
|
|
|
.unwrap()
|
|
|
|
.call0()
|
|
|
|
.unwrap()
|
|
|
|
.get_item("virtual")
|
|
|
|
.unwrap(
|
|
|
|
)),
|
2021-12-01 22:44:53 +08:00
|
|
|
generic_alias: (
|
2022-03-16 23:42:08 +08:00
|
|
|
get_attr_id(typing_mod, "_GenericAlias"),
|
|
|
|
get_attr_id(types_mod, "GenericAlias"),
|
2021-12-01 22:44:53 +08:00
|
|
|
),
|
2022-03-26 15:09:15 +08:00
|
|
|
none: id_fn
|
|
|
|
.call1((builtins_mod
|
|
|
|
.getattr("globals")
|
|
|
|
.unwrap()
|
|
|
|
.call0()
|
|
|
|
.unwrap()
|
|
|
|
.get_item("none")
|
|
|
|
.unwrap(),))
|
|
|
|
.unwrap()
|
|
|
|
.extract()
|
|
|
|
.unwrap(),
|
2022-03-16 23:42:08 +08:00
|
|
|
typevar: get_attr_id(typing_mod, "TypeVar"),
|
|
|
|
int: get_attr_id(builtins_mod, "int"),
|
|
|
|
int32: get_attr_id(numpy_mod, "int32"),
|
|
|
|
int64: get_attr_id(numpy_mod, "int64"),
|
|
|
|
uint32: get_attr_id(numpy_mod, "uint32"),
|
|
|
|
uint64: get_attr_id(numpy_mod, "uint64"),
|
|
|
|
bool: get_attr_id(builtins_mod, "bool"),
|
|
|
|
float: get_attr_id(builtins_mod, "float"),
|
2022-04-12 10:33:28 +08:00
|
|
|
float64: get_attr_id(numpy_mod, "float64"),
|
2022-03-16 23:42:08 +08:00
|
|
|
list: get_attr_id(builtins_mod, "list"),
|
|
|
|
tuple: get_attr_id(builtins_mod, "tuple"),
|
|
|
|
exception: get_attr_id(builtins_mod, "Exception"),
|
2022-03-26 15:09:15 +08:00
|
|
|
option: id_fn
|
|
|
|
.call1((builtins_mod
|
|
|
|
.getattr("globals")
|
|
|
|
.unwrap()
|
|
|
|
.call0()
|
|
|
|
.unwrap()
|
|
|
|
.get_item("Option")
|
|
|
|
.unwrap(),))
|
|
|
|
.unwrap()
|
|
|
|
.extract()
|
|
|
|
.unwrap(),
|
2021-10-06 16:07:42 +08:00
|
|
|
};
|
|
|
|
|
2021-11-06 13:03:45 +08:00
|
|
|
let working_directory = tempfile::Builder::new().prefix("nac3-").tempdir().unwrap();
|
2022-02-21 18:27:46 +08:00
|
|
|
fs::write(working_directory.path().join("kernel.ld"), include_bytes!("kernel.ld")).unwrap();
|
2021-11-06 13:03:45 +08:00
|
|
|
|
2021-09-29 15:33:12 +08:00
|
|
|
Ok(Nac3 {
|
|
|
|
isa,
|
2021-11-01 00:03:15 +08:00
|
|
|
time_fns,
|
2021-09-26 22:17:09 +08:00
|
|
|
primitive,
|
2021-12-04 22:25:52 +08:00
|
|
|
builtins,
|
2021-10-06 16:07:42 +08:00
|
|
|
primitive_ids,
|
2021-12-04 22:25:52 +08:00
|
|
|
top_levels: Default::default(),
|
2021-09-30 22:30:54 +08:00
|
|
|
pyid_to_def: Default::default(),
|
2021-11-20 21:15:15 +08:00
|
|
|
working_directory,
|
2022-02-21 18:27:46 +08:00
|
|
|
string_store: Default::default(),
|
2022-03-05 00:26:35 +08:00
|
|
|
exception_ids: Default::default(),
|
2022-03-24 21:29:46 +08:00
|
|
|
deferred_eval_store: DeferredEvaluationStore::new(),
|
2021-09-29 15:33:12 +08:00
|
|
|
})
|
2020-12-19 15:29:39 +08:00
|
|
|
}
|
|
|
|
|
2021-11-11 16:08:29 +08:00
|
|
|
fn analyze(&mut self, functions: &PySet, classes: &PySet) -> PyResult<()> {
|
2021-11-20 21:15:15 +08:00
|
|
|
let (modules, class_ids) =
|
|
|
|
Python::with_gil(|py| -> PyResult<(HashMap<u64, PyObject>, HashSet<u64>)> {
|
|
|
|
let mut modules: HashMap<u64, PyObject> = HashMap::new();
|
|
|
|
let mut class_ids: HashSet<u64> = HashSet::new();
|
2021-11-11 16:08:29 +08:00
|
|
|
|
2021-11-20 21:15:15 +08:00
|
|
|
let id_fn = PyModule::import(py, "builtins")?.getattr("id")?;
|
|
|
|
let getmodule_fn = PyModule::import(py, "inspect")?.getattr("getmodule")?;
|
2021-11-11 16:08:29 +08:00
|
|
|
|
2021-11-20 21:15:15 +08:00
|
|
|
for function in functions.iter() {
|
|
|
|
let module = getmodule_fn.call1((function,))?.extract()?;
|
|
|
|
modules.insert(id_fn.call1((&module,))?.extract()?, module);
|
|
|
|
}
|
|
|
|
for class in classes.iter() {
|
|
|
|
let module = getmodule_fn.call1((class,))?.extract()?;
|
|
|
|
modules.insert(id_fn.call1((&module,))?.extract()?, module);
|
|
|
|
class_ids.insert(id_fn.call1((class,))?.extract()?);
|
|
|
|
}
|
|
|
|
Ok((modules, class_ids))
|
|
|
|
})?;
|
2021-11-11 16:08:29 +08:00
|
|
|
|
|
|
|
for module in modules.into_values() {
|
|
|
|
self.register_module(module, &class_ids)?;
|
2021-09-30 22:30:54 +08:00
|
|
|
}
|
2021-09-23 19:30:03 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-11-06 14:14:53 +08:00
|
|
|
fn compile_method_to_file(
|
2021-10-10 16:26:01 +08:00
|
|
|
&mut self,
|
|
|
|
obj: &PyAny,
|
2021-11-06 14:14:53 +08:00
|
|
|
method_name: &str,
|
2021-10-10 16:26:01 +08:00
|
|
|
args: Vec<&PyAny>,
|
2021-11-06 14:14:53 +08:00
|
|
|
filename: &str,
|
2022-02-12 21:17:37 +08:00
|
|
|
embedding_map: &PyAny,
|
2021-10-10 16:26:01 +08:00
|
|
|
py: Python,
|
|
|
|
) -> PyResult<()> {
|
2022-03-16 23:42:08 +08:00
|
|
|
let (mut composer, mut builtins_def, mut builtins_ty) = TopLevelComposer::new(
|
2022-02-21 18:27:46 +08:00
|
|
|
self.builtins.clone(),
|
|
|
|
ComposerConfig { kernel_ann: Some("Kernel"), kernel_invariant_ann: "KernelInvariant" },
|
|
|
|
);
|
2021-12-04 22:57:48 +08:00
|
|
|
|
|
|
|
let builtins = PyModule::import(py, "builtins")?;
|
|
|
|
let typings = PyModule::import(py, "typing")?;
|
|
|
|
let id_fn = builtins.getattr("id")?;
|
2022-03-05 00:26:35 +08:00
|
|
|
let issubclass = builtins.getattr("issubclass")?;
|
|
|
|
let exn_class = builtins.getattr("Exception")?;
|
2022-02-12 21:17:37 +08:00
|
|
|
let store_obj = embedding_map.getattr("store_object").unwrap().to_object(py);
|
|
|
|
let store_str = embedding_map.getattr("store_str").unwrap().to_object(py);
|
2022-02-21 18:27:46 +08:00
|
|
|
let store_fun = embedding_map.getattr("store_function").unwrap().to_object(py);
|
2022-03-25 22:42:01 +08:00
|
|
|
let host_attributes = embedding_map.getattr("attributes_writeback").unwrap().to_object(py);
|
|
|
|
let global_value_ids: Arc<RwLock<HashMap<_, _>>> = Arc::new(RwLock::new(HashMap::new()));
|
2021-12-04 22:57:48 +08:00
|
|
|
let helper = PythonHelper {
|
|
|
|
id_fn: builtins.getattr("id").unwrap().to_object(py),
|
|
|
|
len_fn: builtins.getattr("len").unwrap().to_object(py),
|
|
|
|
type_fn: builtins.getattr("type").unwrap().to_object(py),
|
|
|
|
origin_ty_fn: typings.getattr("get_origin").unwrap().to_object(py),
|
|
|
|
args_ty_fn: typings.getattr("get_args").unwrap().to_object(py),
|
2022-03-05 00:26:35 +08:00
|
|
|
store_obj: store_obj.clone(),
|
2022-02-21 18:27:46 +08:00
|
|
|
store_str,
|
2021-12-04 22:57:48 +08:00
|
|
|
};
|
|
|
|
|
2022-01-15 04:43:39 +08:00
|
|
|
let pyid_to_type = Arc::new(RwLock::new(HashMap::<u64, Type>::new()));
|
2022-03-16 23:42:08 +08:00
|
|
|
let exception_names = [
|
2022-03-17 00:04:49 +08:00
|
|
|
"ZeroDivisionError",
|
|
|
|
"IndexError",
|
2022-03-16 23:42:08 +08:00
|
|
|
"ValueError",
|
2022-03-17 15:03:22 +08:00
|
|
|
"RuntimeError",
|
|
|
|
"AssertionError",
|
|
|
|
"KeyError",
|
|
|
|
"NotImplementedError",
|
|
|
|
"OverflowError",
|
2022-03-26 15:09:15 +08:00
|
|
|
"IOError",
|
|
|
|
"UnwrapNoneError",
|
2022-03-16 23:42:08 +08:00
|
|
|
];
|
|
|
|
add_exceptions(&mut composer, &mut builtins_def, &mut builtins_ty, &exception_names);
|
|
|
|
|
|
|
|
let mut module_to_resolver_cache: HashMap<u64, _> = HashMap::new();
|
|
|
|
|
2022-02-12 21:17:37 +08:00
|
|
|
let mut rpc_ids = vec![];
|
2021-12-04 22:57:48 +08:00
|
|
|
for (stmt, path, module) in self.top_levels.iter() {
|
|
|
|
let py_module: &PyAny = module.extract(py)?;
|
|
|
|
let module_id: u64 = id_fn.call1((py_module,))?.extract()?;
|
|
|
|
let helper = helper.clone();
|
2022-03-05 00:26:35 +08:00
|
|
|
let class_obj;
|
|
|
|
if let StmtKind::ClassDef { name, .. } = &stmt.node {
|
|
|
|
let class = py_module.getattr(name.to_string()).unwrap();
|
|
|
|
if issubclass.call1((class, exn_class)).unwrap().extract().unwrap() &&
|
|
|
|
class.getattr("artiq_builtin").is_err() {
|
|
|
|
class_obj = Some(class);
|
|
|
|
} else {
|
|
|
|
class_obj = None;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
class_obj = None;
|
|
|
|
}
|
2022-02-21 18:27:46 +08:00
|
|
|
let (name_to_pyid, resolver) =
|
|
|
|
module_to_resolver_cache.get(&module_id).cloned().unwrap_or_else(|| {
|
2021-12-04 22:57:48 +08:00
|
|
|
let mut name_to_pyid: HashMap<StrRef, u64> = HashMap::new();
|
|
|
|
let members: &PyDict =
|
|
|
|
py_module.getattr("__dict__").unwrap().cast_as().unwrap();
|
|
|
|
for (key, val) in members.iter() {
|
|
|
|
let key: &str = key.extract().unwrap();
|
|
|
|
let val = id_fn.call1((val,)).unwrap().extract().unwrap();
|
|
|
|
name_to_pyid.insert(key.into(), val);
|
|
|
|
}
|
|
|
|
let resolver = Arc::new(Resolver(Arc::new(InnerResolver {
|
2022-03-16 23:42:08 +08:00
|
|
|
id_to_type: builtins_ty.clone().into(),
|
|
|
|
id_to_def: builtins_def.clone().into(),
|
2021-12-04 22:57:48 +08:00
|
|
|
pyid_to_def: self.pyid_to_def.clone(),
|
2022-01-15 04:43:39 +08:00
|
|
|
pyid_to_type: pyid_to_type.clone(),
|
2021-12-04 22:57:48 +08:00
|
|
|
primitive_ids: self.primitive_ids.clone(),
|
2022-01-15 04:43:39 +08:00
|
|
|
global_value_ids: global_value_ids.clone(),
|
2021-12-04 22:57:48 +08:00
|
|
|
class_names: Default::default(),
|
|
|
|
name_to_pyid: name_to_pyid.clone(),
|
|
|
|
module: module.clone(),
|
2021-12-05 20:30:03 +08:00
|
|
|
id_to_pyval: Default::default(),
|
|
|
|
id_to_primitive: Default::default(),
|
|
|
|
field_to_val: Default::default(),
|
2021-12-04 22:57:48 +08:00
|
|
|
helper,
|
2022-02-12 21:17:37 +08:00
|
|
|
string_store: self.string_store.clone(),
|
2022-03-05 00:26:35 +08:00
|
|
|
exception_ids: self.exception_ids.clone(),
|
2022-03-24 21:29:46 +08:00
|
|
|
deferred_eval_store: self.deferred_eval_store.clone(),
|
2021-12-04 22:57:48 +08:00
|
|
|
})))
|
|
|
|
as Arc<dyn SymbolResolver + Send + Sync>;
|
|
|
|
let name_to_pyid = Rc::new(name_to_pyid);
|
|
|
|
module_to_resolver_cache
|
|
|
|
.insert(module_id, (name_to_pyid.clone(), resolver.clone()));
|
|
|
|
(name_to_pyid, resolver)
|
|
|
|
});
|
|
|
|
|
2021-12-04 22:25:52 +08:00
|
|
|
let (name, def_id, ty) = composer
|
|
|
|
.register_top_level(stmt.clone(), Some(resolver.clone()), path.clone())
|
2022-02-12 21:17:37 +08:00
|
|
|
.map_err(|e| {
|
2022-02-26 17:17:06 +08:00
|
|
|
CompileError::new_err(format!(
|
2022-02-28 11:10:33 +08:00
|
|
|
"compilation failed\n----------\n{}",
|
2022-02-21 18:27:46 +08:00
|
|
|
e
|
|
|
|
))
|
2022-02-12 21:17:37 +08:00
|
|
|
})?;
|
2022-03-05 00:26:35 +08:00
|
|
|
if let Some(class_obj) = class_obj {
|
|
|
|
self.exception_ids.write().insert(def_id.0, store_obj.call1(py, (class_obj, ))?.extract(py)?);
|
|
|
|
}
|
2022-02-12 21:17:37 +08:00
|
|
|
|
|
|
|
match &stmt.node {
|
|
|
|
StmtKind::FunctionDef { decorator_list, .. } => {
|
|
|
|
if decorator_list.iter().any(|decorator| matches!(decorator.node, ExprKind::Name { id, .. } if id == "rpc".into())) {
|
|
|
|
store_fun.call1(py, (def_id.0.into_py(py), module.getattr(py, name.to_string()).unwrap())).unwrap();
|
|
|
|
rpc_ids.push((None, def_id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
StmtKind::ClassDef { name, body, .. } => {
|
|
|
|
let class_obj = module.getattr(py, name.to_string()).unwrap();
|
|
|
|
for stmt in body.iter() {
|
|
|
|
if let StmtKind::FunctionDef { name, decorator_list, .. } = &stmt.node {
|
|
|
|
if decorator_list.iter().any(|decorator| matches!(decorator.node, ExprKind::Name { id, .. } if id == "rpc".into())) {
|
|
|
|
rpc_ids.push((Some((class_obj.clone(), *name)), def_id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
|
2021-12-04 22:25:52 +08:00
|
|
|
let id = *name_to_pyid.get(&name).unwrap();
|
2022-01-15 04:43:39 +08:00
|
|
|
self.pyid_to_def.write().insert(id, def_id);
|
|
|
|
{
|
|
|
|
let mut pyid_to_ty = pyid_to_type.write();
|
|
|
|
if let Some(ty) = ty {
|
|
|
|
pyid_to_ty.insert(id, ty);
|
|
|
|
}
|
2021-12-04 22:25:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-10 16:26:01 +08:00
|
|
|
let id_fun = PyModule::import(py, "builtins")?.getattr("id")?;
|
|
|
|
let mut name_to_pyid: HashMap<StrRef, u64> = HashMap::new();
|
|
|
|
let module = PyModule::new(py, "tmp")?;
|
|
|
|
module.add("base", obj)?;
|
|
|
|
name_to_pyid.insert("base".into(), id_fun.call1((obj,))?.extract()?);
|
|
|
|
let mut arg_names = vec![];
|
|
|
|
for (i, arg) in args.into_iter().enumerate() {
|
|
|
|
let name = format!("tmp{}", i);
|
|
|
|
module.add(&name, arg)?;
|
|
|
|
name_to_pyid.insert(name.clone().into(), id_fun.call1((arg,))?.extract()?);
|
|
|
|
arg_names.push(name);
|
|
|
|
}
|
|
|
|
let synthesized = if method_name.is_empty() {
|
|
|
|
format!("def __modinit__():\n base({})", arg_names.join(", "))
|
|
|
|
} else {
|
2022-02-21 18:27:46 +08:00
|
|
|
format!("def __modinit__():\n base.{}({})", method_name, arg_names.join(", "))
|
2021-10-10 16:26:01 +08:00
|
|
|
};
|
2022-02-21 18:27:46 +08:00
|
|
|
let mut synthesized =
|
|
|
|
parse_program(&synthesized, "__nac3_synthesized_modinit__".to_string().into()).unwrap();
|
2022-03-25 22:42:01 +08:00
|
|
|
let inner_resolver = Arc::new(InnerResolver {
|
2022-03-16 23:42:08 +08:00
|
|
|
id_to_type: builtins_ty.clone().into(),
|
|
|
|
id_to_def: builtins_def.clone().into(),
|
2021-10-10 16:26:01 +08:00
|
|
|
pyid_to_def: self.pyid_to_def.clone(),
|
2022-01-15 04:43:39 +08:00
|
|
|
pyid_to_type: pyid_to_type.clone(),
|
2021-10-10 16:26:01 +08:00
|
|
|
primitive_ids: self.primitive_ids.clone(),
|
2022-01-15 04:43:39 +08:00
|
|
|
global_value_ids: global_value_ids.clone(),
|
2021-10-10 16:26:01 +08:00
|
|
|
class_names: Default::default(),
|
2021-12-05 20:30:03 +08:00
|
|
|
id_to_pyval: Default::default(),
|
|
|
|
id_to_primitive: Default::default(),
|
|
|
|
field_to_val: Default::default(),
|
2021-10-10 16:26:01 +08:00
|
|
|
name_to_pyid,
|
|
|
|
module: module.to_object(py),
|
2021-11-20 21:15:15 +08:00
|
|
|
helper,
|
2022-02-12 21:17:37 +08:00
|
|
|
string_store: self.string_store.clone(),
|
2022-03-05 00:26:35 +08:00
|
|
|
exception_ids: self.exception_ids.clone(),
|
2022-03-24 21:29:46 +08:00
|
|
|
deferred_eval_store: self.deferred_eval_store.clone(),
|
2022-03-25 22:42:01 +08:00
|
|
|
});
|
|
|
|
let resolver = Arc::new(Resolver(inner_resolver.clone())) as Arc<dyn SymbolResolver + Send + Sync>;
|
2021-12-04 22:25:52 +08:00
|
|
|
let (_, def_id, _) = composer
|
2022-02-21 18:27:46 +08:00
|
|
|
.register_top_level(synthesized.pop().unwrap(), Some(resolver.clone()), "".into())
|
2021-10-10 16:26:01 +08:00
|
|
|
.unwrap();
|
|
|
|
|
2022-03-25 22:42:01 +08:00
|
|
|
let fun_signature =
|
2022-02-21 18:27:46 +08:00
|
|
|
FunSignature { args: vec![], ret: self.primitive.none, vars: HashMap::new() };
|
2021-10-17 13:02:18 +08:00
|
|
|
let mut store = ConcreteTypeStore::new();
|
|
|
|
let mut cache = HashMap::new();
|
2022-02-21 18:27:46 +08:00
|
|
|
let signature =
|
2022-03-25 22:42:01 +08:00
|
|
|
store.from_signature(&mut composer.unifier, &self.primitive, &fun_signature, &mut cache);
|
2021-10-17 13:02:18 +08:00
|
|
|
let signature = store.add_cty(signature);
|
|
|
|
|
2022-01-13 05:55:37 +08:00
|
|
|
if let Err(e) = composer.start_analysis(true) {
|
|
|
|
// report error of __modinit__ separately
|
|
|
|
if !e.contains("__nac3_synthesized_modinit__") {
|
2022-02-26 17:17:06 +08:00
|
|
|
return Err(CompileError::new_err(format!(
|
2022-02-28 11:10:33 +08:00
|
|
|
"compilation failed\n----------\n{}",
|
2022-02-21 18:27:46 +08:00
|
|
|
e
|
|
|
|
)));
|
2022-01-13 05:55:37 +08:00
|
|
|
} else {
|
|
|
|
let msg = Self::report_modinit(
|
|
|
|
&arg_names,
|
|
|
|
method_name,
|
|
|
|
resolver.clone(),
|
|
|
|
&composer.extract_def_list(),
|
|
|
|
&mut composer.unifier,
|
2022-02-21 18:27:46 +08:00
|
|
|
&self.primitive,
|
2022-01-13 05:55:37 +08:00
|
|
|
);
|
2022-02-28 23:09:14 +08:00
|
|
|
return Err(CompileError::new_err(msg.unwrap_or(e)));
|
2022-01-13 05:55:37 +08:00
|
|
|
}
|
|
|
|
}
|
2021-12-04 22:25:52 +08:00
|
|
|
let top_level = Arc::new(composer.make_top_level_context());
|
2022-02-12 21:17:37 +08:00
|
|
|
|
|
|
|
{
|
|
|
|
let rpc_codegen = rpc_codegen_callback();
|
|
|
|
let defs = top_level.definitions.read();
|
|
|
|
for (class_data, id) in rpc_ids.iter() {
|
|
|
|
let mut def = defs[id.0].write();
|
|
|
|
match &mut *def {
|
2022-02-21 18:27:46 +08:00
|
|
|
TopLevelDef::Function { codegen_callback, .. } => {
|
2022-02-12 21:17:37 +08:00
|
|
|
*codegen_callback = Some(rpc_codegen.clone());
|
|
|
|
}
|
|
|
|
TopLevelDef::Class { methods, .. } => {
|
|
|
|
let (class_def, method_name) = class_data.as_ref().unwrap();
|
|
|
|
for (name, _, id) in methods.iter() {
|
|
|
|
if name != method_name {
|
|
|
|
continue;
|
|
|
|
}
|
2022-02-21 18:27:46 +08:00
|
|
|
if let TopLevelDef::Function { codegen_callback, .. } =
|
|
|
|
&mut *defs[id.0].write()
|
2022-02-12 21:17:37 +08:00
|
|
|
{
|
|
|
|
*codegen_callback = Some(rpc_codegen.clone());
|
|
|
|
store_fun
|
|
|
|
.call1(
|
|
|
|
py,
|
|
|
|
(
|
|
|
|
id.0.into_py(py),
|
|
|
|
class_def.getattr(py, name.to_string()).unwrap(),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-23 19:30:03 +08:00
|
|
|
let instance = {
|
|
|
|
let defs = top_level.definitions.read();
|
2021-10-10 16:26:01 +08:00
|
|
|
let mut definition = defs[def_id.0].write();
|
2022-02-21 18:27:46 +08:00
|
|
|
if let TopLevelDef::Function { instance_to_stmt, instance_to_symbol, .. } =
|
|
|
|
&mut *definition
|
2021-09-23 19:30:03 +08:00
|
|
|
{
|
2021-10-10 16:26:01 +08:00
|
|
|
instance_to_symbol.insert("".to_string(), "__modinit__".into());
|
2021-09-23 19:30:03 +08:00
|
|
|
instance_to_stmt[""].clone()
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
2020-12-19 15:29:39 +08:00
|
|
|
}
|
2021-09-23 19:30:03 +08:00
|
|
|
};
|
2021-10-10 16:26:01 +08:00
|
|
|
|
2021-09-23 19:30:03 +08:00
|
|
|
let task = CodeGenTask {
|
|
|
|
subst: Default::default(),
|
2021-09-24 13:25:18 +08:00
|
|
|
symbol_name: "__modinit__".to_string(),
|
2021-09-23 19:30:03 +08:00
|
|
|
body: instance.body,
|
|
|
|
signature,
|
2022-03-25 22:42:01 +08:00
|
|
|
resolver: resolver.clone(),
|
2021-10-17 13:02:18 +08:00
|
|
|
store,
|
|
|
|
unifier_index: instance.unifier_id,
|
2021-09-23 19:30:03 +08:00
|
|
|
calls: instance.calls,
|
2021-11-20 19:50:25 +08:00
|
|
|
id: 0,
|
2021-09-23 19:30:03 +08:00
|
|
|
};
|
2022-03-25 22:42:01 +08:00
|
|
|
|
|
|
|
let mut store = ConcreteTypeStore::new();
|
|
|
|
let mut cache = HashMap::new();
|
|
|
|
let signature =
|
|
|
|
store.from_signature(&mut composer.unifier, &self.primitive, &fun_signature, &mut cache);
|
|
|
|
let signature = store.add_cty(signature);
|
|
|
|
let attributes_writeback_task = CodeGenTask {
|
|
|
|
subst: Default::default(),
|
|
|
|
symbol_name: "attributes_writeback".to_string(),
|
|
|
|
body: Arc::new(Default::default()),
|
|
|
|
signature,
|
|
|
|
resolver,
|
|
|
|
store,
|
|
|
|
unifier_index: instance.unifier_id,
|
|
|
|
calls: Arc::new(Default::default()),
|
|
|
|
id: 0,
|
|
|
|
};
|
2021-09-29 15:33:12 +08:00
|
|
|
let isa = self.isa;
|
2021-11-06 13:03:45 +08:00
|
|
|
let working_directory = self.working_directory.path().to_owned();
|
2021-12-04 17:52:03 +08:00
|
|
|
|
|
|
|
let membuffers: Arc<Mutex<Vec<Vec<u8>>>> = Default::default();
|
|
|
|
|
|
|
|
let membuffer = membuffers.clone();
|
|
|
|
|
2021-09-23 19:30:03 +08:00
|
|
|
let f = Arc::new(WithCall::new(Box::new(move |module| {
|
2021-12-04 17:52:03 +08:00
|
|
|
let buffer = module.write_bitcode_to_memory();
|
|
|
|
let buffer = buffer.as_slice().into();
|
|
|
|
membuffer.lock().push(buffer);
|
2021-09-23 19:30:03 +08:00
|
|
|
})));
|
2022-02-12 21:17:37 +08:00
|
|
|
let size_t = if self.isa == Isa::Host { 64 } else { 32 };
|
2021-12-04 17:52:03 +08:00
|
|
|
let thread_names: Vec<String> = (0..4).map(|_| "main".to_string()).collect();
|
2021-10-16 22:17:36 +08:00
|
|
|
let threads: Vec<_> = thread_names
|
|
|
|
.iter()
|
2022-02-21 18:27:46 +08:00
|
|
|
.map(|s| Box::new(ArtiqCodeGenerator::new(s.to_string(), size_t, self.time_fns)))
|
2021-10-16 22:17:36 +08:00
|
|
|
.collect();
|
2021-10-06 16:07:42 +08:00
|
|
|
|
2022-03-25 22:42:01 +08:00
|
|
|
let membuffer = membuffers.clone();
|
2021-10-06 16:07:42 +08:00
|
|
|
py.allow_threads(|| {
|
2021-10-16 22:17:36 +08:00
|
|
|
let (registry, handles) = WorkerRegistry::create_workers(threads, top_level.clone(), f);
|
2021-10-06 16:07:42 +08:00
|
|
|
registry.add_task(task);
|
|
|
|
registry.wait_tasks_complete(handles);
|
2022-03-25 22:42:01 +08:00
|
|
|
|
|
|
|
let mut generator = ArtiqCodeGenerator::new("attributes_writeback".to_string(), size_t, self.time_fns);
|
|
|
|
let context = inkwell::context::Context::create();
|
|
|
|
let module = context.create_module("attributes_writeback");
|
|
|
|
let builder = context.create_builder();
|
|
|
|
let (_, module, _) = gen_func_impl(&context, &mut generator, ®istry, builder, module,
|
|
|
|
attributes_writeback_task, |generator, ctx| {
|
|
|
|
attributes_writeback(ctx, generator, inner_resolver.as_ref(), host_attributes)
|
|
|
|
}).unwrap();
|
|
|
|
let buffer = module.write_bitcode_to_memory();
|
|
|
|
let buffer = buffer.as_slice().into();
|
|
|
|
membuffer.lock().push(buffer);
|
2021-10-06 16:07:42 +08:00
|
|
|
});
|
2021-09-23 21:30:13 +08:00
|
|
|
|
2021-12-04 17:52:03 +08:00
|
|
|
let context = inkwell::context::Context::create();
|
2022-03-25 22:42:01 +08:00
|
|
|
let buffers = membuffers.lock();
|
2021-12-04 17:52:03 +08:00
|
|
|
let main = context
|
|
|
|
.create_module_from_ir(MemoryBuffer::create_from_memory_range(&buffers[0], "main"))
|
|
|
|
.unwrap();
|
|
|
|
for buffer in buffers.iter().skip(1) {
|
|
|
|
let other = context
|
|
|
|
.create_module_from_ir(MemoryBuffer::create_from_memory_range(buffer, "main"))
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
main.link_in_module(other)
|
2022-02-26 17:17:06 +08:00
|
|
|
.map_err(|err| CompileError::new_err(err.to_string()))?;
|
2021-12-04 17:52:03 +08:00
|
|
|
}
|
2022-03-25 22:42:01 +08:00
|
|
|
let builder = context.create_builder();
|
|
|
|
let modinit_return = main.get_function("__modinit__").unwrap().get_last_basic_block().unwrap().get_terminator().unwrap();
|
|
|
|
builder.position_before(&modinit_return);
|
|
|
|
builder.build_call(main.get_function("attributes_writeback").unwrap(), &[], "attributes_writeback");
|
|
|
|
|
2022-01-08 22:16:55 +08:00
|
|
|
main.link_in_module(load_irrt(&context))
|
2022-02-26 17:17:06 +08:00
|
|
|
.map_err(|err| CompileError::new_err(err.to_string()))?;
|
2021-12-04 17:52:03 +08:00
|
|
|
|
|
|
|
let mut function_iter = main.get_first_function();
|
|
|
|
while let Some(func) = function_iter {
|
|
|
|
if func.count_basic_blocks() > 0 && func.get_name().to_str().unwrap() != "__modinit__" {
|
|
|
|
func.set_linkage(inkwell::module::Linkage::Private);
|
|
|
|
}
|
|
|
|
function_iter = func.get_next_function();
|
|
|
|
}
|
|
|
|
|
|
|
|
let builder = PassManagerBuilder::create();
|
|
|
|
builder.set_optimization_level(OptimizationLevel::Aggressive);
|
|
|
|
let passes = PassManager::create(());
|
|
|
|
builder.set_inliner_with_threshold(255);
|
|
|
|
builder.populate_module_pass_manager(&passes);
|
|
|
|
passes.run_on(&main);
|
|
|
|
|
|
|
|
let (triple, features) = match isa {
|
|
|
|
Isa::Host => (
|
|
|
|
TargetMachine::get_default_triple(),
|
|
|
|
TargetMachine::get_host_cpu_features().to_string(),
|
|
|
|
),
|
2022-02-21 18:27:46 +08:00
|
|
|
Isa::RiscV32G => {
|
|
|
|
(TargetTriple::create("riscv32-unknown-linux"), "+a,+m,+f,+d".to_string())
|
|
|
|
}
|
|
|
|
Isa::RiscV32IMA => (TargetTriple::create("riscv32-unknown-linux"), "+a,+m".to_string()),
|
2021-12-04 17:52:03 +08:00
|
|
|
Isa::CortexA9 => (
|
|
|
|
TargetTriple::create("armv7-unknown-linux-gnueabihf"),
|
|
|
|
"+dsp,+fp16,+neon,+vfp3".to_string(),
|
|
|
|
),
|
|
|
|
};
|
|
|
|
let target =
|
|
|
|
Target::from_triple(&triple).expect("couldn't create target from target triple");
|
|
|
|
let target_machine = target
|
|
|
|
.create_target_machine(
|
|
|
|
&triple,
|
|
|
|
"",
|
|
|
|
&features,
|
|
|
|
OptimizationLevel::Default,
|
|
|
|
RelocMode::PIC,
|
|
|
|
CodeModel::Default,
|
|
|
|
)
|
|
|
|
.expect("couldn't create target machine");
|
|
|
|
target_machine
|
|
|
|
.write_to_file(&main, FileType::Object, &working_directory.join("module.o"))
|
|
|
|
.expect("couldn't write module to file");
|
|
|
|
|
2021-09-24 11:07:52 +08:00
|
|
|
let mut linker_args = vec![
|
|
|
|
"-shared".to_string(),
|
|
|
|
"--eh-frame-hdr".to_string(),
|
|
|
|
"-x".to_string(),
|
|
|
|
"-o".to_string(),
|
2021-11-06 14:14:53 +08:00
|
|
|
filename.to_string(),
|
2022-02-21 18:27:46 +08:00
|
|
|
working_directory.join("module.o").to_string_lossy().to_string(),
|
2021-09-24 11:07:52 +08:00
|
|
|
];
|
2021-10-31 23:51:50 +08:00
|
|
|
if isa != Isa::Host {
|
2021-11-20 21:15:15 +08:00
|
|
|
linker_args.push(
|
|
|
|
"-T".to_string()
|
2022-02-21 18:27:46 +08:00
|
|
|
+ self.working_directory.path().join("kernel.ld").to_str().unwrap(),
|
2021-11-20 21:15:15 +08:00
|
|
|
);
|
2021-10-31 23:51:50 +08:00
|
|
|
}
|
2021-12-04 17:52:03 +08:00
|
|
|
|
2022-03-27 18:25:14 +08:00
|
|
|
#[cfg(not(windows))]
|
|
|
|
let lld_command = "ld.lld";
|
|
|
|
#[cfg(windows)]
|
2022-03-27 19:09:11 +08:00
|
|
|
let lld_command = "ld.lld.exe";
|
2022-03-27 18:25:14 +08:00
|
|
|
if let Ok(linker_status) = Command::new(lld_command).args(linker_args).status() {
|
2021-09-23 21:30:13 +08:00
|
|
|
if !linker_status.success() {
|
2022-02-26 17:17:06 +08:00
|
|
|
return Err(CompileError::new_err("failed to start linker"));
|
2021-09-23 21:30:13 +08:00
|
|
|
}
|
|
|
|
} else {
|
2022-02-26 17:17:06 +08:00
|
|
|
return Err(CompileError::new_err(
|
2021-09-30 22:30:54 +08:00
|
|
|
"linker returned non-zero status code",
|
|
|
|
));
|
2021-09-23 21:30:13 +08:00
|
|
|
}
|
|
|
|
|
2021-09-23 19:30:03 +08:00
|
|
|
Ok(())
|
2020-12-19 15:29:39 +08:00
|
|
|
}
|
2021-11-06 14:14:53 +08:00
|
|
|
|
|
|
|
fn compile_method_to_mem(
|
|
|
|
&mut self,
|
|
|
|
obj: &PyAny,
|
|
|
|
method_name: &str,
|
|
|
|
args: Vec<&PyAny>,
|
2022-02-12 21:17:37 +08:00
|
|
|
embedding_map: &PyAny,
|
2021-11-06 14:14:53 +08:00
|
|
|
py: Python,
|
2021-11-06 14:29:23 +08:00
|
|
|
) -> PyResult<PyObject> {
|
2021-11-06 14:14:53 +08:00
|
|
|
let filename_path = self.working_directory.path().join("module.elf");
|
|
|
|
let filename = filename_path.to_str().unwrap();
|
2022-02-12 21:17:37 +08:00
|
|
|
self.compile_method_to_file(obj, method_name, args, filename, embedding_map, py)?;
|
2021-11-06 14:29:23 +08:00
|
|
|
Ok(PyBytes::new(py, &fs::read(filename).unwrap()).into())
|
2021-11-06 14:14:53 +08:00
|
|
|
}
|
2020-12-18 10:09:35 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 21:11:14 +08:00
|
|
|
#[cfg(feature = "init-llvm-profile")]
|
|
|
|
extern "C" {
|
|
|
|
fn __llvm_profile_initialize();
|
|
|
|
}
|
|
|
|
|
2020-12-18 10:09:35 +08:00
|
|
|
#[pymodule]
|
2022-02-26 17:29:13 +08:00
|
|
|
fn nac3artiq(py: Python, m: &PyModule) -> PyResult<()> {
|
2021-12-26 21:11:14 +08:00
|
|
|
#[cfg(feature = "init-llvm-profile")]
|
|
|
|
unsafe {
|
|
|
|
__llvm_profile_initialize();
|
|
|
|
}
|
|
|
|
|
2020-12-19 16:23:12 +08:00
|
|
|
Target::initialize_all(&InitializationConfig::default());
|
2022-02-26 17:29:13 +08:00
|
|
|
m.add("CompileError", py.get_type::<CompileError>())?;
|
2020-12-19 15:29:39 +08:00
|
|
|
m.add_class::<Nac3>()?;
|
2020-12-18 10:09:35 +08:00
|
|
|
Ok(())
|
|
|
|
}
|