Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CoreIR Changes/Fixes #607

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ TARGET = dylib
prefix?=/usr/local
endif

COREDEBUG = True
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think should be checked in, seems like a debugging setting for yourself? FYI you can pass this as a flag to make, e.g. make COREDEBUG=1, rather than setting it in the file explicitly


COREIRCONFIG ?= g++
CXX ?= g++
Expand All @@ -27,7 +28,7 @@ CFLAGS = -Wall -fPIC
CXXFLAGS = -std=c++11 -Wall -fPIC -Werror

ifdef COREDEBUG
CXXFLAGS += -O0 -g3 -D_GLIBCXX_DEBUG
CXXFLAGS += -O0 -g3
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the reason for this removal?

endif

export CXX
Expand Down
8 changes: 4 additions & 4 deletions include/coreir/passes/analysis/vmodule.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ class VModule {
VModule(Module* m) : VModule(m->getName(),m->getType()) {
if (m->isGenerated()) this->modname = m->getLongName();
this->addParams(params,m->getModParams());
this->addDefaults(paramDefaults,m->getDefaultModArgs());
this->addDefaults(&paramDefaults,m->getDefaultModArgs());
this->checkJson(m->getMetaData());
}
VModule(Generator* g) : modname(g->getName()), gen(g) {
this->addParams(params,g->getGenParams());
this->addDefaults(paramDefaults,g->getDefaultGenArgs());
this->addDefaults(&paramDefaults,g->getDefaultGenArgs());
this->checkJson(g->getMetaData());
}
void checkJson(json jmeta) {
Expand Down Expand Up @@ -140,10 +140,10 @@ class VModule {
sps.insert(p.first);
}
}
void addDefaults(SMap sm, Values ds) {
void addDefaults(SMap* sm, Values ds) {
for (auto dpair : ds) {
ASSERT(params.count(dpair.first),modname + " NYI Cannot Add default! " + dpair.first);
sm[dpair.first] = toConstString(dpair.second);
(*sm)[dpair.first] = toConstString(dpair.second);
}
}
std::string toConstString(Value* v) {
Expand Down
4 changes: 3 additions & 1 deletion src/ir/module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ Module::Module(Namespace* ns,std::string name, Type* type,Params modparams) : Gl
Module::Module(Namespace* ns,std::string name, Type* type,Params modparams, Generator* g, Values genargs) : GlobalValue(GVK_Module,ns,name), Args(modparams), modparams(modparams), g(g), genargs(genargs) {
ASSERT(isa<RecordType>(type), "Module type needs to be a record!\n"+type->toString());
this->type = cast<RecordType>(type);
ASSERT(g && genargs.size(),"Missing genargs!");
//ASSERT(g && genargs.size(),"Missing genargs!");
ASSERT(g, "Missing generator!");
ASSERT(genargs.size() == g->getTypeGen()->getParams().size(), "generator argument size does not match parameter list size!");
this->longname = name + getContext()->getUnique(); //TODO do a better name
}

Expand Down
36 changes: 31 additions & 5 deletions src/ir/moduledef_validate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,41 @@ bool ModuleDef::checkTypes(Wireable* a, Wireable* b) {
//TODO This might not be valid if:
// 2 outputs are connected to the same input

//cout << "Got types" << endl;

if (ta == c->Flip(tb) ) {
//cout << "ta flipped" << endl;
return false;
}

//cout << "Flipped types" << endl;


// Potential fix for Inout Connections
// cout << "Finding BitInOut Connection in ModuleDef" << std::endl;
// if ((ta->getKind() == ta->TypeKind::TK_BitInOut) | (tb->getKind() == tb->TypeKind::TK_BitInOut))
// {
// cout << "Found BitInOut Connection" << std::endl;
// return false;
// }
//
// if ((ta->getKind() == ta->TypeKind::TK_Array) && (tb->getKind() == ta->TypeKind::TK_Array))
// {
// if (ta->getLen() == tb->getLen()) // Arrays must be same length
// {
// if (ta->elemType == c->Flip(tb->elemType)) // Arrays must have flipped elements
// {
// cout << "Arrays with same length, flipped elements" << endl;
// return false;
// }
//
// if ((ta->elemType->getKind() == ta->TypeKind::TK_BitInOut) && ((tb->elemType->getKind() == tb->TypeKind::TK_BitIn) | (tb->elemType->getKind() == tb->TypeKind::TK_Bit)))
// {
// cout << "1 BitInOut Array, 1 " << tb->toString() << endl;
// return false;
// }
// if ((tb->elemType->getKind() == tb->TypeKind::TK_BitInOut) && ((ta->elemType->getKind() == ta->TypeKind::TK_BitIn) | (ta->elemType->getKind() == ta->TypeKind::TK_Bit)))
// {
// cout << "2 BitInOut Array, 1 " << ta->toString() << endl;
// return false;
// }
// }
// }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you submit the code in the comments as a separate PR? Or you could include it in this PR, but it would be good to include a test case that shows what this fixes.

Error e;
e.message(a->getContainer()->getName() + ": Cannot wire together");
e.message(" " + a->toString() + " : " + a->getType()->toString());
Expand Down
6 changes: 4 additions & 2 deletions src/passes/analysis/verifyinputconnections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ bool checkTypes(Wireable* a, Wireable* b) {
Context* c = a->getContext();
Type* ta = a->getType();
Type* tb = b->getType();


//TODO This might not be valid if:
// 2 outputs are connected to the same input
// an inout is connected to an input (good!)
// an inout is connected to an output (bad!)

if (ta == c->Flip(tb) ) return false;

Error e;
e.message("Cannot wire together");
e.message(" " + a->toString() + " : " + a->getType()->toString());
Expand Down
2 changes: 1 addition & 1 deletion src/passes/transform/removebulkconnections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using namespace CoreIR;

namespace {
inline bool isBit(Type* t) {
return isa<BitType>(t) || isa<BitInType>(t) || isa<NamedType>(t);
return isa<BitType>(t) || isa<BitInType>(t) || isa<NamedType>(t) || isa<BitInOutType>(t);
}
bool isBitOrArrOfBits(Type* t) {
if (isBit(t)) return true;
Expand Down