1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/************************************************************************
************************************************************************
FAUST compiler
Copyright (C) 2003-2018 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
************************************************************************
************************************************************************/
#include "environment.hh"
#include "boxes.hh"
#include "errormsg.hh"
#include "exception.hh"
#include "global.hh"
#include "names.hh"
#include "ppbox.hh"
using namespace std;
//----------------------- New environment management --------------------------
//
// The environment is made of layers. Each layer contains a set of definitions
// stored as properties of the layer. Each definition can refers to other
// definitions of the same layer or of subsequent layers. Recursive
// definitions are not allowed. Multiple definitions of the same symbol
// in a layer is allowed but generate a warning when the definition is
// different.
//-----------------------------------------------------------------------------
/**
* Push a new (unique) empty layer (where multiple definitions can be stored)
* on top of an existing environment.
* @param lenv the old environment
* @return the new environment
*/
static Tree pushNewLayer(Tree lenv)
{
return tree(unique("ENV_LAYER"), lenv);
}
/**
* Push a new environment barrier on top of an existing environment so
* that searchIdDef (used by the pattern matcher) will not look after
* the barrier. This barrier will not any influence on regular environment
* lookup.
* @param lenv the old environment
* @return the new environment
*/
Tree pushEnvBarrier(Tree lenv)
{
return tree(gGlobal->BARRIER, lenv);
}
/**
* Test if the environment is a barrier (or nil) so
* that searchIdDef will know where to stop when searching
* an environment.
* @param lenv the environment to test
* @return true is barrier reached
*/
bool isEnvBarrier(Tree lenv)
{
return isNil(lenv) || (lenv->node() == Node(gGlobal->BARRIER));
}
/**
* Add a definition (as a property) to the current top level layer. Check
* and warn for multiple definitions.
* @param id the symbol id to be defined
* @param def the definition to be binded to the symbol id
* @param lenv the environment where to add this new definition
*/
static void addLayerDef(Tree id, Tree def, Tree lenv)
{
// check for multiple definitions of a symbol in the same layer
Tree olddef = nullptr;
if (getProperty(lenv, id, olddef)) {
if (def == olddef) {
// evalwarning(getDefFileProp(id), getDefLineProp(id), "equivalent re-definitions of",
// id);
} else {
stringstream error;
error << getDefFileProp(id) << ':' << getDefLineProp(id)
<< " ERROR : redefinition of symbols are not allowed : " << boxpp(id) << endl;
gGlobal->gErrorCount++;
throw faustexception(error.str());
}
}
setProperty(lenv, id, def);
}
/**
* Push a new layer and add a single definition.
* @param id the symbol id to be defined
* @param def the definition to be binded to the symbol id
* @param lenv the environment where to push the layer and add the definition
* @return the new environment
*/
Tree pushValueDef(Tree id, Tree def, Tree lenv)
{
Tree lenv2 = pushNewLayer(lenv);
addLayerDef(id, def, lenv2);
return lenv2;
}
/**
* Push a new layer with multiple definitions creating the appropriate closures
* @param ldefs list of pairs (symbol id x definition) to be binded to the symbol id
* @param visited set of visited symbols (used for recursive definition detection)
* @param lenv the environment where to push the layer and add all the definitions
* @return the new environment
*/
Tree pushMultiClosureDefs(Tree ldefs, Tree visited, Tree lenv)
{
Tree lenv2 = pushNewLayer(lenv);
while (!isNil(ldefs)) {
Tree def = hd(ldefs);
Tree id = hd(def);
Tree rhs = tl(def);
Tree cl = closure(tl(def), gGlobal->nil, visited, lenv2);
stringstream s;
s << boxpp(id);
if (!isBoxCase(rhs)) {
setDefNameProperty(cl, s.str());
}
addLayerDef(id, cl, lenv2);
ldefs = tl(ldefs);
}
return lenv2;
}
/**
* Search the environment (until first barrier) for
* the definition of a symbol ID and return it. Used by the
* pattern matcher.
* @param id the symbol ID to search
* @param def where to store the definition if any
* @param lenv the environment
* @return true if a definition was found
*/
bool searchIdDef(Tree id, Tree& def, Tree lenv)
{
// search the environment until a definition is found
// or a barrier (or nil) is reached
while (!isEnvBarrier(lenv) && !getProperty(lenv, id, def)) {
faustassert(lenv->arity() > 0);
lenv = lenv->branch(0);
}
return !isEnvBarrier(lenv);
}
/**
* Replace closure that point to oldEnv with closure on newEnv
*/
static void updateClosures(vector<Tree>& clos, Tree oldEnv, Tree newEnv)
{
for (size_t i = 0; i < clos.size(); i++) {
Tree exp, genv, visited, lenv;
if (isClosure(clos[i], exp, genv, visited, lenv)) {
if (lenv == oldEnv) {
clos[i] = closure(exp, genv, visited, newEnv);
}
}
}
}
/**
* Create a new environment by copying an existing one and replacing some definitions
* @param xenv existing environment we will copy
* @param ldefs list of pairs (symbol id x definition) that will replace old definitions
* @param visited set of visited symbols (used for recursive definition detection)
* @param lenv the current environment to evaluate the definitions
* @return the new environment
*/
Tree copyEnvReplaceDefs(Tree anEnv, Tree ldefs, Tree visited, Tree curEnv)
{
vector<Tree> ids, clos;
Tree copyEnv;
anEnv->exportProperties(ids, clos); // get the definitions of the environment
faustassert(anEnv->arity() > 0);
copyEnv = pushNewLayer(anEnv->branch(0)); // create new environment with same stack
updateClosures(clos, anEnv, copyEnv); // update the closures replacing oldEnv with newEnv
for (unsigned int i = 0; i < clos.size();
i++) { // transfers the updated definitions to the new environment
setProperty(copyEnv, ids[i], clos[i]);
}
while (!isNil(ldefs)) { // replace the old definitions with the new ones
Tree def = hd(ldefs);
Tree id = hd(def);
Tree rhs = tl(def);
Tree cl = closure(rhs, gGlobal->nil, visited, curEnv);
stringstream s;
s << boxpp(id);
if (!isBoxCase(rhs)) {
setDefNameProperty(cl, s.str());
}
setProperty(copyEnv, id, cl);
ldefs = tl(ldefs);
}
return copyEnv;
}
|