2021-08-07 17:25:14 +08:00
|
|
|
use std::{collections::HashMap, convert::TryInto, iter::once};
|
2021-08-05 14:55:23 +08:00
|
|
|
|
2021-08-07 15:06:39 +08:00
|
|
|
use crate::{
|
2021-10-17 13:02:18 +08:00
|
|
|
codegen::{
|
|
|
|
concrete_type::{ConcreteFuncArg, ConcreteTypeEnum, ConcreteTypeStore},
|
2022-01-08 22:16:55 +08:00
|
|
|
get_llvm_type,
|
2022-01-09 19:55:17 +08:00
|
|
|
irrt::*,
|
2022-02-21 18:27:46 +08:00
|
|
|
stmt::gen_raise,
|
2022-01-08 22:16:55 +08:00
|
|
|
CodeGenContext, CodeGenTask,
|
2021-10-17 13:02:18 +08:00
|
|
|
},
|
2021-11-20 19:50:25 +08:00
|
|
|
symbol_resolver::{SymbolValue, ValueEnum},
|
2021-08-24 17:14:34 +08:00
|
|
|
toplevel::{DefinitionId, TopLevelDef},
|
2021-11-10 23:38:47 +08:00
|
|
|
typecheck::typedef::{FunSignature, FuncArg, Type, TypeEnum, Unifier},
|
2021-08-07 15:06:39 +08:00
|
|
|
};
|
|
|
|
use inkwell::{
|
2022-02-21 18:27:46 +08:00
|
|
|
AddressSpace,
|
2022-03-09 22:09:36 +08:00
|
|
|
attributes::{Attribute, AttributeLoc},
|
|
|
|
types::{AnyType, BasicType, BasicTypeEnum},
|
|
|
|
values::{BasicValueEnum, FunctionValue, IntValue, PointerValue}
|
2021-08-07 15:06:39 +08:00
|
|
|
};
|
2021-08-05 14:55:23 +08:00
|
|
|
use itertools::{chain, izip, zip, Itertools};
|
2022-02-21 18:27:46 +08:00
|
|
|
use nac3parser::ast::{
|
|
|
|
self, Boolop, Comprehension, Constant, Expr, ExprKind, Location, Operator, StrRef,
|
|
|
|
};
|
2021-08-05 14:55:23 +08:00
|
|
|
|
2022-03-09 22:09:36 +08:00
|
|
|
use super::{CodeGenerator, need_sret};
|
2021-10-16 22:17:36 +08:00
|
|
|
|
2021-11-10 23:38:47 +08:00
|
|
|
pub fn get_subst_key(
|
|
|
|
unifier: &mut Unifier,
|
|
|
|
obj: Option<Type>,
|
|
|
|
fun_vars: &HashMap<u32, Type>,
|
|
|
|
filter: Option<&Vec<u32>>,
|
|
|
|
) -> String {
|
|
|
|
let mut vars = obj
|
|
|
|
.map(|ty| {
|
|
|
|
if let TypeEnum::TObj { params, .. } = &*unifier.get_ty(ty) {
|
2022-02-21 17:52:34 +08:00
|
|
|
params.clone()
|
2021-11-10 23:38:47 +08:00
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.unwrap_or_default();
|
|
|
|
vars.extend(fun_vars.iter());
|
2021-12-27 22:55:51 +08:00
|
|
|
let sorted = vars.keys().filter(|id| filter.map(|v| v.contains(id)).unwrap_or(true)).sorted();
|
2021-11-10 23:38:47 +08:00
|
|
|
sorted
|
2022-02-21 18:27:46 +08:00
|
|
|
.map(|id| {
|
|
|
|
unifier.internal_stringify(
|
|
|
|
vars[id],
|
|
|
|
&mut |id| id.to_string(),
|
|
|
|
&mut |id| id.to_string(),
|
|
|
|
&mut None,
|
|
|
|
)
|
|
|
|
})
|
2021-11-10 23:38:47 +08:00
|
|
|
.join(", ")
|
|
|
|
}
|
|
|
|
|
2021-10-24 14:52:21 +08:00
|
|
|
impl<'ctx, 'a> CodeGenContext<'ctx, 'a> {
|
|
|
|
pub fn build_gep_and_load(
|
|
|
|
&mut self,
|
|
|
|
ptr: PointerValue<'ctx>,
|
|
|
|
index: &[IntValue<'ctx>],
|
|
|
|
) -> BasicValueEnum<'ctx> {
|
|
|
|
unsafe { self.builder.build_load(self.builder.build_gep(ptr, index, "gep"), "load") }
|
2021-08-19 16:54:15 +08:00
|
|
|
}
|
|
|
|
|
2021-08-25 15:29:58 +08:00
|
|
|
fn get_subst_key(
|
|
|
|
&mut self,
|
|
|
|
obj: Option<Type>,
|
|
|
|
fun: &FunSignature,
|
|
|
|
filter: Option<&Vec<u32>>,
|
|
|
|
) -> String {
|
2021-11-10 23:38:47 +08:00
|
|
|
get_subst_key(&mut self.unifier, obj, &fun.vars, filter)
|
2021-08-07 15:06:39 +08:00
|
|
|
}
|
|
|
|
|
2021-09-22 17:19:27 +08:00
|
|
|
pub fn get_attr_index(&mut self, ty: Type, attr: StrRef) -> usize {
|
2021-08-05 14:55:23 +08:00
|
|
|
let obj_id = match &*self.unifier.get_ty(ty) {
|
|
|
|
TypeEnum::TObj { obj_id, .. } => *obj_id,
|
|
|
|
// we cannot have other types, virtual type should be handled by function calls
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2021-08-23 10:34:11 +08:00
|
|
|
let def = &self.top_level.definitions.read()[obj_id.0];
|
2021-08-05 14:55:23 +08:00
|
|
|
let index = if let TopLevelDef::Class { fields, .. } = &*def.read() {
|
|
|
|
fields.iter().find_position(|x| x.0 == attr).unwrap().0
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
|
|
|
index
|
|
|
|
}
|
|
|
|
|
2022-02-21 18:27:46 +08:00
|
|
|
pub fn gen_symbol_val(
|
|
|
|
&mut self,
|
|
|
|
generator: &mut dyn CodeGenerator,
|
|
|
|
val: &SymbolValue,
|
2022-03-30 03:14:21 +08:00
|
|
|
ty: Type,
|
2022-02-21 18:27:46 +08:00
|
|
|
) -> BasicValueEnum<'ctx> {
|
2021-08-07 17:31:01 +08:00
|
|
|
match val {
|
|
|
|
SymbolValue::I32(v) => self.ctx.i32_type().const_int(*v as u64, true).into(),
|
|
|
|
SymbolValue::I64(v) => self.ctx.i64_type().const_int(*v as u64, true).into(),
|
2022-03-05 03:45:09 +08:00
|
|
|
SymbolValue::U32(v) => self.ctx.i32_type().const_int(*v as u64, false).into(),
|
|
|
|
SymbolValue::U64(v) => self.ctx.i64_type().const_int(*v as u64, false).into(),
|
2021-08-07 17:31:01 +08:00
|
|
|
SymbolValue::Bool(v) => self.ctx.bool_type().const_int(*v as u64, true).into(),
|
|
|
|
SymbolValue::Double(v) => self.ctx.f64_type().const_float(*v).into(),
|
2022-02-12 21:09:23 +08:00
|
|
|
SymbolValue::Str(v) => {
|
2022-02-21 18:27:46 +08:00
|
|
|
let str_ptr =
|
|
|
|
self.builder.build_global_string_ptr(v, "const").as_pointer_value().into();
|
2022-02-12 21:09:23 +08:00
|
|
|
let size = generator.get_size_type(self.ctx).const_int(v.len() as u64, false);
|
|
|
|
let ty = self.get_llvm_type(generator, self.primitives.str).into_struct_type();
|
|
|
|
ty.const_named_struct(&[str_ptr, size.into()]).into()
|
|
|
|
}
|
2021-08-07 17:31:01 +08:00
|
|
|
SymbolValue::Tuple(ls) => {
|
2022-03-30 03:14:21 +08:00
|
|
|
let vals = ls.iter().map(|v| self.gen_symbol_val(generator, v, ty)).collect_vec();
|
2021-08-07 17:41:48 +08:00
|
|
|
let fields = vals.iter().map(|v| v.get_type()).collect_vec();
|
|
|
|
let ty = self.ctx.struct_type(&fields, false);
|
|
|
|
let ptr = self.builder.build_alloca(ty, "tuple");
|
|
|
|
let zero = self.ctx.i32_type().const_zero();
|
|
|
|
unsafe {
|
|
|
|
for (i, val) in vals.into_iter().enumerate() {
|
2021-08-19 16:54:15 +08:00
|
|
|
let p = self.builder.build_in_bounds_gep(
|
|
|
|
ptr,
|
|
|
|
&[zero, self.ctx.i32_type().const_int(i as u64, false)],
|
|
|
|
"elemptr",
|
|
|
|
);
|
2021-08-07 17:41:48 +08:00
|
|
|
self.builder.build_store(p, val);
|
|
|
|
}
|
|
|
|
}
|
2022-01-20 04:14:22 +08:00
|
|
|
self.builder.build_load(ptr, "tup_val")
|
2021-08-07 17:31:01 +08:00
|
|
|
}
|
2022-03-30 03:14:21 +08:00
|
|
|
SymbolValue::OptionSome(v) => {
|
|
|
|
let ty = match self.unifier.get_ty_immutable(ty).as_ref() {
|
|
|
|
TypeEnum::TObj { obj_id, params, .. }
|
|
|
|
if *obj_id == self.primitives.option.get_obj_id(&self.unifier) =>
|
|
|
|
{
|
|
|
|
*params.iter().next().unwrap().1
|
|
|
|
}
|
|
|
|
_ => unreachable!("must be option type"),
|
|
|
|
};
|
|
|
|
let val = self.gen_symbol_val(generator, v, ty);
|
|
|
|
let ptr = self.builder.build_alloca(val.get_type(), "default_opt_some");
|
|
|
|
self.builder.build_store(ptr, val);
|
|
|
|
ptr.into()
|
|
|
|
}
|
|
|
|
SymbolValue::OptionNone => {
|
|
|
|
let ty = match self.unifier.get_ty_immutable(ty).as_ref() {
|
|
|
|
TypeEnum::TObj { obj_id, params, .. }
|
|
|
|
if *obj_id == self.primitives.option.get_obj_id(&self.unifier) =>
|
|
|
|
{
|
|
|
|
*params.iter().next().unwrap().1
|
|
|
|
}
|
|
|
|
_ => unreachable!("must be option type"),
|
|
|
|
};
|
|
|
|
let actual_ptr_type =
|
|
|
|
self.get_llvm_type(generator, ty).ptr_type(AddressSpace::Generic);
|
|
|
|
self.builder.build_bitcast(
|
|
|
|
self.ctx.i8_type().ptr_type(AddressSpace::Generic).const_null(),
|
|
|
|
actual_ptr_type,
|
|
|
|
"default_opt_none",
|
|
|
|
)
|
|
|
|
}
|
2021-08-07 17:31:01 +08:00
|
|
|
}
|
2021-08-07 17:25:14 +08:00
|
|
|
}
|
|
|
|
|
2021-12-27 22:55:51 +08:00
|
|
|
pub fn get_llvm_type(
|
|
|
|
&mut self,
|
|
|
|
generator: &mut dyn CodeGenerator,
|
|
|
|
ty: Type,
|
|
|
|
) -> BasicTypeEnum<'ctx> {
|
|
|
|
get_llvm_type(
|
|
|
|
self.ctx,
|
|
|
|
generator,
|
|
|
|
&mut self.unifier,
|
|
|
|
self.top_level,
|
|
|
|
&mut self.type_cache,
|
2022-03-26 15:09:15 +08:00
|
|
|
&self.primitives,
|
2021-12-27 22:55:51 +08:00
|
|
|
ty,
|
|
|
|
)
|
2021-08-11 14:37:26 +08:00
|
|
|
}
|
|
|
|
|
2022-02-21 18:27:46 +08:00
|
|
|
pub fn gen_const(
|
|
|
|
&mut self,
|
|
|
|
generator: &mut dyn CodeGenerator,
|
|
|
|
value: &Constant,
|
|
|
|
ty: Type,
|
|
|
|
) -> BasicValueEnum<'ctx> {
|
2021-08-05 14:55:23 +08:00
|
|
|
match value {
|
|
|
|
Constant::Bool(v) => {
|
2021-08-07 15:06:39 +08:00
|
|
|
assert!(self.unifier.unioned(ty, self.primitives.bool));
|
2021-08-05 14:55:23 +08:00
|
|
|
let ty = self.ctx.bool_type();
|
|
|
|
ty.const_int(if *v { 1 } else { 0 }, false).into()
|
|
|
|
}
|
2022-03-08 02:30:04 +08:00
|
|
|
Constant::Int(val) => {
|
2022-03-05 03:45:09 +08:00
|
|
|
let ty = if self.unifier.unioned(ty, self.primitives.int32)
|
|
|
|
|| self.unifier.unioned(ty, self.primitives.uint32)
|
|
|
|
{
|
2021-08-05 14:55:23 +08:00
|
|
|
self.ctx.i32_type()
|
2022-03-05 03:45:09 +08:00
|
|
|
} else if self.unifier.unioned(ty, self.primitives.int64)
|
|
|
|
|| self.unifier.unioned(ty, self.primitives.uint64)
|
|
|
|
{
|
2021-08-05 14:55:23 +08:00
|
|
|
self.ctx.i64_type()
|
|
|
|
} else {
|
|
|
|
unreachable!();
|
|
|
|
};
|
2021-12-26 00:23:54 +08:00
|
|
|
ty.const_int(*val as u64, false).into()
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
|
|
|
Constant::Float(v) => {
|
2021-08-07 15:06:39 +08:00
|
|
|
assert!(self.unifier.unioned(ty, self.primitives.float));
|
2021-08-05 14:55:23 +08:00
|
|
|
let ty = self.ctx.f64_type();
|
|
|
|
ty.const_float(*v).into()
|
|
|
|
}
|
|
|
|
Constant::Tuple(v) => {
|
|
|
|
let ty = self.unifier.get_ty(ty);
|
|
|
|
let types =
|
|
|
|
if let TypeEnum::TTuple { ty } = &*ty { ty.clone() } else { unreachable!() };
|
|
|
|
let values = zip(types.into_iter(), v.iter())
|
2022-02-12 21:09:23 +08:00
|
|
|
.map(|(ty, v)| self.gen_const(generator, v, ty))
|
2021-08-05 14:55:23 +08:00
|
|
|
.collect_vec();
|
|
|
|
let types = values.iter().map(BasicValueEnum::get_type).collect_vec();
|
|
|
|
let ty = self.ctx.struct_type(&types, false);
|
|
|
|
ty.const_named_struct(&values).into()
|
|
|
|
}
|
2021-11-02 23:22:37 +08:00
|
|
|
Constant::Str(v) => {
|
|
|
|
assert!(self.unifier.unioned(ty, self.primitives.str));
|
2022-02-12 21:09:23 +08:00
|
|
|
if let Some(v) = self.const_strings.get(v) {
|
|
|
|
*v
|
|
|
|
} else {
|
2022-02-21 18:27:46 +08:00
|
|
|
let str_ptr =
|
|
|
|
self.builder.build_global_string_ptr(v, "const").as_pointer_value().into();
|
2022-02-12 21:09:23 +08:00
|
|
|
let size = generator.get_size_type(self.ctx).const_int(v.len() as u64, false);
|
|
|
|
let ty = self.get_llvm_type(generator, self.primitives.str);
|
2022-02-21 18:27:46 +08:00
|
|
|
let val =
|
|
|
|
ty.into_struct_type().const_named_struct(&[str_ptr, size.into()]).into();
|
2022-02-12 21:09:23 +08:00
|
|
|
self.const_strings.insert(v.to_string(), val);
|
|
|
|
val
|
|
|
|
}
|
2021-11-02 23:22:37 +08:00
|
|
|
}
|
2021-08-07 17:25:14 +08:00
|
|
|
_ => unreachable!(),
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 01:44:12 +08:00
|
|
|
pub fn gen_int_ops(
|
2021-08-05 14:55:23 +08:00
|
|
|
&mut self,
|
|
|
|
op: &Operator,
|
|
|
|
lhs: BasicValueEnum<'ctx>,
|
|
|
|
rhs: BasicValueEnum<'ctx>,
|
2022-03-05 03:45:09 +08:00
|
|
|
signed: bool
|
2021-08-05 14:55:23 +08:00
|
|
|
) -> BasicValueEnum<'ctx> {
|
|
|
|
let (lhs, rhs) =
|
|
|
|
if let (BasicValueEnum::IntValue(lhs), BasicValueEnum::IntValue(rhs)) = (lhs, rhs) {
|
|
|
|
(lhs, rhs)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
2022-03-05 03:45:09 +08:00
|
|
|
let float = self.ctx.f64_type();
|
|
|
|
match (op, signed) {
|
|
|
|
(Operator::Add, _) => self.builder.build_int_add(lhs, rhs, "add").into(),
|
|
|
|
(Operator::Sub, _) => self.builder.build_int_sub(lhs, rhs, "sub").into(),
|
|
|
|
(Operator::Mult, _) => self.builder.build_int_mul(lhs, rhs, "mul").into(),
|
|
|
|
(Operator::Div, true) => {
|
2021-08-05 14:55:23 +08:00
|
|
|
let left = self.builder.build_signed_int_to_float(lhs, float, "i2f");
|
|
|
|
let right = self.builder.build_signed_int_to_float(rhs, float, "i2f");
|
|
|
|
self.builder.build_float_div(left, right, "fdiv").into()
|
|
|
|
}
|
2022-03-05 03:45:09 +08:00
|
|
|
(Operator::Div, false) => {
|
|
|
|
let left = self.builder.build_unsigned_int_to_float(lhs, float, "i2f");
|
|
|
|
let right = self.builder.build_unsigned_int_to_float(rhs, float, "i2f");
|
|
|
|
self.builder.build_float_div(left, right, "fdiv").into()
|
|
|
|
}
|
|
|
|
(Operator::Mod, true) => self.builder.build_int_signed_rem(lhs, rhs, "mod").into(),
|
|
|
|
(Operator::Mod, false) => self.builder.build_int_unsigned_rem(lhs, rhs, "mod").into(),
|
|
|
|
(Operator::BitOr, _) => self.builder.build_or(lhs, rhs, "or").into(),
|
|
|
|
(Operator::BitXor, _) => self.builder.build_xor(lhs, rhs, "xor").into(),
|
|
|
|
(Operator::BitAnd, _) => self.builder.build_and(lhs, rhs, "and").into(),
|
|
|
|
(Operator::LShift, _) => self.builder.build_left_shift(lhs, rhs, "lshift").into(),
|
|
|
|
(Operator::RShift, _) => self.builder.build_right_shift(lhs, rhs, true, "rshift").into(),
|
|
|
|
(Operator::FloorDiv, true) => self.builder.build_int_signed_div(lhs, rhs, "floordiv").into(),
|
|
|
|
(Operator::FloorDiv, false) => self.builder.build_int_unsigned_div(lhs, rhs, "floordiv").into(),
|
|
|
|
(Operator::Pow, s) => integer_power(self, lhs, rhs, s).into(),
|
2021-08-05 14:55:23 +08:00
|
|
|
// special implementation?
|
2022-03-05 03:45:09 +08:00
|
|
|
(Operator::MatMult, _) => unreachable!(),
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 01:44:12 +08:00
|
|
|
pub fn gen_float_ops(
|
2021-08-05 14:55:23 +08:00
|
|
|
&mut self,
|
|
|
|
op: &Operator,
|
|
|
|
lhs: BasicValueEnum<'ctx>,
|
|
|
|
rhs: BasicValueEnum<'ctx>,
|
|
|
|
) -> BasicValueEnum<'ctx> {
|
|
|
|
let (lhs, rhs) = if let (BasicValueEnum::FloatValue(lhs), BasicValueEnum::FloatValue(rhs)) =
|
|
|
|
(lhs, rhs)
|
|
|
|
{
|
|
|
|
(lhs, rhs)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
2022-01-08 22:16:55 +08:00
|
|
|
let float = self.ctx.f64_type();
|
2021-08-05 14:55:23 +08:00
|
|
|
match op {
|
|
|
|
Operator::Add => self.builder.build_float_add(lhs, rhs, "fadd").into(),
|
|
|
|
Operator::Sub => self.builder.build_float_sub(lhs, rhs, "fsub").into(),
|
|
|
|
Operator::Mult => self.builder.build_float_mul(lhs, rhs, "fmul").into(),
|
|
|
|
Operator::Div => self.builder.build_float_div(lhs, rhs, "fdiv").into(),
|
|
|
|
Operator::Mod => self.builder.build_float_rem(lhs, rhs, "fmod").into(),
|
|
|
|
Operator::FloorDiv => {
|
|
|
|
let div = self.builder.build_float_div(lhs, rhs, "fdiv");
|
|
|
|
let floor_intrinsic =
|
|
|
|
self.module.get_function("llvm.floor.f64").unwrap_or_else(|| {
|
|
|
|
let fn_type = float.fn_type(&[float.into()], false);
|
|
|
|
self.module.add_function("llvm.floor.f64", fn_type, None)
|
|
|
|
});
|
|
|
|
self.builder
|
|
|
|
.build_call(floor_intrinsic, &[div.into()], "floor")
|
|
|
|
.try_as_basic_value()
|
|
|
|
.left()
|
|
|
|
.unwrap()
|
|
|
|
}
|
2022-01-08 22:16:55 +08:00
|
|
|
Operator::Pow => {
|
|
|
|
let pow_intrinsic = self.module.get_function("llvm.pow.f64").unwrap_or_else(|| {
|
|
|
|
let fn_type = float.fn_type(&[float.into(), float.into()], false);
|
|
|
|
self.module.add_function("llvm.pow.f64", fn_type, None)
|
|
|
|
});
|
|
|
|
self.builder
|
|
|
|
.build_call(pow_intrinsic, &[lhs.into(), rhs.into()], "f_pow")
|
|
|
|
.try_as_basic_value()
|
|
|
|
.unwrap_left()
|
|
|
|
}
|
2021-08-05 14:55:23 +08:00
|
|
|
// special implementation?
|
|
|
|
_ => unimplemented!(),
|
|
|
|
}
|
|
|
|
}
|
2022-02-12 21:13:16 +08:00
|
|
|
|
|
|
|
pub fn build_call_or_invoke(
|
|
|
|
&self,
|
|
|
|
fun: FunctionValue<'ctx>,
|
|
|
|
params: &[BasicValueEnum<'ctx>],
|
2022-02-21 18:27:46 +08:00
|
|
|
call_name: &str,
|
2022-02-12 21:13:16 +08:00
|
|
|
) -> Option<BasicValueEnum<'ctx>> {
|
2022-03-09 22:09:36 +08:00
|
|
|
let mut loc_params: Vec<BasicValueEnum<'ctx>> = Vec::new();
|
|
|
|
let mut return_slot = None;
|
|
|
|
if fun.count_params() > 0 {
|
|
|
|
let sret_id = Attribute::get_named_enum_kind_id("sret");
|
|
|
|
let byval_id = Attribute::get_named_enum_kind_id("byval");
|
|
|
|
|
|
|
|
let offset = if fun.get_enum_attribute(AttributeLoc::Param(0), sret_id).is_some() {
|
|
|
|
return_slot = Some(self.builder.build_alloca(fun.get_type().get_param_types()[0]
|
|
|
|
.into_pointer_type().get_element_type().into_struct_type(), call_name));
|
|
|
|
loc_params.push((*return_slot.as_ref().unwrap()).into());
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
for (i, param) in params.iter().enumerate() {
|
|
|
|
if fun.get_enum_attribute(AttributeLoc::Param((i + offset) as u32), byval_id).is_some() {
|
|
|
|
// lazy update
|
|
|
|
if loc_params.is_empty() {
|
|
|
|
loc_params.extend(params[0..i+offset].iter().copied());
|
|
|
|
}
|
|
|
|
let slot = self.builder.build_alloca(param.get_type(), call_name);
|
|
|
|
loc_params.push(slot.into());
|
|
|
|
self.builder.build_store(slot, *param);
|
|
|
|
} else if !loc_params.is_empty() {
|
|
|
|
loc_params.push(*param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let params = if loc_params.is_empty() {
|
|
|
|
params
|
|
|
|
} else {
|
|
|
|
&loc_params
|
|
|
|
};
|
|
|
|
let result = if let Some(target) = self.unwind_target {
|
2022-02-12 21:13:16 +08:00
|
|
|
let current = self.builder.get_insert_block().unwrap().get_parent().unwrap();
|
|
|
|
let then_block = self.ctx.append_basic_block(current, &format!("after.{}", call_name));
|
2022-02-21 18:27:46 +08:00
|
|
|
let result = self
|
|
|
|
.builder
|
|
|
|
.build_invoke(fun, params, then_block, target, call_name)
|
|
|
|
.try_as_basic_value()
|
|
|
|
.left();
|
2022-02-12 21:13:16 +08:00
|
|
|
self.builder.position_at_end(then_block);
|
|
|
|
result
|
|
|
|
} else {
|
|
|
|
let param: Vec<_> = params.iter().map(|v| (*v).into()).collect();
|
|
|
|
self.builder.build_call(fun, ¶m, call_name).try_as_basic_value().left()
|
2022-03-09 22:09:36 +08:00
|
|
|
};
|
|
|
|
if let Some(slot) = return_slot {
|
|
|
|
Some(self.builder.build_load(slot, call_name))
|
|
|
|
} else {
|
|
|
|
result
|
2022-02-12 21:13:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-25 22:42:01 +08:00
|
|
|
pub fn gen_string<S: Into<String>>(
|
2022-02-12 21:09:23 +08:00
|
|
|
&mut self,
|
2022-03-25 22:42:01 +08:00
|
|
|
generator: &mut dyn CodeGenerator,
|
2022-02-21 18:27:46 +08:00
|
|
|
s: S,
|
2022-02-12 21:09:23 +08:00
|
|
|
) -> BasicValueEnum<'ctx> {
|
|
|
|
self.gen_const(generator, &nac3parser::ast::Constant::Str(s.into()), self.primitives.str)
|
|
|
|
}
|
|
|
|
|
2022-02-12 21:19:11 +08:00
|
|
|
pub fn raise_exn<G: CodeGenerator>(
|
|
|
|
&mut self,
|
|
|
|
generator: &mut G,
|
|
|
|
name: &str,
|
|
|
|
msg: BasicValueEnum<'ctx>,
|
|
|
|
params: [Option<IntValue<'ctx>>; 3],
|
2022-02-21 18:27:46 +08:00
|
|
|
loc: Location,
|
2022-02-12 21:19:11 +08:00
|
|
|
) {
|
|
|
|
let ty = self.get_llvm_type(generator, self.primitives.exception).into_pointer_type();
|
|
|
|
let zelf_ty: BasicTypeEnum = ty.get_element_type().into_struct_type().into();
|
|
|
|
let zelf = self.builder.build_alloca(zelf_ty, "alloca");
|
|
|
|
let int32 = self.ctx.i32_type();
|
|
|
|
let zero = int32.const_zero();
|
|
|
|
unsafe {
|
|
|
|
let id_ptr = self.builder.build_in_bounds_gep(zelf, &[zero, zero], "exn.id");
|
|
|
|
let id = self.resolver.get_string_id(name);
|
|
|
|
self.builder.build_store(id_ptr, int32.const_int(id as u64, false));
|
|
|
|
let ptr = self.builder.build_in_bounds_gep(
|
2022-02-21 18:27:46 +08:00
|
|
|
zelf,
|
|
|
|
&[zero, int32.const_int(5, false)],
|
|
|
|
"exn.msg",
|
|
|
|
);
|
2022-02-12 21:19:11 +08:00
|
|
|
self.builder.build_store(ptr, msg);
|
|
|
|
let i64_zero = self.ctx.i64_type().const_zero();
|
|
|
|
for (i, attr_ind) in [6, 7, 8].iter().enumerate() {
|
|
|
|
let ptr = self.builder.build_in_bounds_gep(
|
2022-02-21 18:27:46 +08:00
|
|
|
zelf,
|
|
|
|
&[zero, int32.const_int(*attr_ind, false)],
|
|
|
|
"exn.param",
|
|
|
|
);
|
|
|
|
let val = params[i].map_or(i64_zero, |v| {
|
|
|
|
self.builder.build_int_s_extend(v, self.ctx.i64_type(), "sext")
|
|
|
|
});
|
2022-02-12 21:19:11 +08:00
|
|
|
self.builder.build_store(ptr, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gen_raise(generator, self, Some(&zelf.into()), loc);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn make_assert<G: CodeGenerator>(
|
|
|
|
&mut self,
|
|
|
|
generator: &mut G,
|
|
|
|
cond: IntValue<'ctx>,
|
|
|
|
err_name: &str,
|
|
|
|
err_msg: &str,
|
|
|
|
params: [Option<IntValue<'ctx>>; 3],
|
2022-02-21 18:27:46 +08:00
|
|
|
loc: Location,
|
2022-03-29 00:13:47 +08:00
|
|
|
) {
|
|
|
|
let err_msg = self.gen_string(generator, err_msg);
|
|
|
|
self.make_assert_impl(generator, cond, err_name, err_msg, params, loc)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn make_assert_impl<G: CodeGenerator>(
|
|
|
|
&mut self,
|
|
|
|
generator: &mut G,
|
|
|
|
cond: IntValue<'ctx>,
|
|
|
|
err_name: &str,
|
|
|
|
err_msg: BasicValueEnum<'ctx>,
|
|
|
|
params: [Option<IntValue<'ctx>>; 3],
|
|
|
|
loc: Location,
|
2022-02-12 21:19:11 +08:00
|
|
|
) {
|
|
|
|
let i1 = self.ctx.bool_type();
|
|
|
|
let i1_true = i1.const_all_ones();
|
|
|
|
let expect_fun = self.module.get_function("llvm.expect.i1").unwrap_or_else(|| {
|
2022-02-21 18:27:46 +08:00
|
|
|
self.module.add_function(
|
|
|
|
"llvm.expect",
|
|
|
|
i1.fn_type(&[i1.into(), i1.into()], false),
|
|
|
|
None,
|
|
|
|
)
|
2022-02-12 21:19:11 +08:00
|
|
|
});
|
|
|
|
// we assume that the condition is most probably true, so the normal path is the most
|
|
|
|
// probable path
|
|
|
|
// even if this assumption is violated, it does not matter as exception unwinding is
|
|
|
|
// slow anyway...
|
2022-02-21 18:27:46 +08:00
|
|
|
let cond = self
|
|
|
|
.builder
|
|
|
|
.build_call(expect_fun, &[cond.into(), i1_true.into()], "expect")
|
|
|
|
.try_as_basic_value()
|
|
|
|
.left()
|
|
|
|
.unwrap()
|
|
|
|
.into_int_value();
|
2022-02-12 21:19:11 +08:00
|
|
|
let current_fun = self.builder.get_insert_block().unwrap().get_parent().unwrap();
|
|
|
|
let then_block = self.ctx.append_basic_block(current_fun, "succ");
|
|
|
|
let exn_block = self.ctx.append_basic_block(current_fun, "fail");
|
|
|
|
self.builder.build_conditional_branch(cond, then_block, exn_block);
|
|
|
|
self.builder.position_at_end(exn_block);
|
|
|
|
self.raise_exn(generator, err_name, err_msg, params, loc);
|
|
|
|
self.builder.position_at_end(then_block);
|
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
2021-08-05 14:55:23 +08:00
|
|
|
|
2021-12-27 22:55:51 +08:00
|
|
|
pub fn gen_constructor<'ctx, 'a, G: CodeGenerator>(
|
2021-10-16 22:17:36 +08:00
|
|
|
generator: &mut G,
|
|
|
|
ctx: &mut CodeGenContext<'ctx, 'a>,
|
|
|
|
signature: &FunSignature,
|
|
|
|
def: &TopLevelDef,
|
2021-11-20 19:50:25 +08:00
|
|
|
params: Vec<(Option<StrRef>, ValueEnum<'ctx>)>,
|
2022-02-21 17:52:34 +08:00
|
|
|
) -> Result<BasicValueEnum<'ctx>, String> {
|
2021-10-16 22:17:36 +08:00
|
|
|
match def {
|
|
|
|
TopLevelDef::Class { methods, .. } => {
|
|
|
|
// TODO: what about other fields that require alloca?
|
|
|
|
let mut fun_id = None;
|
|
|
|
for (name, _, id) in methods.iter() {
|
|
|
|
if name == &"__init__".into() {
|
|
|
|
fun_id = Some(*id);
|
|
|
|
}
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
2021-12-27 22:55:51 +08:00
|
|
|
let ty = ctx.get_llvm_type(generator, signature.ret).into_pointer_type();
|
2021-10-16 22:17:36 +08:00
|
|
|
let zelf_ty: BasicTypeEnum = ty.get_element_type().try_into().unwrap();
|
2021-11-20 19:50:25 +08:00
|
|
|
let zelf: BasicValueEnum<'ctx> = ctx.builder.build_alloca(zelf_ty, "alloca").into();
|
2021-10-16 22:17:36 +08:00
|
|
|
// call `__init__` if there is one
|
|
|
|
if let Some(fun_id) = fun_id {
|
|
|
|
let mut sign = signature.clone();
|
|
|
|
sign.ret = ctx.primitives.none;
|
2021-11-20 19:50:25 +08:00
|
|
|
generator.gen_call(
|
|
|
|
ctx,
|
|
|
|
Some((signature.ret, zelf.into())),
|
|
|
|
(&sign, fun_id),
|
|
|
|
params,
|
2022-02-21 17:52:34 +08:00
|
|
|
)?;
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(zelf)
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn gen_func_instance<'ctx, 'a>(
|
|
|
|
ctx: &mut CodeGenContext<'ctx, 'a>,
|
2021-11-20 19:50:25 +08:00
|
|
|
obj: Option<(Type, ValueEnum<'ctx>)>,
|
2021-10-16 22:17:36 +08:00
|
|
|
fun: (&FunSignature, &mut TopLevelDef, String),
|
2021-11-20 19:50:25 +08:00
|
|
|
id: usize,
|
2022-02-21 17:52:34 +08:00
|
|
|
) -> Result<String, String> {
|
2021-10-16 22:17:36 +08:00
|
|
|
if let (
|
|
|
|
sign,
|
|
|
|
TopLevelDef::Function {
|
|
|
|
name, instance_to_symbol, instance_to_stmt, var_id, resolver, ..
|
|
|
|
},
|
|
|
|
key,
|
|
|
|
) = fun
|
|
|
|
{
|
2022-02-21 17:52:34 +08:00
|
|
|
if let Some(sym) = instance_to_symbol.get(&key) {
|
|
|
|
return Ok(sym.clone());
|
|
|
|
}
|
|
|
|
let symbol = format!("{}.{}", name, instance_to_symbol.len());
|
2022-02-21 18:27:46 +08:00
|
|
|
instance_to_symbol.insert(key, symbol.clone());
|
2022-03-24 21:29:46 +08:00
|
|
|
let mut filter = var_id.clone();
|
|
|
|
if let Some((obj_ty, _)) = &obj {
|
|
|
|
if let TypeEnum::TObj { params, .. } = &*ctx.unifier.get_ty(*obj_ty) {
|
|
|
|
filter.extend(params.keys());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let key = ctx.get_subst_key(obj.as_ref().map(|a| a.0), sign, Some(&filter));
|
2022-02-21 17:52:34 +08:00
|
|
|
let instance = instance_to_stmt.get(&key).unwrap();
|
2021-10-16 22:17:36 +08:00
|
|
|
|
2022-02-21 17:52:34 +08:00
|
|
|
let mut store = ConcreteTypeStore::new();
|
|
|
|
let mut cache = HashMap::new();
|
2021-10-16 22:17:36 +08:00
|
|
|
|
2022-02-21 17:52:34 +08:00
|
|
|
let subst = sign
|
|
|
|
.vars
|
|
|
|
.iter()
|
|
|
|
.map(|(id, ty)| {
|
|
|
|
(
|
|
|
|
*instance.subst.get(id).unwrap(),
|
|
|
|
store.from_unifier_type(&mut ctx.unifier, &ctx.primitives, *ty, &mut cache),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect();
|
2021-10-16 22:17:36 +08:00
|
|
|
|
2022-02-21 17:52:34 +08:00
|
|
|
let mut signature =
|
|
|
|
store.from_signature(&mut ctx.unifier, &ctx.primitives, sign, &mut cache);
|
2021-10-16 22:17:36 +08:00
|
|
|
|
2022-02-21 17:52:34 +08:00
|
|
|
if let Some(obj) = &obj {
|
|
|
|
let zelf =
|
|
|
|
store.from_unifier_type(&mut ctx.unifier, &ctx.primitives, obj.0, &mut cache);
|
|
|
|
if let ConcreteTypeEnum::TFunc { args, .. } = &mut signature {
|
|
|
|
args.insert(
|
|
|
|
0,
|
|
|
|
ConcreteFuncArg { name: "self".into(), ty: zelf, default_value: None },
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
2022-02-21 17:52:34 +08:00
|
|
|
}
|
|
|
|
let signature = store.add_cty(signature);
|
2021-10-16 22:17:36 +08:00
|
|
|
|
2022-02-21 17:52:34 +08:00
|
|
|
ctx.registry.add_task(CodeGenTask {
|
|
|
|
symbol_name: symbol.clone(),
|
|
|
|
body: instance.body.clone(),
|
|
|
|
resolver: resolver.as_ref().unwrap().clone(),
|
|
|
|
calls: instance.calls.clone(),
|
|
|
|
subst,
|
|
|
|
signature,
|
|
|
|
store,
|
|
|
|
unifier_index: instance.unifier_id,
|
|
|
|
id,
|
|
|
|
});
|
|
|
|
Ok(symbol)
|
2021-10-16 22:17:36 +08:00
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-27 22:55:51 +08:00
|
|
|
pub fn gen_call<'ctx, 'a, G: CodeGenerator>(
|
2021-10-16 22:17:36 +08:00
|
|
|
generator: &mut G,
|
|
|
|
ctx: &mut CodeGenContext<'ctx, 'a>,
|
2021-11-20 19:50:25 +08:00
|
|
|
obj: Option<(Type, ValueEnum<'ctx>)>,
|
2021-10-16 22:17:36 +08:00
|
|
|
fun: (&FunSignature, DefinitionId),
|
2021-11-20 19:50:25 +08:00
|
|
|
params: Vec<(Option<StrRef>, ValueEnum<'ctx>)>,
|
2022-02-21 17:52:34 +08:00
|
|
|
) -> Result<Option<BasicValueEnum<'ctx>>, String> {
|
2021-10-16 22:17:36 +08:00
|
|
|
let definition = ctx.top_level.definitions.read().get(fun.1 .0).cloned().unwrap();
|
2021-11-20 19:50:25 +08:00
|
|
|
let id;
|
|
|
|
let key;
|
|
|
|
let param_vals;
|
2022-03-09 22:09:36 +08:00
|
|
|
let is_extern;
|
2021-10-16 22:17:36 +08:00
|
|
|
let symbol = {
|
|
|
|
// make sure this lock guard is dropped at the end of this scope...
|
|
|
|
let def = definition.read();
|
|
|
|
match &*def {
|
2021-11-20 19:50:25 +08:00
|
|
|
TopLevelDef::Function {
|
|
|
|
instance_to_symbol,
|
|
|
|
instance_to_stmt,
|
|
|
|
codegen_callback,
|
|
|
|
..
|
|
|
|
} => {
|
2021-10-16 22:17:36 +08:00
|
|
|
if let Some(callback) = codegen_callback {
|
2022-02-12 21:00:12 +08:00
|
|
|
return callback.run(ctx, obj, fun, params, generator);
|
2021-10-06 16:07:42 +08:00
|
|
|
}
|
2022-03-09 22:09:36 +08:00
|
|
|
is_extern = instance_to_stmt.is_empty();
|
2021-11-20 19:50:25 +08:00
|
|
|
let old_key = ctx.get_subst_key(obj.as_ref().map(|a| a.0), fun.0, None);
|
|
|
|
let mut keys = fun.0.args.clone();
|
|
|
|
let mut mapping = HashMap::new();
|
|
|
|
for (key, value) in params.into_iter() {
|
|
|
|
mapping.insert(key.unwrap_or_else(|| keys.remove(0).name), value);
|
|
|
|
}
|
|
|
|
// default value handling
|
|
|
|
for k in keys.into_iter() {
|
2022-02-26 16:34:01 +08:00
|
|
|
if mapping.get(&k.name).is_some() {
|
|
|
|
continue;
|
|
|
|
}
|
2022-02-21 18:27:46 +08:00
|
|
|
mapping.insert(
|
|
|
|
k.name,
|
2022-03-30 03:14:21 +08:00
|
|
|
ctx.gen_symbol_val(generator, &k.default_value.unwrap(), k.ty).into(),
|
2022-02-21 18:27:46 +08:00
|
|
|
);
|
2021-11-20 19:50:25 +08:00
|
|
|
}
|
|
|
|
// reorder the parameters
|
|
|
|
let mut real_params =
|
|
|
|
fun.0.args.iter().map(|arg| mapping.remove(&arg.name).unwrap()).collect_vec();
|
|
|
|
if let Some(obj) = &obj {
|
|
|
|
real_params.insert(0, obj.1.clone());
|
|
|
|
}
|
|
|
|
let static_params = real_params
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.filter_map(|(i, v)| {
|
|
|
|
if let ValueEnum::Static(s) = v {
|
|
|
|
Some((i, s.clone()))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect_vec();
|
|
|
|
id = {
|
|
|
|
let ids = static_params
|
|
|
|
.iter()
|
|
|
|
.map(|(i, v)| (*i, v.get_unique_identifier()))
|
|
|
|
.collect_vec();
|
|
|
|
let mut store = ctx.static_value_store.lock();
|
|
|
|
match store.lookup.get(&ids) {
|
|
|
|
Some(index) => *index,
|
|
|
|
None => {
|
|
|
|
let length = store.store.len();
|
|
|
|
store.lookup.insert(ids, length);
|
|
|
|
store.store.push(static_params.into_iter().collect());
|
|
|
|
length
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// special case: extern functions
|
|
|
|
key = if instance_to_stmt.is_empty() {
|
|
|
|
"".to_string()
|
|
|
|
} else {
|
|
|
|
format!("{}:{}", id, old_key)
|
|
|
|
};
|
2021-12-27 22:55:51 +08:00
|
|
|
param_vals = real_params
|
|
|
|
.into_iter()
|
2022-02-12 21:00:12 +08:00
|
|
|
.map(|p| p.to_basic_value_enum(ctx, generator))
|
2022-02-28 23:09:14 +08:00
|
|
|
.collect::<Result<Vec<_>, String>>()?;
|
2022-02-21 17:52:34 +08:00
|
|
|
instance_to_symbol.get(&key).cloned().ok_or_else(|| "".into())
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
TopLevelDef::Class { .. } => {
|
2022-02-21 17:52:34 +08:00
|
|
|
return Ok(Some(generator.gen_constructor(ctx, fun.0, &*def, params)?))
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-21 17:52:34 +08:00
|
|
|
.or_else(|_: String| {
|
2021-11-20 19:50:25 +08:00
|
|
|
generator.gen_func_instance(ctx, obj.clone(), (fun.0, &mut *definition.write(), key), id)
|
2022-02-21 17:52:34 +08:00
|
|
|
})?;
|
2021-10-16 22:17:36 +08:00
|
|
|
let fun_val = ctx.module.get_function(&symbol).unwrap_or_else(|| {
|
|
|
|
let mut args = fun.0.args.clone();
|
|
|
|
if let Some(obj) = &obj {
|
|
|
|
args.insert(0, FuncArg { name: "self".into(), ty: obj.0, default_value: None });
|
|
|
|
}
|
2022-03-09 22:09:36 +08:00
|
|
|
let ret_type = if ctx.unifier.unioned(fun.0.ret, ctx.primitives.none) {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(ctx.get_llvm_type(generator, fun.0.ret))
|
|
|
|
};
|
|
|
|
let has_sret = ret_type.map_or(false, |ret_type| need_sret(ctx.ctx, ret_type));
|
|
|
|
let mut byvals = Vec::new();
|
|
|
|
let mut params =
|
|
|
|
args.iter().enumerate().map(|(i, arg)| match ctx.get_llvm_type(generator, arg.ty) {
|
|
|
|
BasicTypeEnum::StructType(ty) if is_extern => {
|
|
|
|
byvals.push((i, ty));
|
|
|
|
ty.ptr_type(AddressSpace::Generic).into()
|
|
|
|
},
|
|
|
|
x => x
|
|
|
|
}.into()).collect_vec();
|
|
|
|
if has_sret {
|
|
|
|
params.insert(0, ret_type.unwrap().ptr_type(AddressSpace::Generic).into());
|
|
|
|
}
|
|
|
|
let fun_ty = match ret_type {
|
|
|
|
Some(ret_type) if !has_sret => ret_type.fn_type(¶ms, false),
|
|
|
|
_ => ctx.ctx.void_type().fn_type(¶ms, false)
|
|
|
|
};
|
|
|
|
let fun_val = ctx.module.add_function(&symbol, fun_ty, None);
|
|
|
|
let offset = if has_sret {
|
|
|
|
fun_val.add_attribute(AttributeLoc::Param(0),
|
|
|
|
ctx.ctx.create_type_attribute(Attribute::get_named_enum_kind_id("sret"), ret_type.unwrap().as_any_type_enum()));
|
|
|
|
1
|
2021-10-16 22:17:36 +08:00
|
|
|
} else {
|
2022-03-09 22:09:36 +08:00
|
|
|
0
|
2021-10-16 22:17:36 +08:00
|
|
|
};
|
2022-03-09 22:09:36 +08:00
|
|
|
for (i, ty) in byvals {
|
|
|
|
fun_val.add_attribute(AttributeLoc::Param((i as u32) + offset),
|
|
|
|
ctx.ctx.create_type_attribute(Attribute::get_named_enum_kind_id("byval"), ty.as_any_type_enum()));
|
|
|
|
}
|
|
|
|
fun_val
|
2021-10-16 22:17:36 +08:00
|
|
|
});
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(ctx.build_call_or_invoke(fun_val, ¶m_vals, "call"))
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
|
2021-10-24 14:52:21 +08:00
|
|
|
pub fn destructure_range<'ctx, 'a>(
|
|
|
|
ctx: &mut CodeGenContext<'ctx, 'a>,
|
|
|
|
range: PointerValue<'ctx>,
|
|
|
|
) -> (IntValue<'ctx>, IntValue<'ctx>, IntValue<'ctx>) {
|
|
|
|
let int32 = ctx.ctx.i32_type();
|
|
|
|
let start = ctx
|
|
|
|
.build_gep_and_load(range, &[int32.const_zero(), int32.const_int(0, false)])
|
|
|
|
.into_int_value();
|
|
|
|
let end = ctx
|
|
|
|
.build_gep_and_load(range, &[int32.const_zero(), int32.const_int(1, false)])
|
|
|
|
.into_int_value();
|
|
|
|
let step = ctx
|
|
|
|
.build_gep_and_load(range, &[int32.const_zero(), int32.const_int(2, false)])
|
|
|
|
.into_int_value();
|
|
|
|
(start, end, step)
|
|
|
|
}
|
|
|
|
|
2021-12-27 22:55:51 +08:00
|
|
|
pub fn allocate_list<'ctx, 'a, G: CodeGenerator>(
|
|
|
|
generator: &mut G,
|
2021-10-24 14:52:21 +08:00
|
|
|
ctx: &mut CodeGenContext<'ctx, 'a>,
|
|
|
|
ty: BasicTypeEnum<'ctx>,
|
|
|
|
length: IntValue<'ctx>,
|
|
|
|
) -> PointerValue<'ctx> {
|
|
|
|
let arr_ptr = ctx.builder.build_array_alloca(ty, length, "tmparr");
|
2021-12-27 22:55:51 +08:00
|
|
|
let size_t = generator.get_size_type(ctx.ctx);
|
|
|
|
let i32_t = ctx.ctx.i32_type();
|
|
|
|
let arr_ty =
|
|
|
|
ctx.ctx.struct_type(&[ty.ptr_type(AddressSpace::Generic).into(), size_t.into()], false);
|
2021-10-24 14:52:21 +08:00
|
|
|
let zero = ctx.ctx.i32_type().const_zero();
|
|
|
|
let arr_str_ptr = ctx.builder.build_alloca(arr_ty, "tmparrstr");
|
|
|
|
unsafe {
|
2021-12-27 22:55:51 +08:00
|
|
|
let len_ptr = ctx.builder.build_in_bounds_gep(
|
2021-10-24 14:52:21 +08:00
|
|
|
arr_str_ptr,
|
2021-12-27 22:55:51 +08:00
|
|
|
&[zero, i32_t.const_int(1, false)],
|
|
|
|
"len_ptr",
|
2021-10-24 14:52:21 +08:00
|
|
|
);
|
2021-12-27 22:55:51 +08:00
|
|
|
let length = ctx.builder.build_int_z_extend(length, size_t, "zext");
|
|
|
|
ctx.builder.build_store(len_ptr, length);
|
|
|
|
let ptr_to_arr =
|
|
|
|
ctx.builder.build_in_bounds_gep(arr_str_ptr, &[zero, i32_t.const_zero()], "ptr_to_arr");
|
2021-10-24 14:52:21 +08:00
|
|
|
ctx.builder.build_store(ptr_to_arr, arr_ptr);
|
|
|
|
arr_str_ptr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-27 22:55:51 +08:00
|
|
|
pub fn gen_comprehension<'ctx, 'a, G: CodeGenerator>(
|
2021-10-24 16:53:04 +08:00
|
|
|
generator: &mut G,
|
|
|
|
ctx: &mut CodeGenContext<'ctx, 'a>,
|
|
|
|
expr: &Expr<Option<Type>>,
|
2022-02-21 17:52:34 +08:00
|
|
|
) -> Result<BasicValueEnum<'ctx>, String> {
|
2021-10-24 16:53:04 +08:00
|
|
|
if let ExprKind::ListComp { elt, generators } = &expr.node {
|
|
|
|
let current = ctx.builder.get_insert_block().unwrap().get_parent().unwrap();
|
|
|
|
let test_bb = ctx.ctx.append_basic_block(current, "test");
|
|
|
|
let body_bb = ctx.ctx.append_basic_block(current, "body");
|
|
|
|
let cont_bb = ctx.ctx.append_basic_block(current, "cont");
|
|
|
|
|
|
|
|
let Comprehension { target, iter, ifs, .. } = &generators[0];
|
2022-02-28 23:09:14 +08:00
|
|
|
let iter_val = generator.gen_expr(ctx, iter)?.unwrap().to_basic_value_enum(ctx, generator)?;
|
2021-10-24 16:53:04 +08:00
|
|
|
let int32 = ctx.ctx.i32_type();
|
2021-12-27 22:55:51 +08:00
|
|
|
let size_t = generator.get_size_type(ctx.ctx);
|
2022-01-24 19:46:00 +08:00
|
|
|
let zero_size_t = size_t.const_zero();
|
|
|
|
let zero_32 = int32.const_zero();
|
2021-10-24 16:53:04 +08:00
|
|
|
|
2022-02-21 17:52:34 +08:00
|
|
|
let index = generator.gen_var_alloc(ctx, size_t.into())?;
|
2022-01-24 19:46:00 +08:00
|
|
|
ctx.builder.build_store(index, zero_size_t);
|
2021-10-24 16:53:04 +08:00
|
|
|
|
2021-12-27 22:55:51 +08:00
|
|
|
let elem_ty = ctx.get_llvm_type(generator, elt.custom.unwrap());
|
2021-10-24 16:53:04 +08:00
|
|
|
let is_range = ctx.unifier.unioned(iter.custom.unwrap(), ctx.primitives.range);
|
|
|
|
let list;
|
|
|
|
let list_content;
|
|
|
|
|
|
|
|
if is_range {
|
|
|
|
let iter_val = iter_val.into_pointer_value();
|
|
|
|
let (start, end, step) = destructure_range(ctx, iter_val);
|
|
|
|
let diff = ctx.builder.build_int_sub(end, start, "diff");
|
|
|
|
// add 1 to the length as the value is rounded to zero
|
|
|
|
// the length may be 1 more than the actual length if the division is exact, but the
|
|
|
|
// length is a upper bound only anyway so it does not matter.
|
|
|
|
let length = ctx.builder.build_int_signed_div(diff, step, "div");
|
|
|
|
let length = ctx.builder.build_int_add(length, int32.const_int(1, false), "add1");
|
|
|
|
// in case length is non-positive
|
|
|
|
let is_valid =
|
2022-01-24 19:46:00 +08:00
|
|
|
ctx.builder.build_int_compare(inkwell::IntPredicate::SGT, length, zero_32, "check");
|
2021-10-24 16:53:04 +08:00
|
|
|
let normal = ctx.ctx.append_basic_block(current, "normal_list");
|
|
|
|
let empty = ctx.ctx.append_basic_block(current, "empty_list");
|
|
|
|
let list_init = ctx.ctx.append_basic_block(current, "list_init");
|
|
|
|
ctx.builder.build_conditional_branch(is_valid, normal, empty);
|
|
|
|
// normal: allocate a list
|
|
|
|
ctx.builder.position_at_end(normal);
|
2022-01-24 19:46:00 +08:00
|
|
|
let list_a = allocate_list(
|
|
|
|
generator,
|
|
|
|
ctx,
|
|
|
|
elem_ty,
|
|
|
|
ctx.builder.build_int_z_extend_or_bit_cast(length, size_t, "z_ext_len"),
|
|
|
|
);
|
2021-10-24 16:53:04 +08:00
|
|
|
ctx.builder.build_unconditional_branch(list_init);
|
|
|
|
ctx.builder.position_at_end(empty);
|
2022-01-24 19:46:00 +08:00
|
|
|
let list_b = allocate_list(generator, ctx, elem_ty, zero_size_t);
|
2021-10-24 16:53:04 +08:00
|
|
|
ctx.builder.build_unconditional_branch(list_init);
|
|
|
|
ctx.builder.position_at_end(list_init);
|
|
|
|
let phi = ctx.builder.build_phi(list_a.get_type(), "phi");
|
|
|
|
phi.add_incoming(&[(&list_a, normal), (&list_b, empty)]);
|
|
|
|
list = phi.as_basic_value().into_pointer_value();
|
2022-01-24 19:46:00 +08:00
|
|
|
list_content =
|
|
|
|
ctx.build_gep_and_load(list, &[zero_size_t, zero_32]).into_pointer_value();
|
2021-10-24 16:53:04 +08:00
|
|
|
|
2022-02-21 17:52:34 +08:00
|
|
|
let i = generator.gen_store_target(ctx, target)?;
|
2021-10-24 16:53:04 +08:00
|
|
|
ctx.builder.build_store(i, ctx.builder.build_int_sub(start, step, "start_init"));
|
|
|
|
ctx.builder.build_unconditional_branch(test_bb);
|
|
|
|
ctx.builder.position_at_end(test_bb);
|
2022-01-24 19:46:00 +08:00
|
|
|
let sign =
|
|
|
|
ctx.builder.build_int_compare(inkwell::IntPredicate::SGT, step, zero_32, "sign");
|
2021-10-24 16:53:04 +08:00
|
|
|
// add and test
|
|
|
|
let tmp = ctx.builder.build_int_add(
|
|
|
|
ctx.builder.build_load(i, "i").into_int_value(),
|
|
|
|
step,
|
|
|
|
"start_loop",
|
|
|
|
);
|
|
|
|
ctx.builder.build_store(i, tmp);
|
2022-01-24 19:46:00 +08:00
|
|
|
// if step > 0, continue when i < end
|
2021-10-24 16:53:04 +08:00
|
|
|
let cmp1 = ctx.builder.build_int_compare(inkwell::IntPredicate::SLT, tmp, end, "cmp1");
|
|
|
|
// if step < 0, continue when i > end
|
|
|
|
let cmp2 = ctx.builder.build_int_compare(inkwell::IntPredicate::SGT, tmp, end, "cmp2");
|
|
|
|
let pos = ctx.builder.build_and(sign, cmp1, "pos");
|
|
|
|
let neg = ctx.builder.build_and(ctx.builder.build_not(sign, "inv"), cmp2, "neg");
|
|
|
|
ctx.builder.build_conditional_branch(
|
|
|
|
ctx.builder.build_or(pos, neg, "or"),
|
|
|
|
body_bb,
|
|
|
|
cont_bb,
|
|
|
|
);
|
|
|
|
ctx.builder.position_at_end(body_bb);
|
|
|
|
} else {
|
|
|
|
let length = ctx
|
2021-12-27 22:55:51 +08:00
|
|
|
.build_gep_and_load(
|
|
|
|
iter_val.into_pointer_value(),
|
2022-01-24 19:46:00 +08:00
|
|
|
&[zero_size_t, int32.const_int(1, false)],
|
2021-12-27 22:55:51 +08:00
|
|
|
)
|
2021-10-24 16:53:04 +08:00
|
|
|
.into_int_value();
|
2021-12-27 22:55:51 +08:00
|
|
|
list = allocate_list(generator, ctx, elem_ty, length);
|
2022-01-24 19:46:00 +08:00
|
|
|
list_content =
|
|
|
|
ctx.build_gep_and_load(list, &[zero_size_t, zero_32]).into_pointer_value();
|
2022-02-21 17:52:34 +08:00
|
|
|
let counter = generator.gen_var_alloc(ctx, size_t.into())?;
|
2021-10-24 16:53:04 +08:00
|
|
|
// counter = -1
|
2022-01-24 19:46:00 +08:00
|
|
|
ctx.builder.build_store(counter, size_t.const_int(u64::max_value(), true));
|
2021-10-24 16:53:04 +08:00
|
|
|
ctx.builder.build_unconditional_branch(test_bb);
|
|
|
|
ctx.builder.position_at_end(test_bb);
|
|
|
|
let tmp = ctx.builder.build_load(counter, "i").into_int_value();
|
2021-12-27 22:55:51 +08:00
|
|
|
let tmp = ctx.builder.build_int_add(tmp, size_t.const_int(1, false), "inc");
|
2021-10-24 16:53:04 +08:00
|
|
|
ctx.builder.build_store(counter, tmp);
|
|
|
|
let cmp = ctx.builder.build_int_compare(inkwell::IntPredicate::SLT, tmp, length, "cmp");
|
|
|
|
ctx.builder.build_conditional_branch(cmp, body_bb, cont_bb);
|
|
|
|
ctx.builder.position_at_end(body_bb);
|
|
|
|
let arr_ptr = ctx
|
2022-01-24 19:46:00 +08:00
|
|
|
.build_gep_and_load(iter_val.into_pointer_value(), &[zero_size_t, zero_32])
|
2021-10-24 16:53:04 +08:00
|
|
|
.into_pointer_value();
|
|
|
|
let val = ctx.build_gep_and_load(arr_ptr, &[tmp]);
|
2022-02-21 17:52:34 +08:00
|
|
|
generator.gen_assign(ctx, target, val.into())?;
|
2021-10-24 16:53:04 +08:00
|
|
|
}
|
|
|
|
for cond in ifs.iter() {
|
2021-12-27 22:55:51 +08:00
|
|
|
let result = generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, cond)?
|
2021-12-27 22:55:51 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?
|
2021-12-27 22:55:51 +08:00
|
|
|
.into_int_value();
|
2021-10-24 16:53:04 +08:00
|
|
|
let succ = ctx.ctx.append_basic_block(current, "then");
|
|
|
|
ctx.builder.build_conditional_branch(result, succ, test_bb);
|
|
|
|
ctx.builder.position_at_end(succ);
|
|
|
|
}
|
2022-02-21 17:52:34 +08:00
|
|
|
let elem = generator.gen_expr(ctx, elt)?.unwrap();
|
2021-10-24 16:53:04 +08:00
|
|
|
let i = ctx.builder.build_load(index, "i").into_int_value();
|
|
|
|
let elem_ptr = unsafe { ctx.builder.build_gep(list_content, &[i], "elem_ptr") };
|
2022-02-28 23:09:14 +08:00
|
|
|
let val = elem.to_basic_value_enum(ctx, generator)?;
|
2021-11-20 19:50:25 +08:00
|
|
|
ctx.builder.build_store(elem_ptr, val);
|
2021-10-24 16:53:04 +08:00
|
|
|
ctx.builder
|
2021-12-27 22:55:51 +08:00
|
|
|
.build_store(index, ctx.builder.build_int_add(i, size_t.const_int(1, false), "inc"));
|
2021-10-24 16:53:04 +08:00
|
|
|
ctx.builder.build_unconditional_branch(test_bb);
|
|
|
|
ctx.builder.position_at_end(cont_bb);
|
2022-01-24 19:46:00 +08:00
|
|
|
let len_ptr = unsafe {
|
|
|
|
ctx.builder.build_gep(list, &[zero_size_t, int32.const_int(1, false)], "length")
|
|
|
|
};
|
2021-10-24 16:53:04 +08:00
|
|
|
ctx.builder.build_store(len_ptr, ctx.builder.build_load(index, "index"));
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(list.into())
|
2021-10-24 16:53:04 +08:00
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-08 22:16:55 +08:00
|
|
|
pub fn gen_binop_expr<'ctx, 'a, G: CodeGenerator>(
|
|
|
|
generator: &mut G,
|
|
|
|
ctx: &mut CodeGenContext<'ctx, 'a>,
|
|
|
|
left: &Expr<Option<Type>>,
|
|
|
|
op: &Operator,
|
|
|
|
right: &Expr<Option<Type>>,
|
2022-02-21 17:52:34 +08:00
|
|
|
) -> Result<ValueEnum<'ctx>, String> {
|
2022-01-08 22:16:55 +08:00
|
|
|
let ty1 = ctx.unifier.get_representative(left.custom.unwrap());
|
|
|
|
let ty2 = ctx.unifier.get_representative(right.custom.unwrap());
|
2022-02-28 23:09:14 +08:00
|
|
|
let left = generator.gen_expr(ctx, left)?.unwrap().to_basic_value_enum(ctx, generator)?;
|
|
|
|
let right = generator.gen_expr(ctx, right)?.unwrap().to_basic_value_enum(ctx, generator)?;
|
2022-01-08 22:16:55 +08:00
|
|
|
|
|
|
|
// we can directly compare the types, because we've got their representatives
|
|
|
|
// which would be unchanged until further unification, which we would never do
|
|
|
|
// when doing code generation for function instances
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(if ty1 == ty2 && [ctx.primitives.int32, ctx.primitives.int64].contains(&ty1) {
|
2022-03-05 03:45:09 +08:00
|
|
|
ctx.gen_int_ops(op, left, right, true)
|
|
|
|
} else if ty1 == ty2 && [ctx.primitives.uint32, ctx.primitives.uint64].contains(&ty1) {
|
|
|
|
ctx.gen_int_ops(op, left, right, false)
|
2022-01-08 22:16:55 +08:00
|
|
|
} else if ty1 == ty2 && ctx.primitives.float == ty1 {
|
|
|
|
ctx.gen_float_ops(op, left, right)
|
|
|
|
} else if ty1 == ctx.primitives.float && ty2 == ctx.primitives.int32 {
|
|
|
|
// Pow is the only operator that would pass typecheck between float and int
|
|
|
|
assert!(*op == Operator::Pow);
|
|
|
|
// TODO: throw exception when rhs is out of i16 bound
|
|
|
|
// since llvm intrinsic only support to i16 for f64
|
|
|
|
let i16_t = ctx.ctx.i16_type();
|
|
|
|
let pow_intr = ctx.module.get_function("llvm.powi.f64.i16").unwrap_or_else(|| {
|
|
|
|
let f64_t = ctx.ctx.f64_type();
|
|
|
|
let ty = f64_t.fn_type(&[f64_t.into(), i16_t.into()], false);
|
|
|
|
ctx.module.add_function("llvm.powi.f64.i16", ty, None)
|
|
|
|
});
|
|
|
|
let right = ctx.builder.build_int_truncate(right.into_int_value(), i16_t, "r_pow");
|
|
|
|
ctx.builder
|
|
|
|
.build_call(pow_intr, &[left.into(), right.into()], "f_pow_i")
|
|
|
|
.try_as_basic_value()
|
|
|
|
.unwrap_left()
|
|
|
|
} else {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2022-02-21 17:52:34 +08:00
|
|
|
.into())
|
2022-01-08 22:16:55 +08:00
|
|
|
}
|
|
|
|
|
2021-12-27 22:55:51 +08:00
|
|
|
pub fn gen_expr<'ctx, 'a, G: CodeGenerator>(
|
2021-10-16 22:17:36 +08:00
|
|
|
generator: &mut G,
|
|
|
|
ctx: &mut CodeGenContext<'ctx, 'a>,
|
|
|
|
expr: &Expr<Option<Type>>,
|
2022-02-21 17:52:34 +08:00
|
|
|
) -> Result<Option<ValueEnum<'ctx>>, String> {
|
2021-10-24 14:52:21 +08:00
|
|
|
let int32 = ctx.ctx.i32_type();
|
|
|
|
let zero = int32.const_int(0, false);
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(Some(match &expr.node {
|
2021-10-16 22:17:36 +08:00
|
|
|
ExprKind::Constant { value, .. } => {
|
|
|
|
let ty = expr.custom.unwrap();
|
2022-02-12 21:13:16 +08:00
|
|
|
ctx.gen_const(generator, value, ty).into()
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
2022-03-26 15:09:15 +08:00
|
|
|
ExprKind::Name { id, .. } if id == &"none".into() => {
|
|
|
|
match (
|
|
|
|
ctx.unifier.get_ty(expr.custom.unwrap()).as_ref(),
|
|
|
|
ctx.unifier.get_ty(ctx.primitives.option).as_ref(),
|
|
|
|
) {
|
|
|
|
(
|
|
|
|
TypeEnum::TObj { obj_id, params, .. },
|
|
|
|
TypeEnum::TObj { obj_id: opt_id, .. },
|
|
|
|
) if *obj_id == *opt_id => ctx
|
|
|
|
.get_llvm_type(generator, *params.iter().next().unwrap().1)
|
|
|
|
.ptr_type(AddressSpace::Generic)
|
|
|
|
.const_null()
|
|
|
|
.into(),
|
|
|
|
_ => unreachable!("must be option type"),
|
|
|
|
}
|
|
|
|
}
|
2021-11-20 19:50:25 +08:00
|
|
|
ExprKind::Name { id, .. } => match ctx.var_assignment.get(id) {
|
|
|
|
Some((ptr, None, _)) => ctx.builder.build_load(*ptr, "load").into(),
|
|
|
|
Some((_, Some(static_value), _)) => ValueEnum::Static(static_value.clone()),
|
|
|
|
None => {
|
2021-10-16 22:17:36 +08:00
|
|
|
let resolver = ctx.resolver.clone();
|
2022-01-20 04:14:22 +08:00
|
|
|
let val = resolver.get_symbol_value(*id, ctx).unwrap();
|
2022-03-26 15:09:15 +08:00
|
|
|
// if is option, need to cast pointer to handle None
|
|
|
|
match (
|
2022-01-20 04:14:22 +08:00
|
|
|
&*ctx.unifier.get_ty(expr.custom.unwrap()),
|
2022-03-27 02:23:22 +08:00
|
|
|
val.to_basic_value_enum(ctx, generator)?
|
2022-01-20 04:14:22 +08:00
|
|
|
) {
|
2022-03-26 15:09:15 +08:00
|
|
|
(TypeEnum::TObj { obj_id, params, .. }, BasicValueEnum::PointerValue(ptr))
|
2022-03-27 02:23:22 +08:00
|
|
|
if *obj_id == ctx.primitives.option.get_obj_id(&ctx.unifier) =>
|
|
|
|
{
|
|
|
|
let actual_ptr_ty = ctx.get_llvm_type(
|
|
|
|
generator,
|
|
|
|
*params.iter().next().unwrap().1,
|
|
|
|
)
|
|
|
|
.ptr_type(AddressSpace::Generic);
|
|
|
|
ctx.builder.build_bitcast(ptr, actual_ptr_ty, "option_ptr_cast").into()
|
|
|
|
}
|
|
|
|
val => val.1.into(),
|
2022-01-20 04:14:22 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
2021-11-20 19:50:25 +08:00
|
|
|
},
|
2021-10-16 22:17:36 +08:00
|
|
|
ExprKind::List { elts, .. } => {
|
|
|
|
// this shall be optimized later for constant primitive lists...
|
|
|
|
// we should use memcpy for that instead of generating thousands of stores
|
2021-11-20 19:50:25 +08:00
|
|
|
let elements = elts
|
|
|
|
.iter()
|
2022-02-21 18:27:46 +08:00
|
|
|
.map(|x| {
|
|
|
|
generator
|
|
|
|
.gen_expr(ctx, x)
|
2022-03-26 18:52:08 +08:00
|
|
|
.map_or_else(Err, |v| v.unwrap().to_basic_value_enum(ctx, generator))
|
2022-02-21 18:27:46 +08:00
|
|
|
})
|
2022-02-21 17:52:34 +08:00
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
2021-12-30 05:09:21 +08:00
|
|
|
let ty = if elements.is_empty() {
|
|
|
|
if let TypeEnum::TList { ty } = &*ctx.unifier.get_ty(expr.custom.unwrap()) {
|
|
|
|
ctx.get_llvm_type(generator, *ty)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
elements[0].get_type()
|
|
|
|
};
|
2021-12-27 22:55:51 +08:00
|
|
|
let length = generator.get_size_type(ctx.ctx).const_int(elements.len() as u64, false);
|
|
|
|
let arr_str_ptr = allocate_list(generator, ctx, ty, length);
|
|
|
|
let arr_ptr = ctx.build_gep_and_load(arr_str_ptr, &[zero, zero]).into_pointer_value();
|
2021-10-16 22:17:36 +08:00
|
|
|
unsafe {
|
|
|
|
for (i, v) in elements.iter().enumerate() {
|
2021-10-24 14:52:21 +08:00
|
|
|
let elem_ptr = ctx.builder.build_gep(
|
2021-10-16 22:17:36 +08:00
|
|
|
arr_ptr,
|
2021-10-24 14:52:21 +08:00
|
|
|
&[int32.const_int(i as u64, false)],
|
2021-10-16 22:17:36 +08:00
|
|
|
"elem_ptr",
|
2021-08-07 15:06:39 +08:00
|
|
|
);
|
2021-10-16 22:17:36 +08:00
|
|
|
ctx.builder.build_store(elem_ptr, *v);
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
arr_str_ptr.into()
|
|
|
|
}
|
|
|
|
ExprKind::Tuple { elts, .. } => {
|
2021-11-20 19:50:25 +08:00
|
|
|
let element_val = elts
|
|
|
|
.iter()
|
2022-02-21 18:27:46 +08:00
|
|
|
.map(|x| {
|
|
|
|
generator
|
|
|
|
.gen_expr(ctx, x)
|
2022-03-26 18:52:08 +08:00
|
|
|
.map_or_else(Err, |v| v.unwrap().to_basic_value_enum(ctx, generator))
|
2022-02-21 18:27:46 +08:00
|
|
|
})
|
2022-02-21 17:52:34 +08:00
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
2022-03-27 10:13:17 +08:00
|
|
|
let element_ty = element_val.iter().map(BasicValueEnum::get_type).collect_vec();
|
|
|
|
let tuple_ty = ctx.ctx.struct_type(&element_ty, false);
|
|
|
|
let tuple_ptr = ctx.builder.build_alloca(tuple_ty, "tuple");
|
|
|
|
for (i, v) in element_val.into_iter().enumerate() {
|
|
|
|
unsafe {
|
|
|
|
let ptr = ctx.builder.build_in_bounds_gep(
|
|
|
|
tuple_ptr,
|
|
|
|
&[zero, int32.const_int(i as u64, false)],
|
|
|
|
"ptr",
|
|
|
|
);
|
|
|
|
ctx.builder.build_store(ptr, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.builder.build_load(tuple_ptr, "tup_val").into()
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
ExprKind::Attribute { value, attr, .. } => {
|
|
|
|
// note that we would handle class methods directly in calls
|
2022-02-21 17:52:34 +08:00
|
|
|
match generator.gen_expr(ctx, value)?.unwrap() {
|
2022-02-28 23:09:14 +08:00
|
|
|
ValueEnum::Static(v) => v.get_field(*attr, ctx).map_or_else(|| {
|
|
|
|
let v = v.to_basic_value_enum(ctx, generator)?;
|
2021-11-20 21:15:15 +08:00
|
|
|
let index = ctx.get_attr_index(value.custom.unwrap(), *attr);
|
2022-02-28 23:09:14 +08:00
|
|
|
Ok(ValueEnum::Dynamic(ctx.build_gep_and_load(
|
2021-11-20 21:15:15 +08:00
|
|
|
v.into_pointer_value(),
|
|
|
|
&[zero, int32.const_int(index as u64, false)],
|
2022-02-28 23:09:14 +08:00
|
|
|
))) as Result<_, String>
|
2022-03-26 18:52:08 +08:00
|
|
|
}, Ok)?,
|
2021-11-20 19:50:25 +08:00
|
|
|
ValueEnum::Dynamic(v) => {
|
|
|
|
let index = ctx.get_attr_index(value.custom.unwrap(), *attr);
|
|
|
|
ValueEnum::Dynamic(ctx.build_gep_and_load(
|
|
|
|
v.into_pointer_value(),
|
|
|
|
&[zero, int32.const_int(index as u64, false)],
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
ExprKind::BoolOp { op, values } => {
|
|
|
|
// requires conditional branches for short-circuiting...
|
2021-11-20 19:50:25 +08:00
|
|
|
let left = generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, &values[0])?
|
2021-11-20 19:50:25 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?
|
2021-11-20 19:50:25 +08:00
|
|
|
.into_int_value();
|
2021-10-16 22:17:36 +08:00
|
|
|
let current = ctx.builder.get_insert_block().unwrap().get_parent().unwrap();
|
|
|
|
let a_bb = ctx.ctx.append_basic_block(current, "a");
|
|
|
|
let b_bb = ctx.ctx.append_basic_block(current, "b");
|
|
|
|
let cont_bb = ctx.ctx.append_basic_block(current, "cont");
|
|
|
|
ctx.builder.build_conditional_branch(left, a_bb, b_bb);
|
|
|
|
let (a, b) = match op {
|
|
|
|
Boolop::Or => {
|
|
|
|
ctx.builder.position_at_end(a_bb);
|
|
|
|
let a = ctx.ctx.bool_type().const_int(1, false);
|
|
|
|
ctx.builder.build_unconditional_branch(cont_bb);
|
|
|
|
ctx.builder.position_at_end(b_bb);
|
2021-11-20 19:50:25 +08:00
|
|
|
let b = generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, &values[1])?
|
2021-11-20 19:50:25 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?
|
2021-11-20 19:50:25 +08:00
|
|
|
.into_int_value();
|
2021-10-16 22:17:36 +08:00
|
|
|
ctx.builder.build_unconditional_branch(cont_bb);
|
|
|
|
(a, b)
|
|
|
|
}
|
|
|
|
Boolop::And => {
|
|
|
|
ctx.builder.position_at_end(a_bb);
|
2021-11-20 19:50:25 +08:00
|
|
|
let a = generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, &values[1])?
|
2021-11-20 19:50:25 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?
|
2021-11-20 19:50:25 +08:00
|
|
|
.into_int_value();
|
2021-10-16 22:17:36 +08:00
|
|
|
ctx.builder.build_unconditional_branch(cont_bb);
|
|
|
|
ctx.builder.position_at_end(b_bb);
|
|
|
|
let b = ctx.ctx.bool_type().const_int(0, false);
|
|
|
|
ctx.builder.build_unconditional_branch(cont_bb);
|
|
|
|
(a, b)
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
};
|
|
|
|
ctx.builder.position_at_end(cont_bb);
|
|
|
|
let phi = ctx.builder.build_phi(ctx.ctx.bool_type(), "phi");
|
|
|
|
phi.add_incoming(&[(&a, a_bb), (&b, b_bb)]);
|
2021-11-20 19:50:25 +08:00
|
|
|
phi.as_basic_value().into()
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
2022-02-21 17:52:34 +08:00
|
|
|
ExprKind::BinOp { op, left, right } => gen_binop_expr(generator, ctx, left, op, right)?,
|
2021-10-16 22:17:36 +08:00
|
|
|
ExprKind::UnaryOp { op, operand } => {
|
|
|
|
let ty = ctx.unifier.get_representative(operand.custom.unwrap());
|
2022-02-21 18:27:46 +08:00
|
|
|
let val =
|
2022-02-28 23:09:14 +08:00
|
|
|
generator.gen_expr(ctx, operand)?.unwrap().to_basic_value_enum(ctx, generator)?;
|
2021-10-16 22:17:36 +08:00
|
|
|
if ty == ctx.primitives.bool {
|
2021-10-24 14:52:21 +08:00
|
|
|
let val = val.into_int_value();
|
2021-10-16 22:17:36 +08:00
|
|
|
match op {
|
|
|
|
ast::Unaryop::Invert | ast::Unaryop::Not => {
|
|
|
|
ctx.builder.build_not(val, "not").into()
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
_ => val.into(),
|
|
|
|
}
|
|
|
|
} else if [ctx.primitives.int32, ctx.primitives.int64].contains(&ty) {
|
2021-10-24 14:52:21 +08:00
|
|
|
let val = val.into_int_value();
|
2021-10-16 22:17:36 +08:00
|
|
|
match op {
|
|
|
|
ast::Unaryop::USub => ctx.builder.build_int_neg(val, "neg").into(),
|
|
|
|
ast::Unaryop::Invert => ctx.builder.build_not(val, "not").into(),
|
|
|
|
ast::Unaryop::Not => ctx
|
|
|
|
.builder
|
|
|
|
.build_int_compare(
|
|
|
|
inkwell::IntPredicate::EQ,
|
|
|
|
val,
|
|
|
|
val.get_type().const_zero(),
|
|
|
|
"not",
|
|
|
|
)
|
|
|
|
.into(),
|
|
|
|
_ => val.into(),
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
} else if ty == ctx.primitives.float {
|
|
|
|
let val =
|
|
|
|
if let BasicValueEnum::FloatValue(val) = val { val } else { unreachable!() };
|
|
|
|
match op {
|
|
|
|
ast::Unaryop::USub => ctx.builder.build_float_neg(val, "neg").into(),
|
|
|
|
ast::Unaryop::Not => ctx
|
|
|
|
.builder
|
|
|
|
.build_float_compare(
|
|
|
|
inkwell::FloatPredicate::OEQ,
|
|
|
|
val,
|
|
|
|
val.get_type().const_zero(),
|
|
|
|
"not",
|
|
|
|
)
|
|
|
|
.into(),
|
|
|
|
_ => val.into(),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
unimplemented!()
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
ExprKind::Compare { left, ops, comparators } => {
|
|
|
|
izip!(chain(once(left.as_ref()), comparators.iter()), comparators.iter(), ops.iter(),)
|
2022-02-21 17:52:34 +08:00
|
|
|
.fold(Ok(None), |prev: Result<Option<_>, String>, (lhs, rhs, op)| {
|
2021-10-16 22:17:36 +08:00
|
|
|
let ty = ctx.unifier.get_representative(lhs.custom.unwrap());
|
2021-08-07 17:25:14 +08:00
|
|
|
let current =
|
2021-10-16 22:17:36 +08:00
|
|
|
if [ctx.primitives.int32, ctx.primitives.int64, ctx.primitives.bool]
|
2021-08-07 17:25:14 +08:00
|
|
|
.contains(&ty)
|
|
|
|
{
|
|
|
|
let (lhs, rhs) = if let (
|
|
|
|
BasicValueEnum::IntValue(lhs),
|
|
|
|
BasicValueEnum::IntValue(rhs),
|
2021-10-16 22:17:36 +08:00
|
|
|
) = (
|
2021-12-27 22:55:51 +08:00
|
|
|
generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, lhs)?
|
2021-12-27 22:55:51 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?,
|
2021-12-27 22:55:51 +08:00
|
|
|
generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, rhs)?
|
2021-12-27 22:55:51 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?,
|
2021-10-16 22:17:36 +08:00
|
|
|
) {
|
2021-08-05 14:55:23 +08:00
|
|
|
(lhs, rhs)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
2021-08-07 17:25:14 +08:00
|
|
|
let op = match op {
|
|
|
|
ast::Cmpop::Eq | ast::Cmpop::Is => inkwell::IntPredicate::EQ,
|
|
|
|
ast::Cmpop::NotEq => inkwell::IntPredicate::NE,
|
|
|
|
ast::Cmpop::Lt => inkwell::IntPredicate::SLT,
|
|
|
|
ast::Cmpop::LtE => inkwell::IntPredicate::SLE,
|
|
|
|
ast::Cmpop::Gt => inkwell::IntPredicate::SGT,
|
|
|
|
ast::Cmpop::GtE => inkwell::IntPredicate::SGE,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2021-10-16 22:17:36 +08:00
|
|
|
ctx.builder.build_int_compare(op, lhs, rhs, "cmp")
|
|
|
|
} else if ty == ctx.primitives.float {
|
2021-08-07 17:25:14 +08:00
|
|
|
let (lhs, rhs) = if let (
|
|
|
|
BasicValueEnum::FloatValue(lhs),
|
|
|
|
BasicValueEnum::FloatValue(rhs),
|
2021-10-16 22:17:36 +08:00
|
|
|
) = (
|
2021-12-27 22:55:51 +08:00
|
|
|
generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, lhs)?
|
2021-12-27 22:55:51 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?,
|
2021-12-27 22:55:51 +08:00
|
|
|
generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, rhs)?
|
2021-12-27 22:55:51 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?,
|
2021-10-16 22:17:36 +08:00
|
|
|
) {
|
2021-08-07 17:25:14 +08:00
|
|
|
(lhs, rhs)
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
|
|
|
let op = match op {
|
|
|
|
ast::Cmpop::Eq | ast::Cmpop::Is => inkwell::FloatPredicate::OEQ,
|
|
|
|
ast::Cmpop::NotEq => inkwell::FloatPredicate::ONE,
|
|
|
|
ast::Cmpop::Lt => inkwell::FloatPredicate::OLT,
|
|
|
|
ast::Cmpop::LtE => inkwell::FloatPredicate::OLE,
|
|
|
|
ast::Cmpop::Gt => inkwell::FloatPredicate::OGT,
|
|
|
|
ast::Cmpop::GtE => inkwell::FloatPredicate::OGE,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2021-10-16 22:17:36 +08:00
|
|
|
ctx.builder.build_float_compare(op, lhs, rhs, "cmp")
|
2021-08-05 14:55:23 +08:00
|
|
|
} else {
|
2021-08-07 17:25:14 +08:00
|
|
|
unimplemented!()
|
2021-08-05 14:55:23 +08:00
|
|
|
};
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok(prev?.map(|v| ctx.builder.build_and(v, current, "cmp")).or(Some(current)))
|
|
|
|
})?
|
2021-08-05 14:55:23 +08:00
|
|
|
.unwrap()
|
|
|
|
.into() // as there should be at least 1 element, it should never be none
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
ExprKind::IfExp { test, body, orelse } => {
|
2021-12-27 22:55:51 +08:00
|
|
|
let test = generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, test)?
|
2021-12-27 22:55:51 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?
|
2021-12-27 22:55:51 +08:00
|
|
|
.into_int_value();
|
2022-03-29 06:54:00 +08:00
|
|
|
let body_ty = body.custom.unwrap();
|
|
|
|
let is_none = ctx.unifier.get_representative(body_ty) == ctx.primitives.none;
|
|
|
|
let result = if !is_none {
|
|
|
|
let llvm_ty = ctx.get_llvm_type(generator, body_ty);
|
|
|
|
Some(ctx.builder.build_alloca(llvm_ty, "if_exp_result"))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2021-10-16 22:17:36 +08:00
|
|
|
let current = ctx.builder.get_insert_block().unwrap().get_parent().unwrap();
|
|
|
|
let then_bb = ctx.ctx.append_basic_block(current, "then");
|
|
|
|
let else_bb = ctx.ctx.append_basic_block(current, "else");
|
|
|
|
let cont_bb = ctx.ctx.append_basic_block(current, "cont");
|
|
|
|
ctx.builder.build_conditional_branch(test, then_bb, else_bb);
|
|
|
|
ctx.builder.position_at_end(then_bb);
|
2022-03-29 06:54:00 +08:00
|
|
|
let a = generator.gen_expr(ctx, body)?;
|
|
|
|
match result {
|
|
|
|
None => None,
|
|
|
|
Some(v) => {
|
|
|
|
let a = a.unwrap().to_basic_value_enum(ctx, generator)?;
|
|
|
|
Some(ctx.builder.build_store(v, a))
|
|
|
|
}
|
|
|
|
};
|
2021-10-16 22:17:36 +08:00
|
|
|
ctx.builder.build_unconditional_branch(cont_bb);
|
|
|
|
ctx.builder.position_at_end(else_bb);
|
2022-03-29 06:54:00 +08:00
|
|
|
let b = generator.gen_expr(ctx, orelse)?;
|
|
|
|
match result {
|
|
|
|
None => None,
|
|
|
|
Some(v) => {
|
|
|
|
let b = b.unwrap().to_basic_value_enum(ctx, generator)?;
|
|
|
|
Some(ctx.builder.build_store(v, b))
|
|
|
|
}
|
|
|
|
};
|
2021-10-16 22:17:36 +08:00
|
|
|
ctx.builder.build_unconditional_branch(cont_bb);
|
|
|
|
ctx.builder.position_at_end(cont_bb);
|
2022-03-29 06:54:00 +08:00
|
|
|
match result {
|
|
|
|
None => return Ok(None),
|
|
|
|
Some(v) => return Ok(Some(ctx.builder.build_load(v, "if_exp_val_load").into()))
|
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
ExprKind::Call { func, args, keywords } => {
|
2022-02-21 18:27:46 +08:00
|
|
|
let mut params = args
|
|
|
|
.iter()
|
|
|
|
.map(|arg| Ok((None, generator.gen_expr(ctx, arg)?.unwrap())) as Result<_, String>)
|
2022-02-21 17:52:34 +08:00
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
2021-10-16 22:17:36 +08:00
|
|
|
let kw_iter = keywords.iter().map(|kw| {
|
2022-02-21 17:52:34 +08:00
|
|
|
Ok((
|
2021-10-16 22:17:36 +08:00
|
|
|
Some(*kw.node.arg.as_ref().unwrap()),
|
2022-02-21 17:52:34 +08:00
|
|
|
generator.gen_expr(ctx, &kw.node.value)?.unwrap(),
|
|
|
|
)) as Result<_, String>
|
2021-10-16 22:17:36 +08:00
|
|
|
});
|
2022-02-21 17:52:34 +08:00
|
|
|
let kw_iter = kw_iter.collect::<Result<Vec<_>, _>>()?;
|
2021-10-16 22:17:36 +08:00
|
|
|
params.extend(kw_iter);
|
|
|
|
let call = ctx.calls.get(&expr.location.into());
|
|
|
|
let signature = match call {
|
|
|
|
Some(call) => ctx.unifier.get_call_signature(*call).unwrap(),
|
|
|
|
None => {
|
|
|
|
let ty = func.custom.unwrap();
|
|
|
|
if let TypeEnum::TFunc(sign) = &*ctx.unifier.get_ty(ty) {
|
2022-02-21 17:52:34 +08:00
|
|
|
sign.clone()
|
2021-10-16 22:17:36 +08:00
|
|
|
} else {
|
|
|
|
unreachable!()
|
2021-09-19 22:54:06 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
};
|
2022-02-21 17:52:34 +08:00
|
|
|
let func = func.as_ref();
|
|
|
|
match &func.node {
|
2021-10-16 22:17:36 +08:00
|
|
|
ExprKind::Name { id, .. } => {
|
|
|
|
// TODO: handle primitive casts and function pointers
|
2022-02-21 18:27:46 +08:00
|
|
|
let fun = ctx
|
|
|
|
.resolver
|
|
|
|
.get_identifier_def(*id)
|
|
|
|
.map_err(|e| format!("{} (at {})", e, func.location))?;
|
2022-02-21 17:52:34 +08:00
|
|
|
return Ok(generator
|
|
|
|
.gen_call(ctx, None, (&signature, fun), params)?
|
|
|
|
.map(|v| v.into()));
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
ExprKind::Attribute { value, attr, .. } => {
|
2022-02-21 17:52:34 +08:00
|
|
|
let val = generator.gen_expr(ctx, value)?.unwrap();
|
2021-10-16 22:17:36 +08:00
|
|
|
let id = if let TypeEnum::TObj { obj_id, .. } =
|
|
|
|
&*ctx.unifier.get_ty(value.custom.unwrap())
|
|
|
|
{
|
|
|
|
*obj_id
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
|
|
|
let fun_id = {
|
|
|
|
let defs = ctx.top_level.definitions.read();
|
|
|
|
let obj_def = defs.get(id.0).unwrap().read();
|
|
|
|
if let TopLevelDef::Class { methods, .. } = &*obj_def {
|
|
|
|
let mut fun_id = None;
|
|
|
|
for (name, _, id) in methods.iter() {
|
|
|
|
if name == attr {
|
|
|
|
fun_id = Some(*id);
|
2021-09-19 22:54:06 +08:00
|
|
|
}
|
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
fun_id.unwrap()
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
};
|
2022-03-26 15:09:15 +08:00
|
|
|
// directly generate code for option.unwrap
|
|
|
|
// since it needs location information from ast
|
|
|
|
if attr == &"unwrap".into()
|
|
|
|
&& id == ctx.primitives.option.get_obj_id(&ctx.unifier)
|
|
|
|
{
|
|
|
|
if let BasicValueEnum::PointerValue(ptr) = val.to_basic_value_enum(ctx, generator)? {
|
|
|
|
let not_null = ctx.builder.build_is_not_null(ptr, "unwrap_not_null");
|
|
|
|
ctx.make_assert(
|
|
|
|
generator,
|
|
|
|
not_null,
|
|
|
|
"0:UnwrapNoneError",
|
|
|
|
"",
|
|
|
|
[None, None, None],
|
|
|
|
expr.location,
|
|
|
|
);
|
|
|
|
return Ok(Some(ctx.builder.build_load(ptr, "unwrap_some").into()))
|
|
|
|
} else {
|
|
|
|
unreachable!("option must be ptr")
|
|
|
|
}
|
|
|
|
}
|
2022-02-21 17:52:34 +08:00
|
|
|
return Ok(generator
|
2021-11-20 19:50:25 +08:00
|
|
|
.gen_call(
|
|
|
|
ctx,
|
|
|
|
Some((value.custom.unwrap(), val)),
|
|
|
|
(&signature, fun_id),
|
|
|
|
params,
|
2022-02-21 17:52:34 +08:00
|
|
|
)?
|
|
|
|
.map(|v| v.into()));
|
2021-08-19 15:30:15 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
_ => unimplemented!(),
|
2021-08-19 15:30:15 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
|
|
|
ExprKind::Subscript { value, slice, .. } => {
|
2022-01-09 19:55:17 +08:00
|
|
|
if let TypeEnum::TList { ty } = &*ctx.unifier.get_ty(value.custom.unwrap()) {
|
2022-01-20 04:14:22 +08:00
|
|
|
let v = generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, value)?
|
2022-01-20 04:14:22 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?
|
2022-01-20 04:14:22 +08:00
|
|
|
.into_pointer_value();
|
2022-01-09 19:55:17 +08:00
|
|
|
let ty = ctx.get_llvm_type(generator, *ty);
|
|
|
|
let arr_ptr = ctx.build_gep_and_load(v, &[zero, zero]).into_pointer_value();
|
|
|
|
if let ExprKind::Slice { lower, upper, step } = &slice.node {
|
|
|
|
let one = int32.const_int(1, false);
|
|
|
|
let (start, end, step) =
|
2022-02-21 17:52:34 +08:00
|
|
|
handle_slice_indices(lower, upper, step, ctx, generator, v)?;
|
2022-01-09 19:55:17 +08:00
|
|
|
let length = calculate_len_for_slice_range(
|
|
|
|
ctx,
|
|
|
|
start,
|
|
|
|
ctx.builder
|
|
|
|
.build_select(
|
|
|
|
ctx.builder.build_int_compare(
|
|
|
|
inkwell::IntPredicate::SLT,
|
|
|
|
step,
|
|
|
|
zero,
|
|
|
|
"is_neg",
|
|
|
|
),
|
|
|
|
ctx.builder.build_int_sub(end, one, "e_min_one"),
|
|
|
|
ctx.builder.build_int_add(end, one, "e_add_one"),
|
|
|
|
"final_e",
|
|
|
|
)
|
|
|
|
.into_int_value(),
|
|
|
|
step,
|
|
|
|
);
|
|
|
|
let res_array_ret = allocate_list(generator, ctx, ty, length);
|
|
|
|
let res_ind =
|
2022-02-21 17:52:34 +08:00
|
|
|
handle_slice_indices(&None, &None, &None, ctx, generator, res_array_ret)?;
|
2022-01-09 19:55:17 +08:00
|
|
|
list_slice_assignment(
|
|
|
|
ctx,
|
|
|
|
generator.get_size_type(ctx.ctx),
|
|
|
|
ty,
|
|
|
|
res_array_ret,
|
|
|
|
res_ind,
|
|
|
|
v,
|
|
|
|
(start, end, step),
|
|
|
|
);
|
|
|
|
res_array_ret.into()
|
2021-08-19 16:54:15 +08:00
|
|
|
} else {
|
2022-02-21 18:27:46 +08:00
|
|
|
let len = ctx
|
|
|
|
.build_gep_and_load(v, &[zero, int32.const_int(1, false)])
|
2022-02-12 21:19:11 +08:00
|
|
|
.into_int_value();
|
|
|
|
let raw_index = generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, slice)?
|
2021-11-20 19:50:25 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?
|
2021-11-20 19:50:25 +08:00
|
|
|
.into_int_value();
|
2022-02-21 18:27:46 +08:00
|
|
|
let raw_index = ctx.builder.build_int_s_extend(
|
|
|
|
raw_index,
|
|
|
|
generator.get_size_type(ctx.ctx),
|
|
|
|
"sext",
|
|
|
|
);
|
2022-02-12 21:19:11 +08:00
|
|
|
// handle negative index
|
2022-02-21 18:27:46 +08:00
|
|
|
let is_negative = ctx.builder.build_int_compare(
|
|
|
|
inkwell::IntPredicate::SLT,
|
|
|
|
raw_index,
|
|
|
|
generator.get_size_type(ctx.ctx).const_zero(),
|
|
|
|
"is_neg",
|
|
|
|
);
|
2022-02-12 21:19:11 +08:00
|
|
|
let adjusted = ctx.builder.build_int_add(raw_index, len, "adjusted");
|
2022-02-21 18:27:46 +08:00
|
|
|
let index = ctx
|
|
|
|
.builder
|
|
|
|
.build_select(is_negative, adjusted, raw_index, "index")
|
|
|
|
.into_int_value();
|
2022-02-12 21:19:11 +08:00
|
|
|
// unsigned less than is enough, because negative index after adjustment is
|
|
|
|
// bigger than the length (for unsigned cmp)
|
2022-02-21 18:27:46 +08:00
|
|
|
let bound_check = ctx.builder.build_int_compare(
|
|
|
|
inkwell::IntPredicate::ULT,
|
|
|
|
index,
|
|
|
|
len,
|
|
|
|
"inbound",
|
|
|
|
);
|
|
|
|
ctx.make_assert(
|
|
|
|
generator,
|
|
|
|
bound_check,
|
|
|
|
"0:IndexError",
|
|
|
|
"index {0} out of bounds 0:{1}",
|
|
|
|
[Some(raw_index), Some(len), None],
|
|
|
|
expr.location,
|
|
|
|
);
|
2022-01-09 19:55:17 +08:00
|
|
|
ctx.build_gep_and_load(arr_ptr, &[index])
|
2021-08-19 16:54:15 +08:00
|
|
|
}
|
2022-01-20 04:14:22 +08:00
|
|
|
} else if let TypeEnum::TTuple { .. } = &*ctx.unifier.get_ty(value.custom.unwrap()) {
|
|
|
|
let v = generator
|
2022-02-21 17:52:34 +08:00
|
|
|
.gen_expr(ctx, value)?
|
2021-11-20 19:50:25 +08:00
|
|
|
.unwrap()
|
2022-02-28 23:09:14 +08:00
|
|
|
.to_basic_value_enum(ctx, generator)?
|
2022-01-20 04:14:22 +08:00
|
|
|
.into_struct_value();
|
|
|
|
let index: u32 =
|
|
|
|
if let ExprKind::Constant { value: ast::Constant::Int(v), .. } = &slice.node {
|
2022-03-08 02:30:04 +08:00
|
|
|
(*v).try_into().unwrap()
|
2022-01-20 04:14:22 +08:00
|
|
|
} else {
|
|
|
|
unreachable!("tuple subscript must be const int after type check");
|
|
|
|
};
|
|
|
|
ctx.builder.build_extract_value(v, index, "tup_elem").unwrap()
|
|
|
|
} else {
|
|
|
|
unreachable!("should not be other subscriptable types after type check");
|
2021-08-19 16:54:15 +08:00
|
|
|
}
|
2021-10-16 22:17:36 +08:00
|
|
|
}
|
2021-11-20 19:50:25 +08:00
|
|
|
.into(),
|
2022-02-21 17:52:34 +08:00
|
|
|
ExprKind::ListComp { .. } => gen_comprehension(generator, ctx, expr)?.into(),
|
2021-10-16 22:17:36 +08:00
|
|
|
_ => unimplemented!(),
|
2022-02-21 17:52:34 +08:00
|
|
|
}))
|
2021-08-05 14:55:23 +08:00
|
|
|
}
|