serene/libserene.v0/lib/exprs/def.cpp

139 lines
4.1 KiB
C++
Raw Normal View History

/*
2021-10-12 20:51:03 +01:00
* Serene Programming Language
*
2022-01-27 11:44:44 +00:00
* Copyright (c) 2019-2022 Sameer Rahmani <lxsameer@gnu.org>
*
2021-10-12 20:51:03 +01:00
* 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, version 2.
*
2021-10-12 20:51:03 +01:00
* 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.
*
2021-10-12 20:51:03 +01:00
* 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 "serene/exprs/def.h"
#include "serene/errors.h"
#include "serene/exprs/expression.h"
2021-06-01 20:47:46 +01:00
#include "serene/exprs/fn.h"
#include "serene/exprs/list.h"
#include "serene/exprs/symbol.h"
2021-06-01 20:47:46 +01:00
#include "serene/exprs/traits.h"
2022-01-22 11:31:04 +00:00
#include "serene/slir/dialect.h"
#include "serene/slir/utils.h"
2021-06-23 20:34:57 +01:00
#include <llvm/Support/Casting.h>
#include <llvm/Support/ErrorHandling.h>
#include <llvm/Support/FormatVariadic.h>
namespace serene {
namespace exprs {
ExprType Def::getType() const { return ExprType::Def; };
std::string Def::toString() const {
return llvm::formatv("<Def {0} -> {1}>", this->binding,
this->value->toString());
}
MaybeNode Def::analyze(semantics::AnalysisState &state) {
UNUSED(state);
return EmptyNode;
};
bool Def::classof(const Expression *e) {
return e->getType() == ExprType::Def;
};
MaybeNode Def::make(semantics::AnalysisState &state, List *list) {
auto &ctx = state.ns.getContext();
// TODO: Add support for docstring as the 3rd argument (4th element)
if (list->count() != 3) {
std::string msg = llvm::formatv("Expected 3 got {0}", list->count());
return errors::makeError(ctx, errors::DefWrongNumberOfArgs,
list->elements[0]->location, msg);
}
2021-04-24 19:10:18 +01:00
// Make sure that the list starts with a `def`
Symbol *defSym = llvm::dyn_cast<Symbol>(list->elements[0].get());
assert((defSym && defSym->name == "def") &&
"The first element of the list should be a 'def'.");
2021-04-24 19:10:18 +01:00
// Make sure that the first argument is a Symbol
Symbol *binding = llvm::dyn_cast<Symbol>(list->elements[1].get());
2021-10-17 14:33:16 +01:00
if (binding == nullptr) {
return errors::makeError(ctx, errors::DefExpectSymbol,
list->elements[1]->location);
}
2021-04-24 19:10:18 +01:00
// Analyze the value
MaybeNode value = list->elements[2]->analyze(state);
2021-04-25 23:02:52 +01:00
Node analyzedValue;
2021-04-24 19:10:18 +01:00
// TODO: To refactor this logic into a generic function
2021-04-24 19:10:18 +01:00
if (value) {
// Success value
auto &valueNode = *value;
2021-04-24 19:10:18 +01:00
if (valueNode) {
// A rewrite is necessary
analyzedValue = valueNode;
} else {
// no rewrite
analyzedValue = list->elements[2];
}
} else {
// Error value
return value;
}
2021-06-01 20:47:46 +01:00
if (analyzedValue->getType() == ExprType::Fn) {
Fn *tmp = llvm::dyn_cast<Fn>(analyzedValue.get());
2021-10-17 14:33:16 +01:00
if (tmp == nullptr) {
2021-06-01 20:47:46 +01:00
llvm_unreachable("inconsistent getType for function");
}
2021-06-01 20:47:46 +01:00
tmp->setName(binding->name);
}
auto result = state.ns.define(binding->name, analyzedValue);
if (result.succeeded()) {
return makeSuccessfulNode<Def>(list->location, binding->name,
analyzedValue);
}
2021-10-17 14:33:16 +01:00
llvm_unreachable("Inserting a value in the semantic env failed!");
};
void Def::generateIR(serene::Namespace &ns, mlir::ModuleOp &m) {
2021-06-23 20:34:57 +01:00
if (value->getType() == ExprType::Fn) {
value->generateIR(ns, m);
2021-06-23 20:34:57 +01:00
return;
}
2022-01-22 11:31:04 +00:00
// auto loc = slir::toMLIRLocation(ns, location.start);
// auto &mctx = ns.getContext().mlirContext;
// mlir::OpBuilder builder(&mctx);
// auto sym = slir::SymbolType::get(&mctx, ns.name, binding);
// TODO: we need to change the generate method of expressions
// to return mlir::Value or any wrapper of that which would
// be the ssa form of the result of the expression.
// and then use it to define the def op here.
// auto def = builder.create<slir::DefOp>(sym, binding, value);
m.emitError("Def: not implemented!");
2021-06-23 20:34:57 +01:00
};
} // namespace exprs
} // namespace serene