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
|
/* $Id$
*
* Copyright (C) 2008-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#include "intermediate/container/TypeFactory.hpp"
#include <cassert>
namespace intermediate {
TypeFactory::typesNameT TypeFactory::typesByName = TypeFactory::initialize();
TypeFactory::typesNameT
TypeFactory::initialize(void)
{
TypeFactory::typesNameT ret = typesNameT();
Type *t = new Type("universal_integer", std::list<TypeElement*>());
ret["universal_integer"] = t;
t = new Type("universal_real", std::list<TypeElement*>());
ret["universal_real"] = t;
return ret;
}
std::string
TypeFactory::getTypeName(enum ast::BaseType bt) {
switch(bt) {
case ast::BASE_TYPE_INTEGER:
return std::string("universal_integer");
case ast::BASE_TYPE_REAL:
case ast::BASE_TYPE_ENUM:
return std::string("universal_real");
default:
assert(false);
}
// not reached.
// make g++ happy
return std::string("error: not reached");
}
Type *
TypeFactory::getType(std::string typeName, std::list<TypeElement*> relements)
{
Type *t = new Type(typeName, relements);
TypeFactory::typesByName[typeName] = t;
return t;
}
Type *
TypeFactory::lookupType(std::string typeName)
{
typesNameT::const_iterator i =
TypeFactory::typesByName.find(typeName);
if (i != TypeFactory::typesByName.end()) {
return i->second;
}
return NULL;
}
}; /* namespace intermediate */
|