1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
Jip J. Dekker fad1b07018 Squashed 'software/minizinc/' content from commit 4f10c8205
git-subtree-dir: software/minizinc
git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
2021-06-16 14:06:46 +10:00

106 lines
3.0 KiB
C++

/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Guido Tack <guido.tack@monash.edu>
*/
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#pragma once
#include <minizinc/astexception.hh>
#include <minizinc/hash.hh>
#include <minizinc/model.hh>
namespace MiniZinc {
/// Scoped variable declarations
class Scopes {
protected:
typedef IdMap<VarDecl*> DeclMap;
enum ScopeType { ST_TOPLEVEL, ST_FUN, ST_INNER };
struct Scope {
/// Map from identifiers to declarations
DeclMap m;
/// Type of this scope
ScopeType st;
/// Constructor
Scope(ScopeType st0) : st(st0) {}
/// Whether this scope is toplevel
bool toplevel() const { return st == ST_TOPLEVEL; }
};
/// Stack of scopes
std::vector<Scope> _s;
public:
/// Constructor
Scopes();
/// Add a variable declaration
void add(EnvI& env, VarDecl* vd);
/// Push a new toplevel scope
void pushToplevel();
/// Push a new function scope
void pushFun();
/// Push a new scope
void push();
/// Pop topmost scope
void pop();
/// Return declaration for \a ident, or NULL if not found
VarDecl* find(Id* ident);
/// Find declarations with identifiers similar to \a ident
VarDecl* findSimilar(Id* ident);
};
/// Topological sorting of items
class TopoSorter {
public:
typedef std::vector<VarDecl*> Decls;
typedef std::unordered_map<VarDecl*, int> PosMap;
/// List of all declarations
Decls decls;
/// Scoped declarations
Scopes scopes;
/// Map from declarations to positions
PosMap pos;
/// The model
Model* model;
TopoSorter(Model* model0) : model(model0) {}
/// Add a variable declaration item
void add(EnvI& env, VarDeclI* vd, bool handleEnums, Model* enumItems);
/// Get variable declaration from identifier \a id
VarDecl* get(EnvI& env, const ASTString& id, const Location& loc);
VarDecl* checkId(EnvI& env, const ASTString& id_v, const Location& loc);
VarDecl* checkId(EnvI& env, Id* ident, const Location& loc);
/// Run the topological sorting for expression \a e
void run(EnvI& env, Expression* e);
};
/// Type check the model \a m
void typecheck(Env& env, Model* origModel, std::vector<TypeError>& typeErrors,
bool ignoreUndefinedParameters, bool allowMultiAssignment, bool isFlatZinc = false);
/// Type check new assign item \a ai in model \a m
void typecheck(Env& env, Model* m, AssignI* ai);
/// Output description of parameters and output variables to \a os
void output_model_interface(Env& env, Model* m, std::ostream& os,
const std::vector<std::string>& skipDirs);
/// Output information about variable types (enum types) to \a os
void output_model_variable_types(Env& env, Model* m, std::ostream& os,
const std::vector<std::string>& skipDirs);
std::string create_enum_to_string_name(Id* ident, const std::string& prefix);
} // namespace MiniZinc