2021-12-01 02:52:00 +08:00
|
|
|
use super::*;
|
2022-01-09 19:55:17 +08:00
|
|
|
use crate::{
|
2022-02-21 18:27:46 +08:00
|
|
|
codegen::{
|
2024-03-26 15:07:26 +08:00
|
|
|
classes::{ArrayLikeValue, NDArrayValue, RangeValue, TypedArrayLikeAccessor},
|
2023-10-10 16:56:38 +08:00
|
|
|
expr::destructure_range,
|
2024-02-22 01:47:26 +08:00
|
|
|
irrt::*,
|
|
|
|
llvm_intrinsics::*,
|
2024-03-11 14:47:01 +08:00
|
|
|
numpy::*,
|
2023-10-10 16:56:38 +08:00
|
|
|
stmt::exn_constructor,
|
2022-02-21 18:27:46 +08:00
|
|
|
},
|
2022-01-09 19:55:17 +08:00
|
|
|
symbol_resolver::SymbolValue,
|
2024-03-11 14:47:01 +08:00
|
|
|
toplevel::{
|
|
|
|
helper::PRIMITIVE_DEF_IDS,
|
|
|
|
numpy::make_ndarray_ty,
|
|
|
|
},
|
2024-03-04 23:38:52 +08:00
|
|
|
typecheck::typedef::VarMap,
|
2022-01-09 19:55:17 +08:00
|
|
|
};
|
2023-10-10 14:56:16 +08:00
|
|
|
use inkwell::{
|
|
|
|
attributes::{Attribute, AttributeLoc},
|
|
|
|
types::{BasicType, BasicMetadataTypeEnum},
|
2024-02-19 19:30:25 +08:00
|
|
|
values::{BasicValue, BasicMetadataValueEnum, CallSiteValue},
|
2023-10-10 14:56:16 +08:00
|
|
|
FloatPredicate,
|
|
|
|
IntPredicate
|
|
|
|
};
|
2024-02-19 19:30:25 +08:00
|
|
|
use itertools::Either;
|
2021-12-01 02:52:00 +08:00
|
|
|
|
2023-11-28 17:37:49 +08:00
|
|
|
type BuiltinInfo = Vec<(Arc<RwLock<TopLevelDef>>, Option<Stmt>)>;
|
2021-12-01 03:23:58 +08:00
|
|
|
|
2022-03-16 23:42:08 +08:00
|
|
|
pub fn get_exn_constructor(
|
|
|
|
name: &str,
|
|
|
|
class_id: usize,
|
|
|
|
cons_id: usize,
|
|
|
|
unifier: &mut Unifier,
|
|
|
|
primitives: &PrimitiveStore
|
|
|
|
)-> (TopLevelDef, TopLevelDef, Type, Type) {
|
|
|
|
let int32 = primitives.int32;
|
|
|
|
let int64 = primitives.int64;
|
|
|
|
let string = primitives.str;
|
|
|
|
let exception_fields = vec![
|
|
|
|
("__name__".into(), int32, true),
|
|
|
|
("__file__".into(), string, true),
|
|
|
|
("__line__".into(), int32, true),
|
|
|
|
("__col__".into(), int32, true),
|
|
|
|
("__func__".into(), string, true),
|
|
|
|
("__message__".into(), string, true),
|
|
|
|
("__param0__".into(), int64, true),
|
|
|
|
("__param1__".into(), int64, true),
|
|
|
|
("__param2__".into(), int64, true),
|
|
|
|
];
|
|
|
|
let exn_cons_args = vec![
|
|
|
|
FuncArg {
|
|
|
|
name: "msg".into(),
|
|
|
|
ty: string,
|
2023-12-08 17:43:32 +08:00
|
|
|
default_value: Some(SymbolValue::Str(String::new())),
|
2022-03-16 23:42:08 +08:00
|
|
|
},
|
|
|
|
FuncArg { name: "param0".into(), ty: int64, default_value: Some(SymbolValue::I64(0)) },
|
|
|
|
FuncArg { name: "param1".into(), ty: int64, default_value: Some(SymbolValue::I64(0)) },
|
|
|
|
FuncArg { name: "param2".into(), ty: int64, default_value: Some(SymbolValue::I64(0)) },
|
|
|
|
];
|
|
|
|
let exn_type = unifier.add_ty(TypeEnum::TObj {
|
|
|
|
obj_id: DefinitionId(class_id),
|
|
|
|
fields: exception_fields.iter().map(|(a, b, c)| (*a, (*b, *c))).collect(),
|
2024-03-04 23:38:52 +08:00
|
|
|
params: VarMap::default(),
|
2022-03-16 23:42:08 +08:00
|
|
|
});
|
|
|
|
let signature = unifier.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: exn_cons_args,
|
|
|
|
ret: exn_type,
|
2024-03-04 23:38:52 +08:00
|
|
|
vars: VarMap::default(),
|
2022-03-16 23:42:08 +08:00
|
|
|
}));
|
|
|
|
let fun_def = TopLevelDef::Function {
|
2023-12-08 17:43:32 +08:00
|
|
|
name: format!("{name}.__init__"),
|
2022-03-16 23:42:08 +08:00
|
|
|
simple_name: "__init__".into(),
|
|
|
|
signature,
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-16 23:42:08 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(exn_constructor)))),
|
|
|
|
loc: None,
|
|
|
|
};
|
|
|
|
let class_def = TopLevelDef::Class {
|
|
|
|
name: name.into(),
|
|
|
|
object_id: DefinitionId(class_id),
|
2023-12-08 17:43:32 +08:00
|
|
|
type_vars: Vec::default(),
|
2022-03-16 23:42:08 +08:00
|
|
|
fields: exception_fields,
|
|
|
|
methods: vec![("__init__".into(), signature, DefinitionId(cons_id))],
|
|
|
|
ancestors: vec![
|
2023-12-08 17:43:32 +08:00
|
|
|
TypeAnnotation::CustomClass { id: DefinitionId(class_id), params: Vec::default() },
|
2024-02-26 15:11:00 +08:00
|
|
|
TypeAnnotation::CustomClass { id: PRIMITIVE_DEF_IDS.exception, params: Vec::default() },
|
2022-03-16 23:42:08 +08:00
|
|
|
],
|
|
|
|
constructor: Some(signature),
|
|
|
|
resolver: None,
|
|
|
|
loc: None,
|
|
|
|
};
|
|
|
|
(fun_def, class_def, signature, exn_type)
|
|
|
|
}
|
|
|
|
|
2023-12-08 17:43:32 +08:00
|
|
|
/// Creates a NumPy [`TopLevelDef`] function by code generation.
|
2023-10-10 14:56:16 +08:00
|
|
|
///
|
|
|
|
/// * `name`: The name of the implemented NumPy function.
|
|
|
|
/// * `ret_ty`: The return type of this function.
|
|
|
|
/// * `param_ty`: The parameters accepted by this function, represented by a tuple of the
|
|
|
|
/// [parameter type][Type] and the parameter symbol name.
|
|
|
|
/// * `codegen_callback`: A lambda generating LLVM IR for the implementation of this function.
|
|
|
|
fn create_fn_by_codegen(
|
|
|
|
primitives: &mut (PrimitiveStore, Unifier),
|
2024-03-04 23:38:52 +08:00
|
|
|
var_map: &VarMap,
|
2023-10-10 14:56:16 +08:00
|
|
|
name: &'static str,
|
|
|
|
ret_ty: Type,
|
|
|
|
param_ty: &[(Type, &'static str)],
|
|
|
|
codegen_callback: GenCallCallback,
|
|
|
|
) -> Arc<RwLock<TopLevelDef>> {
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: name.into(),
|
|
|
|
simple_name: name.into(),
|
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: param_ty.iter().map(|p| FuncArg {
|
|
|
|
name: p.1.into(),
|
|
|
|
ty: p.0,
|
|
|
|
default_value: None,
|
|
|
|
}).collect(),
|
2023-12-06 11:49:02 +08:00
|
|
|
ret: ret_ty,
|
2023-10-10 14:56:16 +08:00
|
|
|
vars: var_map.clone(),
|
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2023-10-10 14:56:16 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(codegen_callback))),
|
|
|
|
loc: None,
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2023-12-08 17:43:32 +08:00
|
|
|
/// Creates a NumPy [`TopLevelDef`] function using an LLVM intrinsic.
|
2023-10-10 14:56:16 +08:00
|
|
|
///
|
|
|
|
/// * `name`: The name of the implemented NumPy function.
|
|
|
|
/// * `ret_ty`: The return type of this function.
|
|
|
|
/// * `param_ty`: The parameters accepted by this function, represented by a tuple of the
|
|
|
|
/// [parameter type][Type] and the parameter symbol name.
|
|
|
|
/// * `intrinsic_fn`: The fully-qualified name of the LLVM intrinsic function.
|
|
|
|
fn create_fn_by_intrinsic(
|
|
|
|
primitives: &mut (PrimitiveStore, Unifier),
|
2024-03-04 23:38:52 +08:00
|
|
|
var_map: &VarMap,
|
2023-10-10 14:56:16 +08:00
|
|
|
name: &'static str,
|
|
|
|
ret_ty: Type,
|
|
|
|
params: &[(Type, &'static str)],
|
|
|
|
intrinsic_fn: &'static str,
|
|
|
|
) -> Arc<RwLock<TopLevelDef>> {
|
|
|
|
let param_tys = params.iter()
|
|
|
|
.map(|p| p.0)
|
|
|
|
.collect_vec();
|
|
|
|
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
var_map,
|
|
|
|
name,
|
|
|
|
ret_ty,
|
|
|
|
params,
|
|
|
|
Box::new(move |ctx, _, fun, args, generator| {
|
|
|
|
let args_ty = fun.0.args.iter().map(|a| a.ty).collect_vec();
|
|
|
|
|
|
|
|
assert!(param_tys.iter().zip(&args_ty)
|
|
|
|
.all(|(expected, actual)| ctx.unifier.unioned(*expected, *actual)));
|
|
|
|
|
|
|
|
let args_val = args_ty.iter().zip_eq(args.iter())
|
|
|
|
.map(|(ty, arg)| {
|
|
|
|
arg.1.clone()
|
2023-12-06 11:49:02 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, *ty)
|
2023-10-10 14:56:16 +08:00
|
|
|
.unwrap()
|
|
|
|
})
|
|
|
|
.map_into::<BasicMetadataValueEnum>()
|
|
|
|
.collect_vec();
|
|
|
|
|
|
|
|
let intrinsic_fn = ctx.module.get_function(intrinsic_fn).unwrap_or_else(|| {
|
2023-12-06 11:49:02 +08:00
|
|
|
let ret_llvm_ty = ctx.get_llvm_abi_type(generator, ret_ty);
|
2023-10-10 14:56:16 +08:00
|
|
|
let param_llvm_ty = param_tys.iter()
|
|
|
|
.map(|p| ctx.get_llvm_abi_type(generator, *p))
|
|
|
|
.map_into::<BasicMetadataTypeEnum>()
|
|
|
|
.collect_vec();
|
|
|
|
let fn_type = ret_llvm_ty.fn_type(param_llvm_ty.as_slice(), false);
|
|
|
|
|
|
|
|
ctx.module.add_function(intrinsic_fn, fn_type, None)
|
|
|
|
});
|
|
|
|
|
2024-02-19 19:30:25 +08:00
|
|
|
let val = ctx.builder
|
|
|
|
.build_call(intrinsic_fn, args_val.as_slice(), name)
|
|
|
|
.map(CallSiteValue::try_as_basic_value)
|
|
|
|
.map(Either::unwrap_left)
|
2023-10-10 14:56:16 +08:00
|
|
|
.unwrap();
|
|
|
|
Ok(val.into())
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-12-08 17:43:32 +08:00
|
|
|
/// Creates a unary NumPy [`TopLevelDef`] function using an extern function (e.g. from `libc` or
|
2023-10-10 14:56:16 +08:00
|
|
|
/// `libm`).
|
|
|
|
///
|
|
|
|
/// * `name`: The name of the implemented NumPy function.
|
|
|
|
/// * `ret_ty`: The return type of this function.
|
|
|
|
/// * `param_ty`: The parameters accepted by this function, represented by a tuple of the
|
|
|
|
/// [parameter type][Type] and the parameter symbol name.
|
|
|
|
/// * `extern_fn`: The fully-qualified name of the extern function used as the implementation.
|
|
|
|
/// * `attrs`: The list of attributes to apply to this function declaration. Note that `nounwind` is
|
|
|
|
/// already implied by the C ABI.
|
|
|
|
fn create_fn_by_extern(
|
|
|
|
primitives: &mut (PrimitiveStore, Unifier),
|
2024-03-04 23:38:52 +08:00
|
|
|
var_map: &VarMap,
|
2023-10-10 14:56:16 +08:00
|
|
|
name: &'static str,
|
|
|
|
ret_ty: Type,
|
|
|
|
params: &[(Type, &'static str)],
|
|
|
|
extern_fn: &'static str,
|
|
|
|
attrs: &'static [&str],
|
|
|
|
) -> Arc<RwLock<TopLevelDef>> {
|
|
|
|
let param_tys = params.iter()
|
|
|
|
.map(|p| p.0)
|
|
|
|
.collect_vec();
|
|
|
|
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
var_map,
|
|
|
|
name,
|
|
|
|
ret_ty,
|
|
|
|
params,
|
|
|
|
Box::new(move |ctx, _, fun, args, generator| {
|
|
|
|
let args_ty = fun.0.args.iter().map(|a| a.ty).collect_vec();
|
|
|
|
|
|
|
|
assert!(param_tys.iter().zip(&args_ty)
|
|
|
|
.all(|(expected, actual)| ctx.unifier.unioned(*expected, *actual)));
|
|
|
|
|
|
|
|
let args_val = args_ty.iter().zip_eq(args.iter())
|
|
|
|
.map(|(ty, arg)| {
|
|
|
|
arg.1.clone()
|
2023-12-06 11:49:02 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, *ty)
|
2023-10-10 14:56:16 +08:00
|
|
|
.unwrap()
|
|
|
|
})
|
|
|
|
.map_into::<BasicMetadataValueEnum>()
|
|
|
|
.collect_vec();
|
|
|
|
|
|
|
|
let intrinsic_fn = ctx.module.get_function(extern_fn).unwrap_or_else(|| {
|
2023-12-06 11:49:02 +08:00
|
|
|
let ret_llvm_ty = ctx.get_llvm_abi_type(generator, ret_ty);
|
2023-10-10 14:56:16 +08:00
|
|
|
let param_llvm_ty = param_tys.iter()
|
|
|
|
.map(|p| ctx.get_llvm_abi_type(generator, *p))
|
|
|
|
.map_into::<BasicMetadataTypeEnum>()
|
|
|
|
.collect_vec();
|
|
|
|
let fn_type = ret_llvm_ty.fn_type(param_llvm_ty.as_slice(), false);
|
|
|
|
let func = ctx.module.add_function(extern_fn, fn_type, None);
|
|
|
|
func.add_attribute(
|
|
|
|
AttributeLoc::Function,
|
|
|
|
ctx.ctx.create_enum_attribute(Attribute::get_named_enum_kind_id("nounwind"), 0)
|
|
|
|
);
|
|
|
|
|
|
|
|
for attr in attrs {
|
|
|
|
func.add_attribute(
|
|
|
|
AttributeLoc::Function,
|
|
|
|
ctx.ctx.create_enum_attribute(Attribute::get_named_enum_kind_id(attr), 0)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
func
|
|
|
|
});
|
|
|
|
|
2024-02-19 19:30:25 +08:00
|
|
|
let val = ctx.builder
|
|
|
|
.build_call(intrinsic_fn, &args_val, name)
|
|
|
|
.map(CallSiteValue::try_as_basic_value)
|
|
|
|
.map(Either::unwrap_left)
|
2023-10-10 14:56:16 +08:00
|
|
|
.unwrap();
|
|
|
|
Ok(val.into())
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-02 10:45:46 +08:00
|
|
|
pub fn get_builtins(primitives: &mut (PrimitiveStore, Unifier)) -> BuiltinInfo {
|
2021-12-01 02:52:00 +08:00
|
|
|
let int32 = primitives.0.int32;
|
|
|
|
let int64 = primitives.0.int64;
|
2022-03-05 03:45:09 +08:00
|
|
|
let uint32 = primitives.0.uint32;
|
|
|
|
let uint64 = primitives.0.uint64;
|
2021-12-01 02:52:00 +08:00
|
|
|
let float = primitives.0.float;
|
|
|
|
let boolean = primitives.0.bool;
|
|
|
|
let range = primitives.0.range;
|
|
|
|
let string = primitives.0.str;
|
2024-02-27 13:39:05 +08:00
|
|
|
let ndarray = primitives.0.ndarray;
|
|
|
|
let ndarray_float = make_ndarray_ty(&mut primitives.1, &primitives.0, Some(float), None);
|
2023-11-27 13:25:53 +08:00
|
|
|
let ndarray_float_2d = {
|
|
|
|
let value = match primitives.0.size_t {
|
|
|
|
64 => SymbolValue::U64(2u64),
|
|
|
|
32 => SymbolValue::U32(2u32),
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
let ndims = primitives.1.add_ty(TypeEnum::TLiteral {
|
|
|
|
values: vec![value],
|
|
|
|
loc: None,
|
|
|
|
});
|
|
|
|
|
2024-02-27 13:39:05 +08:00
|
|
|
make_ndarray_ty(&mut primitives.1, &primitives.0, Some(float), Some(ndims))
|
2023-11-27 13:25:53 +08:00
|
|
|
};
|
2023-11-17 17:30:27 +08:00
|
|
|
let list_int32 = primitives.1.add_ty(TypeEnum::TList { ty: int32 });
|
2022-02-21 18:27:46 +08:00
|
|
|
let num_ty = primitives.1.get_fresh_var_with_range(
|
2022-03-05 03:45:09 +08:00
|
|
|
&[int32, int64, float, boolean, uint32, uint64],
|
2022-02-21 18:27:46 +08:00
|
|
|
Some("N".into()),
|
|
|
|
None,
|
|
|
|
);
|
2024-03-13 11:16:23 +08:00
|
|
|
let size_t = primitives.0.usize();
|
|
|
|
|
2024-03-04 23:38:52 +08:00
|
|
|
let var_map: VarMap = vec![(num_ty.1, num_ty.0)].into_iter().collect();
|
2022-02-12 21:09:23 +08:00
|
|
|
let exception_fields = vec![
|
|
|
|
("__name__".into(), int32, true),
|
|
|
|
("__file__".into(), string, true),
|
|
|
|
("__line__".into(), int32, true),
|
|
|
|
("__col__".into(), int32, true),
|
|
|
|
("__func__".into(), string, true),
|
|
|
|
("__message__".into(), string, true),
|
|
|
|
("__param0__".into(), int64, true),
|
|
|
|
("__param1__".into(), int64, true),
|
|
|
|
("__param2__".into(), int64, true),
|
|
|
|
];
|
2022-03-16 23:42:08 +08:00
|
|
|
|
2022-03-26 15:09:15 +08:00
|
|
|
// for Option, is_some and is_none share the same type: () -> bool,
|
|
|
|
// and they are methods under the same class `Option`
|
|
|
|
let (is_some_ty, unwrap_ty, (option_ty_var, option_ty_var_id)) =
|
|
|
|
if let TypeEnum::TObj { fields, params, .. } =
|
|
|
|
primitives.1.get_ty(primitives.0.option).as_ref()
|
|
|
|
{
|
|
|
|
(
|
|
|
|
*fields.get(&"is_some".into()).unwrap(),
|
|
|
|
*fields.get(&"unwrap".into()).unwrap(),
|
|
|
|
(*params.iter().next().unwrap().1, *params.iter().next().unwrap().0),
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
2024-03-06 16:53:41 +08:00
|
|
|
|
|
|
|
let TypeEnum::TObj {
|
|
|
|
fields: ndarray_fields,
|
|
|
|
params: ndarray_params,
|
|
|
|
..
|
|
|
|
} = &*primitives.1.get_ty(primitives.0.ndarray) else {
|
2024-03-04 13:09:21 +08:00
|
|
|
unreachable!()
|
|
|
|
};
|
2024-03-06 16:53:41 +08:00
|
|
|
|
|
|
|
let (ndarray_dtype_ty, ndarray_dtype_var_id) = ndarray_params
|
|
|
|
.iter()
|
|
|
|
.next()
|
|
|
|
.map(|(var_id, ty)| (*ty, *var_id))
|
|
|
|
.unwrap();
|
|
|
|
let (ndarray_ndims_ty, ndarray_ndims_var_id) = ndarray_params
|
|
|
|
.iter()
|
|
|
|
.nth(1)
|
|
|
|
.map(|(var_id, ty)| (*ty, *var_id))
|
|
|
|
.unwrap();
|
2024-03-13 11:16:23 +08:00
|
|
|
let ndarray_usized_ndims_tvar = primitives.1.get_fresh_const_generic_var(
|
|
|
|
size_t,
|
|
|
|
Some("ndarray_ndims".into()),
|
|
|
|
None,
|
|
|
|
);
|
2024-03-07 13:02:13 +08:00
|
|
|
let ndarray_copy_ty = *ndarray_fields.get(&"copy".into()).unwrap();
|
2024-03-06 16:53:41 +08:00
|
|
|
let ndarray_fill_ty = *ndarray_fields.get(&"fill".into()).unwrap();
|
2024-03-13 11:16:23 +08:00
|
|
|
let ndarray_add_ty = *ndarray_fields.get(&"__add__".into()).unwrap();
|
|
|
|
let ndarray_sub_ty = *ndarray_fields.get(&"__sub__".into()).unwrap();
|
|
|
|
let ndarray_mul_ty = *ndarray_fields.get(&"__mul__".into()).unwrap();
|
|
|
|
let ndarray_truediv_ty = *ndarray_fields.get(&"__truediv__".into()).unwrap();
|
|
|
|
let ndarray_floordiv_ty = *ndarray_fields.get(&"__floordiv__".into()).unwrap();
|
|
|
|
let ndarray_mod_ty = *ndarray_fields.get(&"__mod__".into()).unwrap();
|
|
|
|
let ndarray_pow_ty = *ndarray_fields.get(&"__pow__".into()).unwrap();
|
|
|
|
let ndarray_iadd_ty = *ndarray_fields.get(&"__iadd__".into()).unwrap();
|
|
|
|
let ndarray_isub_ty = *ndarray_fields.get(&"__isub__".into()).unwrap();
|
|
|
|
let ndarray_imul_ty = *ndarray_fields.get(&"__imul__".into()).unwrap();
|
|
|
|
let ndarray_itruediv_ty = *ndarray_fields.get(&"__itruediv__".into()).unwrap();
|
|
|
|
let ndarray_ifloordiv_ty = *ndarray_fields.get(&"__ifloordiv__".into()).unwrap();
|
|
|
|
let ndarray_imod_ty = *ndarray_fields.get(&"__imod__".into()).unwrap();
|
|
|
|
let ndarray_ipow_ty = *ndarray_fields.get(&"__ipow__".into()).unwrap();
|
2024-03-06 16:53:41 +08:00
|
|
|
|
2022-03-17 21:23:38 +08:00
|
|
|
let top_level_def_list = vec![
|
2021-12-01 02:52:00 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.int32,
|
2022-02-21 18:27:46 +08:00
|
|
|
None,
|
|
|
|
"int32".into(),
|
|
|
|
None,
|
|
|
|
None,
|
2021-12-01 02:52:00 +08:00
|
|
|
))),
|
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.int64,
|
2022-02-21 18:27:46 +08:00
|
|
|
None,
|
|
|
|
"int64".into(),
|
|
|
|
None,
|
|
|
|
None,
|
2021-12-01 02:52:00 +08:00
|
|
|
))),
|
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.float,
|
2022-02-21 18:27:46 +08:00
|
|
|
None,
|
|
|
|
"float".into(),
|
|
|
|
None,
|
|
|
|
None,
|
2021-12-01 02:52:00 +08:00
|
|
|
))),
|
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.bool,
|
2022-02-21 18:27:46 +08:00
|
|
|
None,
|
|
|
|
"bool".into(),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
))),
|
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.none,
|
2022-02-21 18:27:46 +08:00
|
|
|
None,
|
|
|
|
"none".into(),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
))),
|
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.range,
|
2022-02-21 18:27:46 +08:00
|
|
|
None,
|
|
|
|
"range".into(),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
))),
|
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.str,
|
2022-02-21 18:27:46 +08:00
|
|
|
None,
|
|
|
|
"str".into(),
|
|
|
|
None,
|
|
|
|
None,
|
2021-12-01 02:52:00 +08:00
|
|
|
))),
|
2022-02-12 21:09:23 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Class {
|
|
|
|
name: "Exception".into(),
|
2024-02-26 15:11:00 +08:00
|
|
|
object_id: PRIMITIVE_DEF_IDS.exception,
|
2023-12-08 17:43:32 +08:00
|
|
|
type_vars: Vec::default(),
|
2022-03-16 23:42:08 +08:00
|
|
|
fields: exception_fields,
|
2023-12-08 17:43:32 +08:00
|
|
|
methods: Vec::default(),
|
2022-02-12 21:09:23 +08:00
|
|
|
ancestors: vec![],
|
|
|
|
constructor: None,
|
|
|
|
resolver: None,
|
2022-02-21 17:52:34 +08:00
|
|
|
loc: None,
|
2022-02-12 21:09:23 +08:00
|
|
|
})),
|
2022-03-05 03:45:09 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.uint32,
|
2022-03-05 03:45:09 +08:00
|
|
|
None,
|
|
|
|
"uint32".into(),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
))),
|
|
|
|
Arc::new(RwLock::new(TopLevelComposer::make_top_level_class_def(
|
2024-02-26 15:11:00 +08:00
|
|
|
PRIMITIVE_DEF_IDS.uint64,
|
2022-03-05 03:45:09 +08:00
|
|
|
None,
|
|
|
|
"uint64".into(),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
))),
|
2022-03-26 15:09:15 +08:00
|
|
|
Arc::new(RwLock::new({
|
|
|
|
TopLevelDef::Class {
|
|
|
|
name: "Option".into(),
|
2024-02-26 15:11:00 +08:00
|
|
|
object_id: PRIMITIVE_DEF_IDS.option,
|
2022-03-26 15:09:15 +08:00
|
|
|
type_vars: vec![option_ty_var],
|
|
|
|
fields: vec![],
|
|
|
|
methods: vec![
|
2024-03-06 12:24:39 +08:00
|
|
|
("is_some".into(), is_some_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.option.0 + 1)),
|
|
|
|
("is_none".into(), is_some_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.option.0 + 2)),
|
|
|
|
("unwrap".into(), unwrap_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.option.0 + 3)),
|
2022-03-26 15:09:15 +08:00
|
|
|
],
|
|
|
|
ancestors: vec![TypeAnnotation::CustomClass {
|
2024-02-26 15:11:00 +08:00
|
|
|
id: PRIMITIVE_DEF_IDS.option,
|
2023-12-08 17:43:32 +08:00
|
|
|
params: Vec::default(),
|
2022-03-26 15:09:15 +08:00
|
|
|
}],
|
|
|
|
constructor: None,
|
|
|
|
resolver: None,
|
|
|
|
loc: None,
|
|
|
|
}
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "Option.is_some".into(),
|
|
|
|
simple_name: "is_some".into(),
|
|
|
|
signature: is_some_ty.0,
|
|
|
|
var_id: vec![option_ty_var_id],
|
2023-12-08 17:43:32 +08:00
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-26 15:09:15 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, obj, _, _, generator| {
|
2022-04-08 03:26:42 +08:00
|
|
|
let expect_ty = obj.clone().unwrap().0;
|
|
|
|
let obj_val = obj.unwrap().1.clone().to_basic_value_enum(
|
|
|
|
ctx,
|
|
|
|
generator,
|
|
|
|
expect_ty,
|
|
|
|
)?;
|
2023-12-12 13:38:27 +08:00
|
|
|
let BasicValueEnum::PointerValue(ptr) = obj_val else {
|
2022-03-26 15:09:15 +08:00
|
|
|
unreachable!("option must be ptr")
|
2023-12-12 13:38:27 +08:00
|
|
|
};
|
|
|
|
|
2024-02-19 19:30:25 +08:00
|
|
|
Ok(Some(ctx.builder
|
|
|
|
.build_is_not_null(ptr, "is_some")
|
|
|
|
.map(Into::into)
|
|
|
|
.unwrap()
|
|
|
|
))
|
2022-03-26 15:09:15 +08:00
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "Option.is_none".into(),
|
|
|
|
simple_name: "is_none".into(),
|
|
|
|
signature: is_some_ty.0,
|
|
|
|
var_id: vec![option_ty_var_id],
|
2023-12-08 17:43:32 +08:00
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-26 15:09:15 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, obj, _, _, generator| {
|
2022-04-08 03:26:42 +08:00
|
|
|
let expect_ty = obj.clone().unwrap().0;
|
|
|
|
let obj_val = obj.unwrap().1.clone().to_basic_value_enum(
|
|
|
|
ctx,
|
|
|
|
generator,
|
|
|
|
expect_ty,
|
|
|
|
)?;
|
2023-12-12 13:38:27 +08:00
|
|
|
let BasicValueEnum::PointerValue(ptr) = obj_val else {
|
2022-03-26 15:09:15 +08:00
|
|
|
unreachable!("option must be ptr")
|
2023-12-12 13:38:27 +08:00
|
|
|
};
|
|
|
|
|
2024-02-19 19:30:25 +08:00
|
|
|
Ok(Some(ctx.builder
|
|
|
|
.build_is_null(ptr, "is_none")
|
|
|
|
.map(Into::into)
|
|
|
|
.unwrap()
|
|
|
|
))
|
2022-03-26 15:09:15 +08:00
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "Option.unwrap".into(),
|
|
|
|
simple_name: "unwrap".into(),
|
|
|
|
signature: unwrap_ty.0,
|
|
|
|
var_id: vec![option_ty_var_id],
|
2023-12-08 17:43:32 +08:00
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-26 15:09:15 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
2022-03-26 18:52:08 +08:00
|
|
|
|_, _, _, _, _| {
|
2022-03-26 15:09:15 +08:00
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2024-03-04 13:09:21 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Class {
|
|
|
|
name: "ndarray".into(),
|
|
|
|
object_id: PRIMITIVE_DEF_IDS.ndarray,
|
|
|
|
type_vars: vec![ndarray_dtype_ty, ndarray_ndims_ty],
|
|
|
|
fields: Vec::default(),
|
2024-03-06 16:53:41 +08:00
|
|
|
methods: vec![
|
2024-03-07 13:02:13 +08:00
|
|
|
("copy".into(), ndarray_copy_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 1)),
|
|
|
|
("fill".into(), ndarray_fill_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 2)),
|
2024-03-13 11:16:23 +08:00
|
|
|
("__add__".into(), ndarray_add_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 3)),
|
|
|
|
("__sub__".into(), ndarray_sub_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 4)),
|
|
|
|
("__mul__".into(), ndarray_mul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 5)),
|
|
|
|
("__truediv__".into(), ndarray_mul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 6)),
|
|
|
|
("__floordiv__".into(), ndarray_mul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 7)),
|
|
|
|
("__mod__".into(), ndarray_mul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 8)),
|
|
|
|
("__pow__".into(), ndarray_mul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 9)),
|
|
|
|
("__iadd__".into(), ndarray_iadd_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 10)),
|
|
|
|
("__isub__".into(), ndarray_isub_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 11)),
|
|
|
|
("__imul__".into(), ndarray_imul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 12)),
|
|
|
|
("__itruediv__".into(), ndarray_mul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 13)),
|
|
|
|
("__ifloordiv__".into(), ndarray_mul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 14)),
|
|
|
|
("__imod__".into(), ndarray_mul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 15)),
|
|
|
|
("__ipow__".into(), ndarray_imul_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.ndarray.0 + 16)),
|
2024-03-06 16:53:41 +08:00
|
|
|
],
|
2024-03-04 13:09:21 +08:00
|
|
|
ancestors: Vec::default(),
|
|
|
|
constructor: None,
|
|
|
|
resolver: None,
|
|
|
|
loc: None,
|
|
|
|
})),
|
2024-03-07 13:02:13 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.copy".into(),
|
|
|
|
simple_name: "copy".into(),
|
|
|
|
signature: ndarray_copy_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, obj, fun, args, generator| {
|
|
|
|
gen_ndarray_copy(ctx, &obj, fun, &args, generator)
|
|
|
|
.map(|val| Some(val.as_basic_value_enum()))
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2024-03-06 16:53:41 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.fill".into(),
|
|
|
|
simple_name: "fill".into(),
|
|
|
|
signature: ndarray_fill_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, obj, fun, args, generator| {
|
|
|
|
gen_ndarray_fill(ctx, &obj, fun, &args, generator)?;
|
|
|
|
Ok(None)
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2024-03-13 11:16:23 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__add__".into(),
|
|
|
|
simple_name: "__add__".into(),
|
|
|
|
signature: ndarray_add_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__sub__".into(),
|
|
|
|
simple_name: "__sub__".into(),
|
|
|
|
signature: ndarray_sub_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__mul__".into(),
|
|
|
|
simple_name: "__mul__".into(),
|
|
|
|
signature: ndarray_mul_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__truediv__".into(),
|
|
|
|
simple_name: "__truediv__".into(),
|
|
|
|
signature: ndarray_truediv_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__floordiv__".into(),
|
|
|
|
simple_name: "__floordiv__".into(),
|
|
|
|
signature: ndarray_floordiv_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__mod__".into(),
|
|
|
|
simple_name: "__mod__".into(),
|
|
|
|
signature: ndarray_mod_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__pow__".into(),
|
|
|
|
simple_name: "__pow__".into(),
|
|
|
|
signature: ndarray_pow_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__iadd__".into(),
|
|
|
|
simple_name: "__iadd__".into(),
|
|
|
|
signature: ndarray_iadd_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id, ndarray_usized_ndims_tvar.1],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__isub__".into(),
|
|
|
|
simple_name: "__isub__".into(),
|
|
|
|
signature: ndarray_isub_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__imul__".into(),
|
|
|
|
simple_name: "__imul__".into(),
|
|
|
|
signature: ndarray_imul_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__itruediv__".into(),
|
|
|
|
simple_name: "__itruediv__".into(),
|
|
|
|
signature: ndarray_itruediv_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__ifloordiv__".into(),
|
|
|
|
simple_name: "__ifloordiv__".into(),
|
|
|
|
signature: ndarray_ifloordiv_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__imod__".into(),
|
|
|
|
simple_name: "__imod__".into(),
|
|
|
|
signature: ndarray_imod_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "ndarray.__ipow__".into(),
|
|
|
|
simple_name: "__ipow__".into(),
|
|
|
|
signature: ndarray_ipow_ty.0,
|
|
|
|
var_id: vec![ndarray_dtype_var_id, ndarray_ndims_var_id],
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|_, _, _, _, _| {
|
|
|
|
unreachable!("handled in gen_expr")
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2021-12-01 02:52:00 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "int32".into(),
|
|
|
|
simple_name: "int32".into(),
|
2022-02-21 17:52:34 +08:00
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "n".into(), ty: num_ty.0, default_value: None }],
|
2021-12-01 02:52:00 +08:00
|
|
|
ret: int32,
|
|
|
|
vars: var_map.clone(),
|
2022-02-21 17:52:34 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2021-12-01 02:52:00 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
2022-02-21 18:27:46 +08:00
|
|
|
|ctx, _, fun, args, generator| {
|
2023-11-03 15:05:40 +08:00
|
|
|
let PrimitiveStore {
|
|
|
|
int32,
|
|
|
|
int64,
|
|
|
|
uint32,
|
|
|
|
uint64,
|
|
|
|
float,
|
|
|
|
bool: boolean,
|
|
|
|
..
|
|
|
|
} = ctx.primitives;
|
|
|
|
|
2022-02-21 18:27:46 +08:00
|
|
|
let arg_ty = fun.0.args[0].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?;
|
2022-02-21 18:27:46 +08:00
|
|
|
Ok(if ctx.unifier.unioned(arg_ty, boolean) {
|
|
|
|
Some(
|
|
|
|
ctx.builder
|
|
|
|
.build_int_z_extend(
|
|
|
|
arg.into_int_value(),
|
|
|
|
ctx.ctx.i32_type(),
|
|
|
|
"zext",
|
|
|
|
)
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap(),
|
2022-02-21 18:27:46 +08:00
|
|
|
)
|
2022-03-05 23:23:32 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int32)
|
|
|
|
|| ctx.unifier.unioned(arg_ty, uint32)
|
|
|
|
{
|
2022-02-21 18:27:46 +08:00
|
|
|
Some(arg)
|
2022-03-05 23:23:32 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int64)
|
|
|
|
|| ctx.unifier.unioned(arg_ty, uint64)
|
|
|
|
{
|
2022-02-21 18:27:46 +08:00
|
|
|
Some(
|
|
|
|
ctx.builder
|
|
|
|
.build_int_truncate(
|
|
|
|
arg.into_int_value(),
|
|
|
|
ctx.ctx.i32_type(),
|
|
|
|
"trunc",
|
|
|
|
)
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap(),
|
2022-02-21 18:27:46 +08:00
|
|
|
)
|
|
|
|
} else if ctx.unifier.unioned(arg_ty, float) {
|
2023-11-03 15:05:40 +08:00
|
|
|
let to_int64 = ctx
|
2022-02-21 18:27:46 +08:00
|
|
|
.builder
|
|
|
|
.build_float_to_signed_int(
|
|
|
|
arg.into_float_value(),
|
2023-11-03 15:05:40 +08:00
|
|
|
ctx.ctx.i64_type(),
|
|
|
|
"",
|
2024-02-19 19:30:25 +08:00
|
|
|
)
|
|
|
|
.unwrap();
|
2023-11-03 15:05:40 +08:00
|
|
|
let val = ctx.builder
|
2024-02-19 19:30:25 +08:00
|
|
|
.build_int_truncate(to_int64, ctx.ctx.i32_type(), "conv")
|
|
|
|
.unwrap();
|
2023-11-03 15:05:40 +08:00
|
|
|
|
|
|
|
Some(val.into())
|
2022-02-21 18:27:46 +08:00
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
})
|
|
|
|
},
|
2021-12-01 02:52:00 +08:00
|
|
|
)))),
|
2022-02-21 17:52:34 +08:00
|
|
|
loc: None,
|
2021-12-01 02:52:00 +08:00
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "int64".into(),
|
|
|
|
simple_name: "int64".into(),
|
2022-02-21 17:52:34 +08:00
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "n".into(), ty: num_ty.0, default_value: None }],
|
2021-12-01 02:52:00 +08:00
|
|
|
ret: int64,
|
|
|
|
vars: var_map.clone(),
|
2022-02-21 17:52:34 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2021-12-01 02:52:00 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
2022-02-21 18:27:46 +08:00
|
|
|
|ctx, _, fun, args, generator| {
|
2023-11-03 15:05:40 +08:00
|
|
|
let PrimitiveStore {
|
|
|
|
int32,
|
|
|
|
int64,
|
|
|
|
uint32,
|
|
|
|
uint64,
|
|
|
|
float,
|
|
|
|
bool: boolean,
|
|
|
|
..
|
|
|
|
} = ctx.primitives;
|
|
|
|
|
2022-02-21 18:27:46 +08:00
|
|
|
let arg_ty = fun.0.args[0].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?;
|
2022-02-21 18:27:46 +08:00
|
|
|
Ok(
|
2022-03-05 23:23:32 +08:00
|
|
|
if ctx.unifier.unioned(arg_ty, boolean)
|
|
|
|
|| ctx.unifier.unioned(arg_ty, uint32)
|
|
|
|
{
|
2022-02-21 18:27:46 +08:00
|
|
|
Some(
|
|
|
|
ctx.builder
|
|
|
|
.build_int_z_extend(
|
|
|
|
arg.into_int_value(),
|
|
|
|
ctx.ctx.i64_type(),
|
|
|
|
"zext",
|
2022-02-21 17:52:34 +08:00
|
|
|
)
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap(),
|
2022-02-21 18:27:46 +08:00
|
|
|
)
|
2022-03-06 04:49:02 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int32) {
|
|
|
|
Some(
|
|
|
|
ctx.builder
|
|
|
|
.build_int_s_extend(
|
|
|
|
arg.into_int_value(),
|
|
|
|
ctx.ctx.i64_type(),
|
|
|
|
"sext",
|
|
|
|
)
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap(),
|
2022-03-06 04:49:02 +08:00
|
|
|
)
|
2022-03-05 23:23:32 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int64)
|
|
|
|
|| ctx.unifier.unioned(arg_ty, uint64)
|
|
|
|
{
|
2022-02-21 18:27:46 +08:00
|
|
|
Some(arg)
|
|
|
|
} else if ctx.unifier.unioned(arg_ty, float) {
|
|
|
|
let val = ctx
|
|
|
|
.builder
|
|
|
|
.build_float_to_signed_int(
|
|
|
|
arg.into_float_value(),
|
|
|
|
ctx.ctx.i64_type(),
|
|
|
|
"fptosi",
|
|
|
|
)
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap();
|
2022-02-21 18:27:46 +08:00
|
|
|
Some(val)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
},
|
2021-12-01 02:52:00 +08:00
|
|
|
)))),
|
2022-02-21 17:52:34 +08:00
|
|
|
loc: None,
|
2021-12-01 02:52:00 +08:00
|
|
|
})),
|
2022-03-05 03:45:09 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "uint32".into(),
|
|
|
|
simple_name: "uint32".into(),
|
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "n".into(), ty: num_ty.0, default_value: None }],
|
|
|
|
ret: uint32,
|
|
|
|
vars: var_map.clone(),
|
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-05 03:45:09 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, _, fun, args, generator| {
|
2023-11-03 15:05:40 +08:00
|
|
|
let PrimitiveStore {
|
|
|
|
int32,
|
|
|
|
int64,
|
|
|
|
uint32,
|
|
|
|
uint64,
|
|
|
|
float,
|
|
|
|
bool: boolean,
|
|
|
|
..
|
|
|
|
} = ctx.primitives;
|
|
|
|
|
2022-03-05 23:23:32 +08:00
|
|
|
let arg_ty = fun.0.args[0].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?;
|
2022-03-05 23:23:32 +08:00
|
|
|
let res = if ctx.unifier.unioned(arg_ty, boolean) {
|
|
|
|
ctx.builder
|
|
|
|
.build_int_z_extend(arg.into_int_value(), ctx.ctx.i64_type(), "zext")
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap()
|
2022-03-05 23:23:32 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int32)
|
|
|
|
|| ctx.unifier.unioned(arg_ty, uint32)
|
|
|
|
{
|
|
|
|
arg
|
|
|
|
} else if ctx.unifier.unioned(arg_ty, int64)
|
|
|
|
|| ctx.unifier.unioned(arg_ty, uint64)
|
|
|
|
{
|
|
|
|
ctx.builder
|
|
|
|
.build_int_truncate(arg.into_int_value(), ctx.ctx.i32_type(), "trunc")
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap()
|
2022-03-05 23:23:32 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, float) {
|
2023-11-03 15:34:07 +08:00
|
|
|
let llvm_i32 = ctx.ctx.i32_type();
|
|
|
|
let llvm_i64 = ctx.ctx.i64_type();
|
|
|
|
|
|
|
|
let arg = arg.into_float_value();
|
|
|
|
let arg_gez = ctx.builder
|
2024-02-19 19:30:25 +08:00
|
|
|
.build_float_compare(
|
|
|
|
FloatPredicate::OGE,
|
|
|
|
arg,
|
|
|
|
arg.get_type().const_zero(),
|
|
|
|
"",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-11-03 15:34:07 +08:00
|
|
|
|
|
|
|
let to_int32 = ctx.builder
|
|
|
|
.build_float_to_signed_int(
|
|
|
|
arg,
|
|
|
|
llvm_i32,
|
2024-02-19 19:30:25 +08:00
|
|
|
"",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-11-03 15:34:07 +08:00
|
|
|
let to_uint64 = ctx.builder
|
2022-03-05 23:23:32 +08:00
|
|
|
.build_float_to_unsigned_int(
|
2023-11-03 15:34:07 +08:00
|
|
|
arg,
|
|
|
|
llvm_i64,
|
2024-02-19 19:30:25 +08:00
|
|
|
"",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-11-03 15:34:07 +08:00
|
|
|
|
2024-02-19 19:30:25 +08:00
|
|
|
let val = ctx.builder
|
|
|
|
.build_select(
|
|
|
|
arg_gez,
|
|
|
|
ctx.builder.build_int_truncate(to_uint64, llvm_i32, "").unwrap(),
|
|
|
|
to_int32,
|
|
|
|
"conv",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-11-03 15:34:07 +08:00
|
|
|
|
2023-12-06 11:49:02 +08:00
|
|
|
val
|
2022-03-05 23:23:32 +08:00
|
|
|
} else {
|
2023-12-12 13:38:27 +08:00
|
|
|
unreachable!()
|
2022-03-05 23:23:32 +08:00
|
|
|
};
|
|
|
|
Ok(Some(res))
|
2022-03-05 03:45:09 +08:00
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "uint64".into(),
|
|
|
|
simple_name: "uint64".into(),
|
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "n".into(), ty: num_ty.0, default_value: None }],
|
|
|
|
ret: uint64,
|
|
|
|
vars: var_map.clone(),
|
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-05 03:45:09 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, _, fun, args, generator| {
|
2023-11-03 15:05:40 +08:00
|
|
|
let PrimitiveStore {
|
|
|
|
int32,
|
|
|
|
int64,
|
|
|
|
uint32,
|
|
|
|
uint64,
|
|
|
|
float,
|
|
|
|
bool: boolean,
|
|
|
|
..
|
|
|
|
} = ctx.primitives;
|
|
|
|
|
2022-03-05 23:23:32 +08:00
|
|
|
let arg_ty = fun.0.args[0].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?;
|
2023-11-03 15:55:16 +08:00
|
|
|
let res = if ctx.unifier.unioned(arg_ty, uint32)
|
2022-03-05 23:23:32 +08:00
|
|
|
|| ctx.unifier.unioned(arg_ty, boolean)
|
|
|
|
{
|
|
|
|
ctx.builder
|
|
|
|
.build_int_z_extend(arg.into_int_value(), ctx.ctx.i64_type(), "zext")
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap()
|
2023-11-03 15:55:16 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int32) {
|
|
|
|
ctx.builder
|
|
|
|
.build_int_s_extend(arg.into_int_value(), ctx.ctx.i64_type(), "sext")
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap()
|
2022-03-05 23:23:32 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int64)
|
|
|
|
|| ctx.unifier.unioned(arg_ty, uint64)
|
|
|
|
{
|
|
|
|
arg
|
|
|
|
} else if ctx.unifier.unioned(arg_ty, float) {
|
2023-11-03 15:34:07 +08:00
|
|
|
let llvm_i64 = ctx.ctx.i64_type();
|
|
|
|
|
|
|
|
let arg = arg.into_float_value();
|
|
|
|
let arg_gez = ctx.builder
|
2024-02-19 19:30:25 +08:00
|
|
|
.build_float_compare(
|
|
|
|
FloatPredicate::OGE,
|
|
|
|
arg,
|
|
|
|
arg.get_type().const_zero(),
|
|
|
|
"",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2023-11-03 15:34:07 +08:00
|
|
|
|
|
|
|
let to_int64 = ctx.builder
|
2024-02-19 19:30:25 +08:00
|
|
|
.build_float_to_signed_int(arg, llvm_i64, "")
|
|
|
|
.unwrap();
|
2023-11-03 15:34:07 +08:00
|
|
|
let to_uint64 = ctx.builder
|
2024-02-19 19:30:25 +08:00
|
|
|
.build_float_to_unsigned_int(arg, llvm_i64, "")
|
|
|
|
.unwrap();
|
2023-11-03 15:34:07 +08:00
|
|
|
|
2024-02-19 19:30:25 +08:00
|
|
|
let val = ctx.builder
|
|
|
|
.build_select(arg_gez, to_uint64, to_int64, "conv")
|
|
|
|
.unwrap();
|
2023-11-03 15:34:07 +08:00
|
|
|
|
2023-12-06 11:49:02 +08:00
|
|
|
val
|
2022-03-05 23:23:32 +08:00
|
|
|
} else {
|
2023-12-12 13:38:27 +08:00
|
|
|
unreachable!()
|
2022-03-05 23:23:32 +08:00
|
|
|
};
|
|
|
|
Ok(Some(res))
|
2022-03-05 03:45:09 +08:00
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2021-12-01 02:52:00 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "float".into(),
|
|
|
|
simple_name: "float".into(),
|
2022-02-21 17:52:34 +08:00
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "n".into(), ty: num_ty.0, default_value: None }],
|
2021-12-01 02:52:00 +08:00
|
|
|
ret: float,
|
|
|
|
vars: var_map.clone(),
|
2022-02-21 17:52:34 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2021-12-01 02:52:00 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
2022-02-21 18:27:46 +08:00
|
|
|
|ctx, _, fun, args, generator| {
|
2023-11-03 15:34:07 +08:00
|
|
|
let PrimitiveStore {
|
|
|
|
int32,
|
|
|
|
int64,
|
|
|
|
uint32,
|
|
|
|
uint64,
|
|
|
|
float,
|
|
|
|
bool: boolean,
|
|
|
|
..
|
|
|
|
} = ctx.primitives;
|
|
|
|
|
2022-02-21 18:27:46 +08:00
|
|
|
let arg_ty = fun.0.args[0].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?;
|
2022-02-21 18:27:46 +08:00
|
|
|
Ok(
|
2023-11-03 15:34:07 +08:00
|
|
|
if [boolean, int32, int64].iter().any(|ty| ctx.unifier.unioned(arg_ty, *ty))
|
2022-02-21 18:27:46 +08:00
|
|
|
{
|
|
|
|
let arg = arg.into_int_value();
|
|
|
|
let val = ctx
|
|
|
|
.builder
|
|
|
|
.build_signed_int_to_float(arg, ctx.ctx.f64_type(), "sitofp")
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap();
|
2022-02-21 18:27:46 +08:00
|
|
|
Some(val)
|
2023-11-03 15:05:40 +08:00
|
|
|
} else if [uint32, uint64].iter().any(|ty| ctx.unifier.unioned(arg_ty, *ty)) {
|
|
|
|
let arg = arg.into_int_value();
|
|
|
|
let val = ctx
|
|
|
|
.builder
|
|
|
|
.build_unsigned_int_to_float(arg, ctx.ctx.f64_type(), "uitofp")
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap();
|
2023-11-03 15:05:40 +08:00
|
|
|
Some(val)
|
2022-02-21 18:27:46 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, float) {
|
|
|
|
Some(arg)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
},
|
2021-12-01 02:52:00 +08:00
|
|
|
)))),
|
2022-02-21 17:52:34 +08:00
|
|
|
loc: None,
|
2021-12-01 02:52:00 +08:00
|
|
|
})),
|
2023-11-17 17:30:27 +08:00
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_ndarray",
|
|
|
|
ndarray_float,
|
|
|
|
// We are using List[int32] here, as I don't know a way to specify an n-tuple bound on a
|
|
|
|
// type variable
|
|
|
|
&[(list_int32, "shape")],
|
|
|
|
Box::new(|ctx, obj, fun, args, generator| {
|
2024-02-20 18:07:55 +08:00
|
|
|
gen_ndarray_empty(ctx, &obj, fun, &args, generator)
|
2023-11-17 17:30:27 +08:00
|
|
|
.map(|val| Some(val.as_basic_value_enum()))
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_empty",
|
|
|
|
ndarray_float,
|
|
|
|
// We are using List[int32] here, as I don't know a way to specify an n-tuple bound on a
|
|
|
|
// type variable
|
|
|
|
&[(list_int32, "shape")],
|
|
|
|
Box::new(|ctx, obj, fun, args, generator| {
|
2024-02-20 18:07:55 +08:00
|
|
|
gen_ndarray_empty(ctx, &obj, fun, &args, generator)
|
2023-11-17 17:30:27 +08:00
|
|
|
.map(|val| Some(val.as_basic_value_enum()))
|
|
|
|
}),
|
|
|
|
),
|
2023-11-27 13:25:53 +08:00
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_zeros",
|
|
|
|
ndarray_float,
|
|
|
|
// We are using List[int32] here, as I don't know a way to specify an n-tuple bound on a
|
|
|
|
// type variable
|
|
|
|
&[(list_int32, "shape")],
|
|
|
|
Box::new(|ctx, obj, fun, args, generator| {
|
2024-02-20 18:07:55 +08:00
|
|
|
gen_ndarray_zeros(ctx, &obj, fun, &args, generator)
|
2023-11-27 13:25:53 +08:00
|
|
|
.map(|val| Some(val.as_basic_value_enum()))
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_ones",
|
|
|
|
ndarray_float,
|
|
|
|
// We are using List[int32] here, as I don't know a way to specify an n-tuple bound on a
|
|
|
|
// type variable
|
|
|
|
&[(list_int32, "shape")],
|
|
|
|
Box::new(|ctx, obj, fun, args, generator| {
|
2024-02-20 18:07:55 +08:00
|
|
|
gen_ndarray_ones(ctx, &obj, fun, &args, generator)
|
2023-11-27 13:25:53 +08:00
|
|
|
.map(|val| Some(val.as_basic_value_enum()))
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
{
|
|
|
|
let tv = primitives.1.get_fresh_var(Some("T".into()), None).0;
|
|
|
|
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_full",
|
|
|
|
ndarray,
|
|
|
|
// We are using List[int32] here, as I don't know a way to specify an n-tuple bound on a
|
|
|
|
// type variable
|
|
|
|
&[(list_int32, "shape"), (tv, "fill_value")],
|
|
|
|
Box::new(|ctx, obj, fun, args, generator| {
|
2024-02-20 18:07:55 +08:00
|
|
|
gen_ndarray_full(ctx, &obj, fun, &args, generator)
|
2023-11-27 13:25:53 +08:00
|
|
|
.map(|val| Some(val.as_basic_value_enum()))
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
},
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "np_eye".into(),
|
|
|
|
simple_name: "np_eye".into(),
|
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![
|
|
|
|
FuncArg { name: "N".into(), ty: int32, default_value: None },
|
|
|
|
// TODO(Derppening): Default values current do not work?
|
|
|
|
FuncArg {
|
|
|
|
name: "M".into(),
|
|
|
|
ty: int32,
|
|
|
|
default_value: Some(SymbolValue::OptionNone)
|
|
|
|
},
|
|
|
|
FuncArg { name: "k".into(), ty: int32, default_value: Some(SymbolValue::I32(0)) },
|
|
|
|
],
|
|
|
|
ret: ndarray_float_2d,
|
|
|
|
vars: var_map.clone(),
|
|
|
|
})),
|
2024-02-20 18:07:55 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2023-11-27 13:25:53 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, obj, fun, args, generator| {
|
2024-02-20 18:07:55 +08:00
|
|
|
gen_ndarray_eye(ctx, &obj, fun, &args, generator)
|
2023-11-27 13:25:53 +08:00
|
|
|
.map(|val| Some(val.as_basic_value_enum()))
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_identity",
|
|
|
|
ndarray_float_2d,
|
|
|
|
&[(int32, "n")],
|
|
|
|
Box::new(|ctx, obj, fun, args, generator| {
|
2024-02-20 18:07:55 +08:00
|
|
|
gen_ndarray_identity(ctx, &obj, fun, &args, generator)
|
2023-11-27 13:25:53 +08:00
|
|
|
.map(|val| Some(val.as_basic_value_enum()))
|
|
|
|
}),
|
|
|
|
),
|
2023-11-02 14:56:35 +08:00
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"round",
|
|
|
|
int32,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let llvm_i32 = ctx.ctx.i32_type();
|
|
|
|
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-02 14:56:35 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_round(ctx, arg, None);
|
2023-11-02 14:56:35 +08:00
|
|
|
let val_toint = ctx.builder
|
2024-02-22 01:47:26 +08:00
|
|
|
.build_float_to_signed_int(val, llvm_i32, "round")
|
2024-02-19 19:30:25 +08:00
|
|
|
.unwrap();
|
2023-11-02 14:56:35 +08:00
|
|
|
Ok(Some(val_toint.into()))
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"round64",
|
|
|
|
int64,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let llvm_i64 = ctx.ctx.i64_type();
|
|
|
|
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-02 14:56:35 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_round(ctx, arg, None);
|
2023-11-02 14:56:35 +08:00
|
|
|
let val_toint = ctx.builder
|
2024-02-22 01:47:26 +08:00
|
|
|
.build_float_to_signed_int(val, llvm_i64, "round")
|
2024-02-19 19:30:25 +08:00
|
|
|
.unwrap();
|
2023-11-02 14:56:35 +08:00
|
|
|
Ok(Some(val_toint.into()))
|
|
|
|
}),
|
|
|
|
),
|
2023-11-23 13:45:07 +08:00
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_round",
|
|
|
|
float,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-23 13:45:07 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_roundeven(ctx, arg, None);
|
2023-11-23 13:45:07 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
Ok(Some(val.into()))
|
2023-11-23 13:45:07 +08:00
|
|
|
}),
|
|
|
|
),
|
2021-12-01 02:52:00 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "range".into(),
|
|
|
|
simple_name: "range".into(),
|
2022-02-21 17:52:34 +08:00
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
2021-12-01 02:52:00 +08:00
|
|
|
args: vec![
|
|
|
|
FuncArg { name: "start".into(), ty: int32, default_value: None },
|
|
|
|
FuncArg {
|
|
|
|
name: "stop".into(),
|
|
|
|
ty: int32,
|
|
|
|
// placeholder
|
|
|
|
default_value: Some(SymbolValue::I32(0)),
|
|
|
|
},
|
|
|
|
FuncArg {
|
|
|
|
name: "step".into(),
|
|
|
|
ty: int32,
|
|
|
|
default_value: Some(SymbolValue::I32(1)),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
ret: range,
|
2024-03-04 23:38:52 +08:00
|
|
|
vars: VarMap::default(),
|
2022-02-21 17:52:34 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2021-12-01 02:52:00 +08:00
|
|
|
resolver: None,
|
2022-02-21 18:27:46 +08:00
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, _, _, args, generator| {
|
|
|
|
let mut start = None;
|
|
|
|
let mut stop = None;
|
|
|
|
let mut step = None;
|
|
|
|
let int32 = ctx.ctx.i32_type();
|
|
|
|
let zero = int32.const_zero();
|
2022-04-08 03:26:42 +08:00
|
|
|
let ty_i32 = ctx.primitives.int32;
|
2022-02-21 18:27:46 +08:00
|
|
|
for (i, arg) in args.iter().enumerate() {
|
|
|
|
if arg.0 == Some("start".into()) {
|
2022-04-08 03:26:42 +08:00
|
|
|
start = Some(arg.1.clone().to_basic_value_enum(ctx, generator, ty_i32)?);
|
2022-02-21 18:27:46 +08:00
|
|
|
} else if arg.0 == Some("stop".into()) {
|
2022-04-08 03:26:42 +08:00
|
|
|
stop = Some(arg.1.clone().to_basic_value_enum(ctx, generator, ty_i32)?);
|
2022-02-21 18:27:46 +08:00
|
|
|
} else if arg.0 == Some("step".into()) {
|
2022-04-08 03:26:42 +08:00
|
|
|
step = Some(arg.1.clone().to_basic_value_enum(ctx, generator, ty_i32)?);
|
2022-02-21 18:27:46 +08:00
|
|
|
} else if i == 0 {
|
2022-04-08 03:26:42 +08:00
|
|
|
start = Some(arg.1.clone().to_basic_value_enum(ctx, generator, ty_i32)?);
|
2022-02-21 18:27:46 +08:00
|
|
|
} else if i == 1 {
|
2022-04-08 03:26:42 +08:00
|
|
|
stop = Some(arg.1.clone().to_basic_value_enum(ctx, generator, ty_i32)?);
|
2022-02-21 18:27:46 +08:00
|
|
|
} else if i == 2 {
|
2022-04-08 03:26:42 +08:00
|
|
|
step = Some(arg.1.clone().to_basic_value_enum(ctx, generator, ty_i32)?);
|
2022-02-21 18:27:46 +08:00
|
|
|
}
|
|
|
|
}
|
2022-04-05 14:29:20 +08:00
|
|
|
let step = match step {
|
|
|
|
Some(step) => {
|
|
|
|
let step = step.into_int_value();
|
|
|
|
// assert step != 0, throw exception if not
|
2024-02-19 19:30:25 +08:00
|
|
|
let not_zero = ctx.builder
|
|
|
|
.build_int_compare(
|
|
|
|
IntPredicate::NE,
|
|
|
|
step,
|
|
|
|
step.get_type().const_zero(),
|
|
|
|
"range_step_ne",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2022-04-05 14:29:20 +08:00
|
|
|
ctx.make_assert(
|
|
|
|
generator,
|
|
|
|
not_zero,
|
|
|
|
"0:ValueError",
|
|
|
|
"range() step must not be zero",
|
|
|
|
[None, None, None],
|
|
|
|
ctx.current_loc,
|
|
|
|
);
|
|
|
|
step
|
|
|
|
}
|
|
|
|
None => int32.const_int(1, false),
|
|
|
|
};
|
2022-02-21 18:27:46 +08:00
|
|
|
let stop = stop.unwrap_or_else(|| {
|
|
|
|
let v = start.unwrap();
|
|
|
|
start = None;
|
|
|
|
v
|
|
|
|
});
|
|
|
|
let start = start.unwrap_or_else(|| int32.const_zero().into());
|
|
|
|
let ty = int32.array_type(3);
|
2023-10-03 18:02:45 +08:00
|
|
|
let ptr = generator.gen_var_alloc(ctx, ty.into(), Some("range")).unwrap();
|
2022-02-21 18:27:46 +08:00
|
|
|
unsafe {
|
2024-02-19 19:30:25 +08:00
|
|
|
let a = ctx.builder
|
|
|
|
.build_in_bounds_gep(ptr, &[zero, zero], "start")
|
|
|
|
.unwrap();
|
|
|
|
let b = ctx.builder
|
|
|
|
.build_in_bounds_gep(
|
|
|
|
ptr,
|
|
|
|
&[zero, int32.const_int(1, false)],
|
|
|
|
"end",
|
|
|
|
)
|
|
|
|
.unwrap();
|
2022-02-21 18:27:46 +08:00
|
|
|
let c = ctx.builder.build_in_bounds_gep(
|
2024-02-19 19:30:25 +08:00
|
|
|
ptr,
|
|
|
|
&[zero, int32.const_int(2, false)],
|
|
|
|
"step",
|
|
|
|
).unwrap();
|
|
|
|
ctx.builder.build_store(a, start).unwrap();
|
|
|
|
ctx.builder.build_store(b, stop).unwrap();
|
|
|
|
ctx.builder.build_store(c, step).unwrap();
|
2021-12-01 02:52:00 +08:00
|
|
|
}
|
2022-02-21 18:27:46 +08:00
|
|
|
Ok(Some(ptr.into()))
|
|
|
|
},
|
|
|
|
)))),
|
2022-02-21 17:52:34 +08:00
|
|
|
loc: None,
|
2021-12-01 02:52:00 +08:00
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "str".into(),
|
|
|
|
simple_name: "str".into(),
|
2022-02-21 17:52:34 +08:00
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "s".into(), ty: string, default_value: None }],
|
2021-12-01 02:52:00 +08:00
|
|
|
ret: string,
|
2024-03-04 23:38:52 +08:00
|
|
|
vars: VarMap::default(),
|
2022-02-21 17:52:34 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2021-12-01 02:52:00 +08:00
|
|
|
resolver: None,
|
2022-02-21 18:27:46 +08:00
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
2022-04-08 03:26:42 +08:00
|
|
|
|ctx, _, fun, args, generator| {
|
|
|
|
let arg_ty = fun.0.args[0].ty;
|
|
|
|
Ok(Some(args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?))
|
2022-02-21 18:27:46 +08:00
|
|
|
},
|
|
|
|
)))),
|
2022-02-21 17:52:34 +08:00
|
|
|
loc: None,
|
2021-12-01 02:52:00 +08:00
|
|
|
})),
|
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "bool".into(),
|
|
|
|
simple_name: "bool".into(),
|
2022-02-21 17:52:34 +08:00
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "n".into(), ty: num_ty.0, default_value: None }],
|
2021-12-01 02:52:00 +08:00
|
|
|
ret: primitives.0.bool,
|
2022-03-08 21:50:28 +08:00
|
|
|
vars: var_map.clone(),
|
2022-02-21 17:52:34 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2021-12-01 02:52:00 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
2022-02-12 21:00:12 +08:00
|
|
|
|ctx, _, fun, args, generator| {
|
2021-12-01 02:52:00 +08:00
|
|
|
let int32 = ctx.primitives.int32;
|
|
|
|
let int64 = ctx.primitives.int64;
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
let boolean = ctx.primitives.bool;
|
|
|
|
let arg_ty = fun.0.args[0].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?;
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(if ctx.unifier.unioned(arg_ty, boolean) {
|
2021-12-01 02:52:00 +08:00
|
|
|
Some(arg)
|
2021-12-02 01:08:55 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int32) {
|
2022-02-21 18:27:46 +08:00
|
|
|
Some(
|
|
|
|
ctx.builder
|
|
|
|
.build_int_compare(
|
|
|
|
IntPredicate::NE,
|
|
|
|
ctx.ctx.i32_type().const_zero(),
|
|
|
|
arg.into_int_value(),
|
|
|
|
"bool",
|
|
|
|
)
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap(),
|
2022-02-21 18:27:46 +08:00
|
|
|
)
|
2021-12-02 01:08:55 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, int64) {
|
2022-02-21 18:27:46 +08:00
|
|
|
Some(
|
|
|
|
ctx.builder
|
|
|
|
.build_int_compare(
|
|
|
|
IntPredicate::NE,
|
|
|
|
ctx.ctx.i64_type().const_zero(),
|
|
|
|
arg.into_int_value(),
|
|
|
|
"bool",
|
|
|
|
)
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap(),
|
2022-02-21 18:27:46 +08:00
|
|
|
)
|
2021-12-01 02:52:00 +08:00
|
|
|
} else if ctx.unifier.unioned(arg_ty, float) {
|
2022-02-21 18:27:46 +08:00
|
|
|
let val = ctx
|
|
|
|
.builder
|
|
|
|
.build_float_compare(
|
2021-12-01 02:52:00 +08:00
|
|
|
// UEQ as bool(nan) is True
|
|
|
|
FloatPredicate::UEQ,
|
|
|
|
arg.into_float_value(),
|
|
|
|
ctx.ctx.f64_type().const_zero(),
|
2022-02-21 18:27:46 +08:00
|
|
|
"bool",
|
|
|
|
)
|
2024-02-19 19:30:25 +08:00
|
|
|
.map(Into::into)
|
|
|
|
.unwrap();
|
2021-12-01 02:52:00 +08:00
|
|
|
Some(val)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
2022-02-21 17:52:34 +08:00
|
|
|
})
|
2021-12-01 02:52:00 +08:00
|
|
|
},
|
|
|
|
)))),
|
2022-02-21 17:52:34 +08:00
|
|
|
loc: None,
|
2021-12-01 02:52:00 +08:00
|
|
|
})),
|
2023-11-02 14:56:35 +08:00
|
|
|
create_fn_by_codegen(
|
2023-10-06 17:48:31 +08:00
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"floor",
|
2023-11-02 14:56:35 +08:00
|
|
|
int32,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let llvm_i32 = ctx.ctx.i32_type();
|
|
|
|
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-02 14:56:35 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_floor(ctx, arg, None);
|
2023-11-02 14:56:35 +08:00
|
|
|
let val_toint = ctx.builder
|
2024-02-22 01:47:26 +08:00
|
|
|
.build_float_to_signed_int(val, llvm_i32, "floor")
|
2024-02-19 19:30:25 +08:00
|
|
|
.unwrap();
|
2023-11-02 14:56:35 +08:00
|
|
|
Ok(Some(val_toint.into()))
|
|
|
|
}),
|
2023-10-06 17:48:31 +08:00
|
|
|
),
|
2023-11-02 14:56:35 +08:00
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"floor64",
|
|
|
|
int64,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let llvm_i64 = ctx.ctx.i64_type();
|
|
|
|
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-02 14:56:35 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_floor(ctx, arg, None);
|
2023-11-02 14:56:35 +08:00
|
|
|
let val_toint = ctx.builder
|
2024-02-22 01:47:26 +08:00
|
|
|
.build_float_to_signed_int(val, llvm_i64, "floor")
|
2024-02-19 19:30:25 +08:00
|
|
|
.unwrap();
|
2023-11-02 14:56:35 +08:00
|
|
|
Ok(Some(val_toint.into()))
|
|
|
|
}),
|
|
|
|
),
|
2023-11-23 13:45:07 +08:00
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_floor",
|
|
|
|
float,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-23 13:45:07 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_floor(ctx, arg, None);
|
|
|
|
Ok(Some(val.into()))
|
2023-11-23 13:45:07 +08:00
|
|
|
}),
|
|
|
|
),
|
2023-11-02 14:56:35 +08:00
|
|
|
create_fn_by_codegen(
|
2023-10-06 17:48:31 +08:00
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"ceil",
|
2023-11-02 14:56:35 +08:00
|
|
|
int32,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let llvm_i32 = ctx.ctx.i32_type();
|
|
|
|
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-02 14:56:35 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_ceil(ctx, arg, None);
|
2023-11-02 14:56:35 +08:00
|
|
|
let val_toint = ctx.builder
|
2024-02-22 01:47:26 +08:00
|
|
|
.build_float_to_signed_int(val, llvm_i32, "ceil")
|
2024-02-19 19:30:25 +08:00
|
|
|
.unwrap();
|
2023-11-02 14:56:35 +08:00
|
|
|
Ok(Some(val_toint.into()))
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"ceil64",
|
|
|
|
int64,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let llvm_i64 = ctx.ctx.i64_type();
|
|
|
|
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-02 14:56:35 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_ceil(ctx, arg, None);
|
2023-11-02 14:56:35 +08:00
|
|
|
let val_toint = ctx.builder
|
2024-02-22 01:47:26 +08:00
|
|
|
.build_float_to_signed_int(val, llvm_i64, "ceil")
|
2024-02-19 19:30:25 +08:00
|
|
|
.unwrap();
|
2023-11-02 14:56:35 +08:00
|
|
|
Ok(Some(val_toint.into()))
|
|
|
|
}),
|
2023-10-06 17:48:31 +08:00
|
|
|
),
|
2023-11-23 13:45:07 +08:00
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
|
|
|
"np_ceil",
|
|
|
|
float,
|
|
|
|
&[(float, "n")],
|
|
|
|
Box::new(|ctx, _, _, args, generator| {
|
|
|
|
let arg = args[0].1.clone()
|
2024-02-22 01:47:26 +08:00
|
|
|
.to_basic_value_enum(ctx, generator, ctx.primitives.float)?
|
|
|
|
.into_float_value();
|
2023-11-23 13:45:07 +08:00
|
|
|
|
2024-02-22 01:47:26 +08:00
|
|
|
let val = call_float_ceil(ctx, arg, None);
|
|
|
|
Ok(Some(val.into()))
|
2023-11-23 13:45:07 +08:00
|
|
|
}),
|
|
|
|
),
|
2021-12-09 01:14:28 +08:00
|
|
|
Arc::new(RwLock::new({
|
2023-11-06 18:03:52 +08:00
|
|
|
let tvar = primitives.1.get_fresh_var(Some("L".into()), None);
|
|
|
|
let list = primitives.1.add_ty(TypeEnum::TList { ty: tvar.0 });
|
|
|
|
let ndims = primitives.1.get_fresh_const_generic_var(primitives.0.uint64, Some("N".into()), None);
|
2024-02-27 13:39:05 +08:00
|
|
|
let ndarray = make_ndarray_ty(
|
|
|
|
&mut primitives.1,
|
|
|
|
&primitives.0,
|
|
|
|
Some(tvar.0),
|
|
|
|
Some(ndims.0),
|
|
|
|
);
|
2023-11-06 18:03:52 +08:00
|
|
|
|
2022-02-21 18:27:46 +08:00
|
|
|
let arg_ty = primitives.1.get_fresh_var_with_range(
|
2023-11-06 18:03:52 +08:00
|
|
|
&[list, ndarray, primitives.0.range],
|
2022-02-21 18:27:46 +08:00
|
|
|
Some("I".into()),
|
|
|
|
None,
|
|
|
|
);
|
2021-12-09 01:14:28 +08:00
|
|
|
TopLevelDef::Function {
|
|
|
|
name: "len".into(),
|
|
|
|
simple_name: "len".into(),
|
2022-02-21 17:52:34 +08:00
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
2022-02-21 18:27:46 +08:00
|
|
|
args: vec![FuncArg { name: "ls".into(), ty: arg_ty.0, default_value: None }],
|
2021-12-20 17:44:42 +08:00
|
|
|
ret: int32,
|
2023-11-06 18:03:52 +08:00
|
|
|
vars: vec![(tvar.1, tvar.0), (arg_ty.1, arg_ty.0)]
|
2022-02-21 18:27:46 +08:00
|
|
|
.into_iter()
|
|
|
|
.collect(),
|
2022-02-21 17:52:34 +08:00
|
|
|
})),
|
2021-12-12 05:52:22 +08:00
|
|
|
var_id: vec![arg_ty.1],
|
2023-12-08 17:43:32 +08:00
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2021-12-09 01:14:28 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
2022-02-12 21:00:12 +08:00
|
|
|
|ctx, _, fun, args, generator| {
|
2021-12-09 01:14:28 +08:00
|
|
|
let range_ty = ctx.primitives.range;
|
|
|
|
let arg_ty = fun.0.args[0].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let arg = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?;
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(if ctx.unifier.unioned(arg_ty, range_ty) {
|
2024-01-23 18:27:00 +08:00
|
|
|
let arg = RangeValue::from_ptr_val(arg.into_pointer_value(), Some("range"));
|
2021-12-09 01:14:28 +08:00
|
|
|
let (start, end, step) = destructure_range(ctx, arg);
|
2022-04-05 14:29:20 +08:00
|
|
|
Some(calculate_len_for_slice_range(generator, ctx, start, end, step).into())
|
2021-12-09 01:14:28 +08:00
|
|
|
} else {
|
2023-11-06 18:03:52 +08:00
|
|
|
match &*ctx.unifier.get_ty_immutable(arg_ty) {
|
|
|
|
TypeEnum::TList { .. } => {
|
|
|
|
let int32 = ctx.ctx.i32_type();
|
|
|
|
let zero = int32.const_zero();
|
|
|
|
let len = ctx
|
|
|
|
.build_gep_and_load(
|
|
|
|
arg.into_pointer_value(),
|
|
|
|
&[zero, int32.const_int(1, false)],
|
|
|
|
None,
|
|
|
|
)
|
|
|
|
.into_int_value();
|
|
|
|
if len.get_type().get_bit_width() == 32 {
|
|
|
|
Some(len.into())
|
|
|
|
} else {
|
2024-02-19 19:30:25 +08:00
|
|
|
Some(ctx.builder
|
|
|
|
.build_int_truncate(len, int32, "len2i32")
|
|
|
|
.map(Into::into)
|
|
|
|
.unwrap()
|
|
|
|
)
|
2023-11-06 18:03:52 +08:00
|
|
|
}
|
|
|
|
}
|
2024-02-27 13:39:05 +08:00
|
|
|
TypeEnum::TObj { obj_id, .. } if *obj_id == PRIMITIVE_DEF_IDS.ndarray => {
|
2023-11-27 13:25:53 +08:00
|
|
|
let llvm_i32 = ctx.ctx.i32_type();
|
2024-03-26 15:07:26 +08:00
|
|
|
let llvm_usize = generator.get_size_type(ctx.ctx);
|
2023-11-27 13:25:53 +08:00
|
|
|
|
2024-03-26 15:07:26 +08:00
|
|
|
let arg = NDArrayValue::from_ptr_val(
|
2023-11-27 13:25:53 +08:00
|
|
|
arg.into_pointer_value(),
|
2024-03-26 15:07:26 +08:00
|
|
|
llvm_usize,
|
|
|
|
None
|
|
|
|
);
|
|
|
|
|
|
|
|
let ndims = arg.dim_sizes().size(ctx, generator);
|
|
|
|
ctx.make_assert(
|
|
|
|
generator,
|
|
|
|
ctx.builder.build_int_compare(
|
|
|
|
IntPredicate::NE,
|
|
|
|
ndims,
|
|
|
|
llvm_usize.const_zero(),
|
|
|
|
"",
|
|
|
|
).unwrap(),
|
|
|
|
"0:TypeError",
|
|
|
|
"len() of unsized object",
|
|
|
|
[None, None, None],
|
|
|
|
ctx.current_loc,
|
|
|
|
);
|
|
|
|
|
|
|
|
let len = unsafe {
|
|
|
|
arg.dim_sizes().get_typed_unchecked(
|
|
|
|
ctx,
|
|
|
|
generator,
|
|
|
|
llvm_usize.const_zero(),
|
|
|
|
None,
|
|
|
|
)
|
|
|
|
};
|
2023-11-27 13:25:53 +08:00
|
|
|
|
2024-02-20 18:07:55 +08:00
|
|
|
if len.get_type().get_bit_width() == 32 {
|
|
|
|
Some(len.into())
|
|
|
|
} else {
|
2024-02-19 19:30:25 +08:00
|
|
|
Some(ctx.builder
|
|
|
|
.build_int_truncate(len, llvm_i32, "len")
|
|
|
|
.map(Into::into)
|
|
|
|
.unwrap()
|
|
|
|
)
|
2023-11-27 13:25:53 +08:00
|
|
|
}
|
|
|
|
}
|
2023-11-06 18:03:52 +08:00
|
|
|
_ => unreachable!(),
|
2021-12-27 22:50:36 +08:00
|
|
|
}
|
2022-02-21 17:52:34 +08:00
|
|
|
})
|
2021-12-09 01:14:28 +08:00
|
|
|
},
|
|
|
|
)))),
|
2022-02-21 17:52:34 +08:00
|
|
|
loc: None,
|
2021-12-09 01:14:28 +08:00
|
|
|
}
|
2022-02-21 18:27:46 +08:00
|
|
|
})),
|
2022-03-08 21:50:28 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "min".into(),
|
|
|
|
simple_name: "min".into(),
|
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![
|
|
|
|
FuncArg { name: "m".into(), ty: num_ty.0, default_value: None },
|
|
|
|
FuncArg { name: "n".into(), ty: num_ty.0, default_value: None },
|
|
|
|
],
|
|
|
|
ret: num_ty.0,
|
2022-03-08 22:22:00 +08:00
|
|
|
vars: var_map.clone(),
|
2022-03-08 21:50:28 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-08 21:50:28 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, _, fun, args, generator| {
|
|
|
|
let boolean = ctx.primitives.bool;
|
|
|
|
let int32 = ctx.primitives.int32;
|
|
|
|
let int64 = ctx.primitives.int64;
|
|
|
|
let uint32 = ctx.primitives.uint32;
|
|
|
|
let uint64 = ctx.primitives.uint64;
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
let m_ty = fun.0.args[0].ty;
|
|
|
|
let n_ty = fun.0.args[1].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let m_val = args[0].1.clone().to_basic_value_enum(ctx, generator, m_ty)?;
|
|
|
|
let n_val = args[1].1.clone().to_basic_value_enum(ctx, generator, n_ty)?;
|
2022-03-08 21:50:28 +08:00
|
|
|
let mut is_type = |a: Type, b: Type| ctx.unifier.unioned(a, b);
|
2024-02-22 01:47:26 +08:00
|
|
|
if !is_type(m_ty, n_ty) {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
let val: BasicValueEnum = if [boolean, uint32, uint64].iter().any(|t| is_type(n_ty, *t)) {
|
|
|
|
call_int_umin(
|
|
|
|
ctx,
|
|
|
|
m_val.into_int_value(),
|
|
|
|
n_val.into_int_value(),
|
|
|
|
Some("min"),
|
|
|
|
).into()
|
|
|
|
} else if [int32, int64].iter().any(|t| is_type(n_ty, *t)) {
|
|
|
|
call_int_smin(
|
|
|
|
ctx,
|
|
|
|
m_val.into_int_value(),
|
|
|
|
n_val.into_int_value(),
|
|
|
|
Some("min"),
|
|
|
|
).into()
|
2022-03-08 21:50:28 +08:00
|
|
|
} else if is_type(m_ty, n_ty) && is_type(n_ty, float) {
|
2024-02-22 01:47:26 +08:00
|
|
|
call_float_minnum(
|
|
|
|
ctx,
|
|
|
|
m_val.into_float_value(),
|
|
|
|
n_val.into_float_value(),
|
|
|
|
Some("min"),
|
|
|
|
).into()
|
2022-03-08 21:50:28 +08:00
|
|
|
} else {
|
2023-12-12 13:38:27 +08:00
|
|
|
unreachable!()
|
2022-03-08 21:50:28 +08:00
|
|
|
};
|
|
|
|
Ok(val.into())
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2022-03-08 22:22:00 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "max".into(),
|
|
|
|
simple_name: "max".into(),
|
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![
|
|
|
|
FuncArg { name: "m".into(), ty: num_ty.0, default_value: None },
|
|
|
|
FuncArg { name: "n".into(), ty: num_ty.0, default_value: None },
|
|
|
|
],
|
|
|
|
ret: num_ty.0,
|
2022-03-08 23:02:25 +08:00
|
|
|
vars: var_map.clone(),
|
2022-03-08 22:22:00 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-08 22:22:00 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, _, fun, args, generator| {
|
|
|
|
let boolean = ctx.primitives.bool;
|
|
|
|
let int32 = ctx.primitives.int32;
|
|
|
|
let int64 = ctx.primitives.int64;
|
|
|
|
let uint32 = ctx.primitives.uint32;
|
|
|
|
let uint64 = ctx.primitives.uint64;
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
let m_ty = fun.0.args[0].ty;
|
|
|
|
let n_ty = fun.0.args[1].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let m_val = args[0].1.clone().to_basic_value_enum(ctx, generator, m_ty)?;
|
|
|
|
let n_val = args[1].1.clone().to_basic_value_enum(ctx, generator, n_ty)?;
|
2022-03-08 22:22:00 +08:00
|
|
|
let mut is_type = |a: Type, b: Type| ctx.unifier.unioned(a, b);
|
2024-02-22 01:47:26 +08:00
|
|
|
if !is_type(m_ty, n_ty) {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
let val: BasicValueEnum = if [boolean, uint32, uint64].iter().any(|t| is_type(n_ty, *t)) {
|
|
|
|
call_int_umax(
|
|
|
|
ctx,
|
|
|
|
m_val.into_int_value(),
|
|
|
|
n_val.into_int_value(),
|
|
|
|
Some("max"),
|
|
|
|
).into()
|
|
|
|
} else if [int32, int64].iter().any(|t| is_type(n_ty, *t)) {
|
|
|
|
call_int_smax(
|
|
|
|
ctx,
|
|
|
|
m_val.into_int_value(),
|
|
|
|
n_val.into_int_value(),
|
|
|
|
Some("max"),
|
|
|
|
).into()
|
2022-03-08 22:22:00 +08:00
|
|
|
} else if is_type(m_ty, n_ty) && is_type(n_ty, float) {
|
2024-02-22 01:47:26 +08:00
|
|
|
call_float_maxnum(
|
|
|
|
ctx,
|
|
|
|
m_val.into_float_value(),
|
|
|
|
n_val.into_float_value(),
|
|
|
|
Some("max"),
|
|
|
|
).into()
|
2022-03-08 22:22:00 +08:00
|
|
|
} else {
|
2023-12-12 13:38:27 +08:00
|
|
|
unreachable!()
|
2022-03-08 22:22:00 +08:00
|
|
|
};
|
|
|
|
Ok(val.into())
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2022-03-08 23:02:25 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "abs".into(),
|
|
|
|
simple_name: "abs".into(),
|
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "n".into(), ty: num_ty.0, default_value: None }],
|
|
|
|
ret: num_ty.0,
|
2023-10-10 14:56:16 +08:00
|
|
|
vars: var_map.clone(),
|
2022-03-08 23:02:25 +08:00
|
|
|
})),
|
2023-12-08 17:43:32 +08:00
|
|
|
var_id: Vec::default(),
|
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-08 23:02:25 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
|
|
|
|ctx, _, fun, args, generator| {
|
|
|
|
let boolean = ctx.primitives.bool;
|
|
|
|
let int32 = ctx.primitives.int32;
|
|
|
|
let int64 = ctx.primitives.int64;
|
|
|
|
let uint32 = ctx.primitives.uint32;
|
|
|
|
let uint64 = ctx.primitives.uint64;
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
let llvm_i1 = ctx.ctx.bool_type();
|
|
|
|
let n_ty = fun.0.args[0].ty;
|
2022-04-08 03:26:42 +08:00
|
|
|
let n_val = args[0].1.clone().to_basic_value_enum(ctx, generator, n_ty)?;
|
2022-03-08 23:02:25 +08:00
|
|
|
let mut is_type = |a: Type, b: Type| ctx.unifier.unioned(a, b);
|
2024-02-22 01:47:26 +08:00
|
|
|
let val: BasicValueEnum = if [boolean, uint32, uint64].iter().any(|t| is_type(n_ty, *t)) {
|
|
|
|
n_val
|
|
|
|
} else if [int32, int64].iter().any(|t| is_type(n_ty, *t)) {
|
|
|
|
call_int_abs(
|
|
|
|
ctx,
|
|
|
|
n_val.into_int_value(),
|
|
|
|
llvm_i1.const_zero(),
|
|
|
|
Some("abs"),
|
|
|
|
).into()
|
|
|
|
} else if is_type(n_ty, float) {
|
|
|
|
call_float_fabs(
|
|
|
|
ctx,
|
|
|
|
n_val.into_float_value(),
|
|
|
|
Some("abs"),
|
|
|
|
).into()
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
2022-03-08 23:02:25 +08:00
|
|
|
Ok(val.into())
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2023-10-10 16:56:38 +08:00
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_isnan",
|
2023-10-10 16:56:38 +08:00
|
|
|
boolean,
|
|
|
|
&[(float, "x")],
|
|
|
|
Box::new(|ctx, _, fun, args, generator| {
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
|
|
|
|
let x_ty = fun.0.args[0].ty;
|
|
|
|
let x_val = args[0].1.clone()
|
|
|
|
.to_basic_value_enum(ctx, generator, x_ty)?;
|
|
|
|
|
|
|
|
assert!(ctx.unifier.unioned(x_ty, float));
|
|
|
|
|
|
|
|
let val = call_isnan(generator, ctx, x_val.into_float_value());
|
|
|
|
|
|
|
|
Ok(Some(val.into()))
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
create_fn_by_codegen(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_isinf",
|
2023-10-10 16:56:38 +08:00
|
|
|
boolean,
|
|
|
|
&[(float, "x")],
|
|
|
|
Box::new(|ctx, _, fun, args, generator| {
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
|
|
|
|
let x_ty = fun.0.args[0].ty;
|
|
|
|
let x_val = args[0].1.clone()
|
|
|
|
.to_basic_value_enum(ctx, generator, x_ty)?;
|
|
|
|
|
|
|
|
assert!(ctx.unifier.unioned(x_ty, float));
|
|
|
|
|
|
|
|
let val = call_isinf(generator, ctx, x_val.into_float_value());
|
|
|
|
|
|
|
|
Ok(Some(val.into()))
|
|
|
|
}),
|
|
|
|
),
|
2023-10-06 17:48:31 +08:00
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_sin",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.sin.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_cos",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.cos.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_exp",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.exp.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_exp2",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.exp2.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_log",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.log.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_log10",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.log10.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_log2",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.log2.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_fabs",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.fabs.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_sqrt",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"llvm.sqrt.f64",
|
|
|
|
),
|
2023-11-02 14:48:25 +08:00
|
|
|
create_fn_by_intrinsic(
|
2023-10-06 17:48:31 +08:00
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_rint",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
2023-11-02 14:48:25 +08:00
|
|
|
"llvm.roundeven.f64",
|
2023-10-06 17:48:31 +08:00
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_tan",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"tan",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_arcsin",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"asin",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_arccos",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"acos",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_arctan",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"atan",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_sinh",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"sinh",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_cosh",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"cosh",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_tanh",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"tanh",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_arcsinh",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"asinh",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_arccosh",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"acosh",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_arctanh",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"atanh",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_expm1",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"expm1",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_cbrt",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"cbrt",
|
|
|
|
&["readnone", "willreturn"],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"sp_spec_erf",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "z")],
|
|
|
|
"erf",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"sp_spec_erfc",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"erfc",
|
|
|
|
&[],
|
|
|
|
),
|
2023-10-10 18:19:36 +08:00
|
|
|
create_fn_by_codegen(
|
2023-10-06 17:48:31 +08:00
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"sp_spec_gamma",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "z")],
|
2023-10-10 18:19:36 +08:00
|
|
|
Box::new(|ctx, _, fun, args, generator| {
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
|
|
|
|
let z_ty = fun.0.args[0].ty;
|
|
|
|
let z_val = args[0].1.clone()
|
|
|
|
.to_basic_value_enum(ctx, generator, z_ty)?;
|
|
|
|
|
|
|
|
assert!(ctx.unifier.unioned(z_ty, float));
|
|
|
|
|
2023-11-06 12:57:23 +08:00
|
|
|
Ok(Some(call_gamma(ctx, z_val.into_float_value()).into()))
|
|
|
|
}
|
|
|
|
)),
|
2023-10-10 18:19:36 +08:00
|
|
|
create_fn_by_codegen(
|
2023-10-06 17:48:31 +08:00
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"sp_spec_gammaln",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
2023-10-10 18:19:36 +08:00
|
|
|
Box::new(|ctx, _, fun, args, generator| {
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
|
2023-11-06 12:57:23 +08:00
|
|
|
let z_ty = fun.0.args[0].ty;
|
|
|
|
let z_val = args[0].1.clone()
|
|
|
|
.to_basic_value_enum(ctx, generator, z_ty)?;
|
2023-10-10 18:19:36 +08:00
|
|
|
|
2023-11-06 12:57:23 +08:00
|
|
|
assert!(ctx.unifier.unioned(z_ty, float));
|
2023-10-10 18:19:36 +08:00
|
|
|
|
2023-11-06 12:57:23 +08:00
|
|
|
Ok(Some(call_gammaln(ctx, z_val.into_float_value()).into()))
|
2023-10-10 18:19:36 +08:00
|
|
|
}),
|
2023-10-06 17:48:31 +08:00
|
|
|
),
|
2023-10-10 18:19:36 +08:00
|
|
|
create_fn_by_codegen(
|
2023-10-06 17:48:31 +08:00
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"sp_spec_j0",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
2023-10-10 18:19:36 +08:00
|
|
|
Box::new(|ctx, _, fun, args, generator| {
|
|
|
|
let float = ctx.primitives.float;
|
|
|
|
|
2023-11-06 12:57:23 +08:00
|
|
|
let z_ty = fun.0.args[0].ty;
|
|
|
|
let z_val = args[0].1.clone()
|
|
|
|
.to_basic_value_enum(ctx, generator, z_ty)?;
|
2023-10-10 18:19:36 +08:00
|
|
|
|
2023-11-06 12:57:23 +08:00
|
|
|
assert!(ctx.unifier.unioned(z_ty, float));
|
2023-10-10 18:19:36 +08:00
|
|
|
|
2023-11-06 12:57:23 +08:00
|
|
|
Ok(Some(call_j0(ctx, z_val.into_float_value()).into()))
|
2023-10-10 18:19:36 +08:00
|
|
|
}),
|
2023-10-06 17:48:31 +08:00
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"sp_spec_j1",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x")],
|
|
|
|
"j1",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
// Not mapped: jv/yv, libm only supports integer orders.
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_arctan2",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x1"), (float, "x2")],
|
|
|
|
"atan2",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_copysign",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x1"), (float, "x2")],
|
|
|
|
"llvm.copysign.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_fmax",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x1"), (float, "x2")],
|
|
|
|
"llvm.maxnum.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_intrinsic(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_fmin",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x1"), (float, "x2")],
|
|
|
|
"llvm.minnum.f64",
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_ldexp",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x1"), (int32, "x2")],
|
|
|
|
"ldexp",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_hypot",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x1"), (float, "x2")],
|
|
|
|
"hypot",
|
|
|
|
&[],
|
|
|
|
),
|
|
|
|
create_fn_by_extern(
|
|
|
|
primitives,
|
|
|
|
&var_map,
|
2023-11-23 13:32:08 +08:00
|
|
|
"np_nextafter",
|
2023-10-06 17:48:31 +08:00
|
|
|
float,
|
|
|
|
&[(float, "x1"), (float, "x2")],
|
|
|
|
"nextafter",
|
|
|
|
&[],
|
|
|
|
),
|
2022-03-26 15:09:15 +08:00
|
|
|
Arc::new(RwLock::new(TopLevelDef::Function {
|
|
|
|
name: "Some".into(),
|
|
|
|
simple_name: "Some".into(),
|
|
|
|
signature: primitives.1.add_ty(TypeEnum::TFunc(FunSignature {
|
|
|
|
args: vec![FuncArg { name: "n".into(), ty: option_ty_var, default_value: None }],
|
|
|
|
ret: primitives.0.option,
|
2024-03-04 23:38:52 +08:00
|
|
|
vars: VarMap::from([(option_ty_var_id, option_ty_var)]),
|
2022-03-26 15:09:15 +08:00
|
|
|
})),
|
|
|
|
var_id: vec![option_ty_var_id],
|
2023-12-08 17:43:32 +08:00
|
|
|
instance_to_symbol: HashMap::default(),
|
|
|
|
instance_to_stmt: HashMap::default(),
|
2022-03-26 15:09:15 +08:00
|
|
|
resolver: None,
|
|
|
|
codegen_callback: Some(Arc::new(GenCall::new(Box::new(
|
2022-04-08 03:26:42 +08:00
|
|
|
|ctx, _, fun, args, generator| {
|
|
|
|
let arg_ty = fun.0.args[0].ty;
|
|
|
|
let arg_val = args[0].1.clone().to_basic_value_enum(ctx, generator, arg_ty)?;
|
2023-10-03 18:02:45 +08:00
|
|
|
let alloca = generator.gen_var_alloc(ctx, arg_val.get_type(), Some("alloca_some")).unwrap();
|
2024-02-19 19:30:25 +08:00
|
|
|
ctx.builder.build_store(alloca, arg_val).unwrap();
|
2022-03-26 15:09:15 +08:00
|
|
|
Ok(Some(alloca.into()))
|
|
|
|
},
|
|
|
|
)))),
|
|
|
|
loc: None,
|
|
|
|
})),
|
2021-12-01 02:52:00 +08:00
|
|
|
];
|
2022-03-17 00:04:49 +08:00
|
|
|
|
2023-10-26 13:52:40 +08:00
|
|
|
let ast_list: Vec<Option<Stmt<()>>> =
|
2021-12-01 02:52:00 +08:00
|
|
|
(0..top_level_def_list.len()).map(|_| None).collect();
|
2023-11-28 17:37:49 +08:00
|
|
|
|
|
|
|
izip!(top_level_def_list, ast_list).collect_vec()
|
2021-12-12 05:52:22 +08:00
|
|
|
}
|