Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nested signatures #177

Merged
merged 4 commits into from Feb 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
51 changes: 38 additions & 13 deletions src/can/def.rs
Expand Up @@ -7,9 +7,7 @@ use crate::can::expr::{
};
use crate::can::ident::{Ident, Lowercase};
use crate::can::pattern::PatternType;
use crate::can::pattern::{
bindings_from_patterns, canonicalize_pattern, symbols_from_pattern, Pattern,
};
use crate::can::pattern::{bindings_from_patterns, canonicalize_pattern, Pattern};
use crate::can::problem::Problem;
use crate::can::problem::RuntimeError;
use crate::can::procedure::References;
Expand Down Expand Up @@ -616,13 +614,42 @@ fn group_to_declaration(
}
}

fn pattern_to_vars_by_symbol(
vars_by_symbol: &mut SendMap<Symbol, Variable>,
pattern: &Pattern,
expr_var: Variable,
) {
use Pattern::*;
match pattern {
Identifier(symbol) => {
vars_by_symbol.insert(symbol.clone(), expr_var);
}

AppliedTag(_, _, arguments) => {
for (var, nested) in arguments {
pattern_to_vars_by_symbol(vars_by_symbol, &nested.value, *var);
}
}

RecordDestructure(_, destructs) => {
for destruct in destructs {
vars_by_symbol.insert(destruct.value.symbol.clone(), destruct.value.var);
}
}

IntLiteral(_) | FloatLiteral(_) | StrLiteral(_) | Underscore | UnsupportedPattern(_) => {}

Shadowed(_, _) => {}
}
}

// TODO trim down these arguments!
#[allow(clippy::too_many_arguments)]
fn canonicalize_pending_def<'a>(
env: &mut Env<'a>,
found_rigids: &mut SendMap<Variable, Lowercase>,
pending_def: PendingDef<'a>,
original_scope: &Scope,
_original_scope: &Scope,
scope: &mut Scope,
can_defs_by_symbol: &mut MutMap<Symbol, Def>,
var_store: &VarStore,
Expand All @@ -646,6 +673,8 @@ fn canonicalize_pending_def<'a>(
found_rigids.insert(k, v);
}

pattern_to_vars_by_symbol(&mut vars_by_symbol, &loc_can_pattern.value, expr_var);

let typ = ann.typ;

let arity = typ.arity();
Expand Down Expand Up @@ -693,9 +722,8 @@ fn canonicalize_pending_def<'a>(
}
};

for (ident, (symbol, _)) in scope.idents() {
// TODO Could we do this by symbol instead, to avoid cloning idents?
if original_scope.contains_ident(ident) {
for (_, (symbol, _)) in scope.idents() {
if !vars_by_symbol.contains_key(&symbol) {
continue;
}

Expand Down Expand Up @@ -750,9 +778,10 @@ fn canonicalize_pending_def<'a>(

if let Pattern::Identifier(ref defined_symbol) = &loc_can_pattern.value {
env.tailcallable_symbol = Some(*defined_symbol);
vars_by_symbol.insert(defined_symbol.clone(), expr_var);
};

pattern_to_vars_by_symbol(&mut vars_by_symbol, &loc_can_pattern.value, expr_var);

let (mut loc_can_expr, can_output) =
canonicalize_expr(env, var_store, scope, loc_expr.region, &loc_expr.value);

Expand Down Expand Up @@ -818,14 +847,10 @@ fn canonicalize_pending_def<'a>(
);
}

let symbols_defined_here: ImSet<Symbol> = symbols_from_pattern(&loc_can_pattern.value)
.into_iter()
.collect();

// Store the referenced locals in the refs_by_symbol map, so we can later figure out
// which defined names reference each other.
for (ident, (symbol, region)) in scope.idents() {
if !symbols_defined_here.contains(&symbol) {
if !vars_by_symbol.contains_key(&symbol) {
continue;
}

Expand Down
23 changes: 21 additions & 2 deletions src/can/pattern.rs
Expand Up @@ -43,8 +43,27 @@ pub fn symbols_from_pattern(pattern: &Pattern) -> Vec<Symbol> {
}

pub fn symbols_from_pattern_help(pattern: &Pattern, symbols: &mut Vec<Symbol>) {
if let Pattern::Identifier(symbol) = pattern {
symbols.push(symbol.clone());
use Pattern::*;

match pattern {
Identifier(symbol) => {
symbols.push(symbol.clone());
}

AppliedTag(_, _, arguments) => {
for (_, nested) in arguments {
symbols_from_pattern_help(&nested.value, symbols);
}
}
RecordDestructure(_, destructs) => {
for destruct in destructs {
symbols.push(destruct.value.symbol.clone());
}
}

IntLiteral(_) | FloatLiteral(_) | StrLiteral(_) | Underscore | UnsupportedPattern(_) => {}

Shadowed(_, _) => {}
}
}

Expand Down
35 changes: 30 additions & 5 deletions src/constrain/expr.rs
Expand Up @@ -720,25 +720,43 @@ pub fn constrain_def(env: &Env, def: &Def, body_con: Constraint) -> Constraint {

let expr_con = match &def.annotation {
Some((annotation, free_vars)) => {
let mut annotation = annotation.clone();
let rigids = &env.rigids;
let mut ftv: ImMap<Lowercase, Type> = rigids.clone();
let mut rigid_substitution: ImMap<Variable, Type> = ImMap::default();

for (var, name) in free_vars {
// if the rigid is known already, nothing needs to happen
// otherwise register it.
if !rigids.contains_key(name) {
if let Some(existing_rigid) = rigids.get(name) {
rigid_substitution.insert(*var, existing_rigid.clone());
} else {
// It's possible to use this rigid in nested defs
ftv.insert(name.clone(), Type::Variable(*var));

new_rigids.push(*var);
}
}

// Instantiate rigid variables
if !rigid_substitution.is_empty() {
annotation.substitute(&rigid_substitution);
}

let arity = annotation.arity();

if let Some(headers) = crate::constrain::pattern::headers_from_annotation(
&def.loc_pattern.value,
&Located::at(def.loc_pattern.region, annotation.clone()),
) {
for (k, v) in headers {
pattern_state.headers.insert(k, v);
}
}

let annotation_expected = FromAnnotation(
def.loc_pattern.clone(),
annotation.arity(),
arity,
AnnotationSource::TypedBody,
annotation.clone(),
annotation,
);

pattern_state.constraints.push(Eq(
Expand Down Expand Up @@ -843,6 +861,13 @@ pub fn rec_defs_help(
}

Some((annotation, seen_rigids)) => {
// TODO also do this for more complex patterns
if let Pattern::Identifier(symbol) = def.loc_pattern.value {
pattern_state.headers.insert(
symbol,
Located::at(def.loc_pattern.region, annotation.clone()),
);
}
let rigids = &env.rigids;
let mut ftv: ImMap<Lowercase, Type> = rigids.clone();

Expand Down
86 changes: 86 additions & 0 deletions src/constrain/pattern.rs
Expand Up @@ -13,6 +13,92 @@ pub struct PatternState {
pub constraints: Vec<Constraint>,
}

/// If there is a type annotation, the pattern state headers can be optimized by putting the
/// annotation in the headers. Normally
///
/// x = 4
///
/// Would add `x => <42>` to the headers (i.e., symbol points to a type variable). If the
/// definition has an annotation, we instead now add `x => Int`.
pub fn headers_from_annotation(
pattern: &Pattern,
annotation: &Located<Type>,
) -> Option<SendMap<Symbol, Located<Type>>> {
let mut headers = SendMap::default();
// Check that the annotation structurally agrees with the pattern, preventing e.g. `{ x, y } : Int`
// in such incorrect cases we don't put the full annotation in headers, just a variable, and let
// inference generate a proper error.
let is_structurally_valid = headers_from_annotation_help(pattern, annotation, &mut headers);

if is_structurally_valid {
Some(headers)
} else {
None
}
}

pub fn headers_from_annotation_help(
pattern: &Pattern,
annotation: &Located<Type>,
headers: &mut SendMap<Symbol, Located<Type>>,
) -> bool {
match pattern {
Identifier(symbol) => {
headers.insert(symbol.clone(), annotation.clone());
true
}
Underscore
| Shadowed(_, _)
| UnsupportedPattern(_)
| IntLiteral(_)
| FloatLiteral(_)
| StrLiteral(_) => true,

RecordDestructure(_, destructs) => match annotation.value.shallow_dealias() {
Type::Record(fields, _) => {
for destruct in destructs {
// NOTE ignores the .guard field.
if let Some(field_type) = fields.get(&destruct.value.label) {
headers.insert(
destruct.value.symbol.clone(),
Located::at(annotation.region, field_type.clone()),
);
} else {
return false;
}
}
true
}
Type::EmptyRec => destructs.is_empty(),
_ => false,
},

AppliedTag(_, tag_name, arguments) => match annotation.value.shallow_dealias() {
Type::TagUnion(tags, _) => {
if let Some((_, arg_types)) = tags.iter().find(|(name, _)| name == tag_name) {
if !arguments.len() == arg_types.len() {
return false;
}

arguments
.iter()
.zip(arg_types.iter())
.all(|(arg_pattern, arg_type)| {
headers_from_annotation_help(
&arg_pattern.1.value,
&Located::at(annotation.region, arg_type.clone()),
headers,
)
})
} else {
false
}
}
_ => false,
},
}
}

/// This accepts PatternState (rather than returning it) so that the caller can
/// intiialize the Vecs in PatternState using with_capacity
/// based on its knowledge of their lengths.
Expand Down
13 changes: 12 additions & 1 deletion src/types/mod.rs
Expand Up @@ -298,7 +298,10 @@ impl Type {
}
ext.substitute(substitutions);
}
Alias(_, _zipped, actual_type) => {
Alias(_, zipped, actual_type) => {
for (_, value) in zipped.iter_mut() {
value.substitute(substitutions);
}
actual_type.substitute(substitutions);
}
Apply(_, args) => {
Expand Down Expand Up @@ -385,6 +388,14 @@ impl Type {
EmptyRec | EmptyTagUnion | Erroneous(_) | Variable(_) | Boolean(_) => false,
}
}

/// a shallow dealias, continue until the first constructor is not an alias.
pub fn shallow_dealias(&self) -> &Self {
match self {
Type::Alias(_, _, actual) => actual.shallow_dealias(),
_ => self,
}
}
}

fn variables_help(tipe: &Type, accum: &mut ImSet<Variable>) {
Expand Down