Skip to content

Commit bc8d8dc

Browse files
author
Bernhard Scholz
authored
Merge branch 'master' into inheritance
2 parents 3fe151a + a50254f commit bc8d8dc

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

src/include/souffle/SouffleInterface.h

+6-3
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,8 @@ class Relation {
332332
/**
333333
* Get the attribute type of a relation at the column specified by the parameter.
334334
* The attribute type is in the form "<primitive type>:<type name>".
335-
* <primitive type> can be s, f, u, or i standing for symbol, float, unsigned, and integer respectively,
335+
* <primitive type> can be s, f, u, i, r, or + standing for symbol, float,
336+
* unsigned, integer, record, and ADT respectively,
336337
* which are the primitive types in Souffle.
337338
* <type name> is the name given by the user in the Souffle program
338339
*
@@ -576,7 +577,8 @@ class tuple {
576577
*/
577578
tuple& operator<<(RamSigned integer) {
578579
assert(pos < size() && "exceeded tuple's size");
579-
assert((*relation.getAttrType(pos) == 'i' || *relation.getAttrType(pos) == 'r') &&
580+
assert((*relation.getAttrType(pos) == 'i' || *relation.getAttrType(pos) == 'r' ||
581+
*relation.getAttrType(pos) == '+') &&
580582
"wrong element type");
581583
array[pos++] = integer;
582584
return *this;
@@ -633,7 +635,8 @@ class tuple {
633635
*/
634636
tuple& operator>>(RamSigned& integer) {
635637
assert(pos < size() && "exceeded tuple's size");
636-
assert((*relation.getAttrType(pos) == 'i' || *relation.getAttrType(pos) == 'r') &&
638+
assert((*relation.getAttrType(pos) == 'i' || *relation.getAttrType(pos) == 'r' ||
639+
*relation.getAttrType(pos) == '+') &&
637640
"wrong element type");
638641
integer = ramBitCast<RamSigned>(array[pos++]);
639642
return *this;

src/synthesiser/Synthesiser.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -2311,7 +2311,7 @@ void Synthesiser::emitCode(std::ostream& out, const Statement& stmt) {
23112311

23122312
auto args = op.getArguments();
23132313
if (op.isStateful()) {
2314-
out << name << "(&symTable, &recordTable";
2314+
out << "functors::" << name << "(&symTable, &recordTable";
23152315
for (auto& arg : args) {
23162316
out << ",";
23172317
dispatch(*arg, out);
@@ -2323,7 +2323,7 @@ void Synthesiser::emitCode(std::ostream& out, const Statement& stmt) {
23232323
if (op.getReturnType() == TypeAttribute::Symbol) {
23242324
out << "symTable.encode(";
23252325
}
2326-
out << name << "(";
2326+
out << "functors::" << name << "(";
23272327

23282328
for (std::size_t i = 0; i < args.size(); i++) {
23292329
if (i > 0) {
@@ -2524,7 +2524,7 @@ void Synthesiser::generateCode(std::ostream& sos, const std::string& id, bool& w
25242524
}
25252525
withSharedLibrary = true;
25262526
});
2527-
os << "extern \"C\" {\n";
2527+
os << "namespace functors {\n extern \"C\" {\n";
25282528
for (const auto& f : functors) {
25292529
// std::size_t arity = f.second.length() - 1;
25302530
const std::string& name = f.first;
@@ -2558,7 +2558,7 @@ void Synthesiser::generateCode(std::ostream& sos, const std::string& id, bool& w
25582558
join(map(argsTypes, cppTypeDecl), ","));
25592559
}
25602560
}
2561-
os << "}\n";
2561+
os << "}\n}\n";
25622562
os << "\n";
25632563
os << "namespace souffle {\n";
25642564
os << "static const RamDomain RAM_BIT_SHIFT_MASK = RAM_DOMAIN_SIZE - 1;\n";

0 commit comments

Comments
 (0)