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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
/************************************************************************
************************************************************************
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.
************************************************************************
************************************************************************/
/*****************************************************************************
******************************************************************************/
/** \file node.hh
* A Node is a tagged unions of int, double, symbol and void* used in the implementation of CTrees.
* Nodes are completly described by the node.h file, there is no node.cpp file.
*
* <b>API:</b>
*
* Node(symbol("abcd")); : node with symbol content
* Node(10); : node with int content
* Node(3.14159); : node with double content
*
* n->type(); : kIntNode or kDoubleNode or kSymNode
*
* n->getInt(); : int content of n
* n->getDouble(); : double content of n
* n->getSym(); : symbol content of n
*
* if (isInt(n, &i)) : int i = int content of n
* if (isDouble(n, &f)) : double f = double content of n
* if (isSym(n, &s)) : Sym s = Sym content of n
*
*/
/******************************************************************************
*****************************************************************************/
#ifndef __NODE__
#define __NODE__
#include <stdint.h>
#include <sys/types.h>
#include <cmath>
#include <iostream>
#include "garbageable.hh"
#include "symbol.hh"
/**
* Tags used to define the type of a Node
*/
enum NodeType { kIntNode, kInt64Node, kDoubleNode, kSymNode, kPointerNode };
/**
* Class Node = (type x (int + double + Sym + void*))
*/
class Node : public virtual Garbageable {
int fType;
union {
int i;
double f;
Sym s;
void* p;
int64_t v;
} fData;
public:
// constructors (assume size of field f is the biggest)
Node() { fData.v = 0; }
Node(int x) : fType(kIntNode)
{
fData.f = 0.0;
fData.i = x;
}
Node(double x) : fType(kDoubleNode) { fData.f = x; }
Node(int64_t x) : fType(kInt64Node) { fData.v = x; }
Node(const char* name) : fType(kSymNode)
{
fData.f = 0.0;
fData.s = symbol(name);
}
Node(const std::string& name) : fType(kSymNode)
{
fData.f = 0.0;
fData.s = symbol(name);
}
Node(Sym x) : fType(kSymNode)
{
fData.f = 0.0;
fData.s = x;
}
Node(void* x) : fType(kPointerNode)
{
fData.f = 0.0;
fData.p = x;
}
// predicats
bool operator==(const Node& n) const { return fType == n.fType && fData.v == n.fData.v; }
bool operator!=(const Node& n) const { return fType != n.fType || fData.v != n.fData.v; }
// accessors
int type() const { return fType; }
int getInt() const { return fData.i; }
int64_t getInt64() const { return fData.v; }
double getDouble() const { return fData.f; }
Sym getSym() const { return fData.s; }
void* getPointer() const { return fData.p; }
// conversions and promotion for numbers
operator int() const
{
return (fType == kIntNode) ? fData.i : (fType == kDoubleNode) ? int(fData.f) : 0;
}
operator double() const
{
return (fType == kIntNode) ? double(fData.i) : (fType == kDoubleNode) ? fData.f : 0.0;
}
std::ostream& print(std::ostream& fout) const; ///< print a node on a stream
};
// printing
inline std::ostream& operator<<(std::ostream& s, const Node& n)
{
return n.print(s);
}
//-------------------------------------------------------------------------
// Predicates and pattern matching
//-------------------------------------------------------------------------
// integers 32 bits
inline bool isInt(const Node& n)
{
return (n.type() == kIntNode);
}
inline bool isInt(const Node& n, int* x)
{
if (n.type() == kIntNode) {
*x = n.getInt();
return true;
} else {
return false;
}
}
// integer 64 bits: incomplete implementation but enough to be used in FTZ = 2 mode
inline bool isInt64(const Node& n)
{
return (n.type() == kInt64Node);
}
inline bool isInt64(const Node& n, int64_t* x)
{
if (n.type() == kInt64Node) {
*x = n.getInt64();
return true;
} else {
return false;
}
}
// floats
inline bool isDouble(const Node& n)
{
return (n.type() == kDoubleNode);
}
inline bool isDouble(const Node& n, double* x)
{
if (n.type() == kDoubleNode) {
*x = n.getDouble();
return true;
} else {
return false;
}
}
inline bool isZero(const Node& n)
{
return ((n.type() == kDoubleNode) && (n.getDouble() == 0.0)) ||
((n.type() == kIntNode) && (n.getInt() == 0));
}
inline bool isGEZero(const Node& n)
{
return ((n.type() == kDoubleNode) && (n.getDouble() >= 0.0)) ||
((n.type() == kIntNode) && (n.getInt() >= 0));
}
inline bool isGTZero(const Node& n)
{
return ((n.type() == kDoubleNode) && (n.getDouble() > 0.0)) ||
((n.type() == kIntNode) && (n.getInt() > 0));
}
inline bool isOne(const Node& n)
{
return ((n.type() == kDoubleNode) && (n.getDouble() == 1.0)) ||
((n.type() == kIntNode) && (n.getInt() == 1));
}
inline bool isMinusOne(const Node& n)
{
return ((n.type() == kDoubleNode) && (n.getDouble() == -1.0)) ||
((n.type() == kIntNode) && (n.getInt() == -1));
}
inline bool isNegative(const Node& n)
{
return ((n.type() == kDoubleNode) && (n.getDouble() < 0.0)) ||
((n.type() == kIntNode) && (n.getInt() < 0));
}
bool sameMagnitude(const Node& a, const Node& b);
// numbers in general
inline bool isNum(const Node& n)
{
return isInt(n) || isDouble(n);
}
// symbols
inline bool isSym(const Node& n)
{
return (n.type() == kSymNode);
}
inline bool isSym(const Node& n, Sym* x)
{
if (n.type() == kSymNode) {
*x = n.getSym();
return true;
} else {
return false;
}
}
// void pointer
inline bool isPointer(const Node& n)
{
return (n.type() == kPointerNode);
}
inline bool isPointer(const Node& n, void** x)
{
if (n.type() == kPointerNode) {
*x = n.getPointer();
return true;
} else {
return false;
}
}
//-------------------------------------------------------------------------
// Mathematical operations on nodes
//-------------------------------------------------------------------------
// arithmetic operations
inline const Node addNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) + double(y)) : Node(int(x) + int(y));
}
inline const Node subNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) - double(y)) : Node(int(x) - int(y));
}
inline const Node mulNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) * double(y)) : Node(int(x) * int(y));
}
inline const Node divExtendedNode(const Node& x, const Node& y)
{
if (isZero(y)) {
std::stringstream error;
error << "ERROR : division by 0 in " << x << " / " << y << std::endl;
throw faustexception(error.str());
} else if (isDouble(x) || isDouble(y)) {
return Node(double(x) / double(y));
} else {
int xi = int(x);
int yi = int(y);
int intDiv = xi / yi;
double dblDiv = double(xi) / double(yi);
return (double(intDiv) == dblDiv) ? Node(intDiv) : Node(dblDiv);
}
}
inline const Node remNode(const Node& x, const Node& y)
{
if (isZero(y)) {
std::stringstream error;
error << "ERROR : % by 0 in " << x << " % " << y << std::endl;
throw faustexception(error.str());
} else if (isInt(x) && isInt(y)) {
return Node(int(x) % int(y));
} else {
return Node(std::fmod(double(x), double(y)));
}
}
// inverse functions
inline const Node minusNode(const Node& x)
{
return subNode(0, x);
}
inline const Node inverseNode(const Node& x)
{
return divExtendedNode(1.0, x);
}
// bit shifting operations
inline const Node lshNode(const Node& x, const Node& y)
{
return Node(int(x) << int(y));
}
inline const Node arshNode(const Node& x, const Node& y)
{
return Node(int(x) >> int(y));
}
inline const Node lrshNode(const Node& x, const Node& y)
{
return Node(int(x) >> int(y));
}
// boolean operations on bits
inline const Node andNode(const Node& x, const Node& y)
{
return Node(int(x) & int(y));
}
inline const Node orNode(const Node& x, const Node& y)
{
return Node(int(x) | int(y));
}
inline const Node xorNode(const Node& x, const Node& y)
{
return Node(int(x) ^ int(y));
}
// compare operations
inline const Node gtNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) > double(y)) : Node(int(x) > int(y));
}
inline const Node ltNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) < double(y)) : Node(int(x) < int(y));
}
inline const Node geNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) >= double(y)) : Node(int(x) >= int(y));
}
inline const Node leNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) <= double(y)) : Node(int(x) <= int(y));
}
#if 1
inline const Node eqNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) == double(y)) : Node(int(x) == int(y));
}
inline const Node neNode(const Node& x, const Node& y)
{
return (isDouble(x) || isDouble(y)) ? Node(double(x) != double(y)) : Node(int(x) != int(y));
}
#endif
#endif
|