This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
pacciani/BitcodeEmitter.cpp

96 lines
2.0 KiB
C++
Raw Normal View History

2015-03-05 14:26:24 +01:00
/*
* Monicelli: an esoteric language compiler
*
* Copyright (C) 2014 Stefano Sanfilippo
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "BitcodeEmitter.hpp"
#include "Nodes.hpp"
2015-03-05 14:26:24 +01:00
using namespace monicelli;
struct BitcodeEmitter::Private {
};
2015-03-05 14:26:24 +01:00
BitcodeEmitter::BitcodeEmitter() {
d = new Private;
2015-03-05 14:26:24 +01:00
}
BitcodeEmitter::~BitcodeEmitter() {
delete d;
2015-03-05 14:26:24 +01:00
}
void BitcodeEmitter::emit(Return const& node) {
}
void BitcodeEmitter::emit(Loop const& node) {
}
void BitcodeEmitter::emit(VarDeclaration const& node) {
}
void BitcodeEmitter::emit(Assignment const& node) {
}
void BitcodeEmitter::emit(Print const& node) {
}
void BitcodeEmitter::emit(Input const& node) {
}
void BitcodeEmitter::emit(Abort const& node) {
}
void BitcodeEmitter::emit(Assert const& node) {
}
void BitcodeEmitter::emit(FunctionCall const& node) {
}
void BitcodeEmitter::emit(BranchCase const& node) {
}
void BitcodeEmitter::emit(Branch const& node) {
}
void BitcodeEmitter::emit(Main const& node) {
}
void BitcodeEmitter::emit(Function const& node) {
}
void BitcodeEmitter::emit(Module const& node) {
}
void BitcodeEmitter::emit(Program const& node) {
}
void BitcodeEmitter::emit(Id const& node) {
2015-03-05 14:26:24 +01:00
}
void BitcodeEmitter::emit(Integer const& node) {
2015-03-05 14:26:24 +01:00
}
void BitcodeEmitter::emit(Float const& node) {
2015-03-05 14:26:24 +01:00
}
void BitcodeEmitter::emit(BinaryExpression const& node) {
2015-03-05 14:26:24 +01:00
}
void BitcodeEmitter::emit(BinarySemiExpression const& node) {
2015-03-05 14:26:24 +01:00
}