2011-04-29 14:27:02 +08:00
|
|
|
//===-- JSONExporter.cpp - Export Scops as JSON -------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Export the Scops build by ScopInfo pass as a JSON file.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "polly/LinkAllPasses.h"
|
|
|
|
#include "polly/Dependences.h"
|
2013-05-07 15:31:10 +08:00
|
|
|
#include "polly/Options.h"
|
2011-04-29 14:27:02 +08:00
|
|
|
#include "polly/ScopInfo.h"
|
|
|
|
#include "polly/ScopPass.h"
|
2011-07-13 01:14:03 +08:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2014-04-30 15:26:28 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2013-05-07 16:11:54 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2011-07-13 01:14:03 +08:00
|
|
|
|
2011-04-29 14:52:36 +08:00
|
|
|
#include "json/reader.h"
|
|
|
|
#include "json/writer.h"
|
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
#include "isl/set.h"
|
|
|
|
#include "isl/map.h"
|
|
|
|
#include "isl/constraint.h"
|
|
|
|
#include "isl/printer.h"
|
|
|
|
|
2014-05-19 11:55:49 +08:00
|
|
|
#include <memory>
|
2011-04-29 14:27:02 +08:00
|
|
|
#include <string>
|
2014-06-13 03:22:17 +08:00
|
|
|
#include <system_error>
|
2011-04-29 14:27:02 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace polly;
|
|
|
|
|
2014-04-22 11:30:19 +08:00
|
|
|
#define DEBUG_TYPE "polly-import-jscop"
|
|
|
|
|
2013-03-23 09:05:07 +08:00
|
|
|
STATISTIC(NewAccessMapFound, "Number of updated access functions");
|
2011-07-13 01:14:03 +08:00
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
namespace {
|
2013-05-07 15:30:56 +08:00
|
|
|
static cl::opt<std::string>
|
|
|
|
ImportDir("polly-import-jscop-dir",
|
|
|
|
cl::desc("The directory to import the .jscop files from."),
|
|
|
|
cl::Hidden, cl::value_desc("Directory path"), cl::ValueRequired,
|
2013-05-07 15:31:10 +08:00
|
|
|
cl::init("."), cl::cat(PollyCategory));
|
2013-03-23 09:05:07 +08:00
|
|
|
|
2013-05-07 15:30:56 +08:00
|
|
|
static cl::opt<std::string>
|
|
|
|
ImportPostfix("polly-import-jscop-postfix",
|
|
|
|
cl::desc("Postfix to append to the import .jsop files."),
|
|
|
|
cl::Hidden, cl::value_desc("File postfix"), cl::ValueRequired,
|
2013-05-07 15:31:10 +08:00
|
|
|
cl::init(""), cl::cat(PollyCategory));
|
2011-04-29 14:27:02 +08:00
|
|
|
|
|
|
|
struct JSONExporter : public ScopPass {
|
|
|
|
static char ID;
|
|
|
|
Scop *S;
|
|
|
|
explicit JSONExporter() : ScopPass(ID) {}
|
|
|
|
|
|
|
|
std::string getFileName(Scop *S) const;
|
|
|
|
Json::Value getJSON(Scop &scop) const;
|
|
|
|
virtual bool runOnScop(Scop &S);
|
|
|
|
void printScop(raw_ostream &OS) const;
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const;
|
|
|
|
};
|
2011-04-29 14:52:36 +08:00
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
struct JSONImporter : public ScopPass {
|
|
|
|
static char ID;
|
|
|
|
Scop *S;
|
2011-08-03 21:47:59 +08:00
|
|
|
std::vector<std::string> newAccessStrings;
|
2011-04-29 14:27:02 +08:00
|
|
|
explicit JSONImporter() : ScopPass(ID) {}
|
|
|
|
|
|
|
|
std::string getFileName(Scop *S) const;
|
|
|
|
virtual bool runOnScop(Scop &S);
|
|
|
|
void printScop(raw_ostream &OS) const;
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
char JSONExporter::ID = 0;
|
|
|
|
std::string JSONExporter::getFileName(Scop *S) const {
|
2013-03-23 09:05:07 +08:00
|
|
|
std::string FunctionName = S->getRegion().getEntry()->getParent()->getName();
|
2011-04-29 14:27:02 +08:00
|
|
|
std::string FileName = FunctionName + "___" + S->getNameStr() + ".jscop";
|
|
|
|
return FileName;
|
|
|
|
}
|
|
|
|
|
2013-03-23 09:05:07 +08:00
|
|
|
void JSONExporter::printScop(raw_ostream &OS) const { S->print(OS); }
|
2011-04-29 14:27:02 +08:00
|
|
|
|
|
|
|
Json::Value JSONExporter::getJSON(Scop &scop) const {
|
|
|
|
Json::Value root;
|
|
|
|
|
|
|
|
root["name"] = S->getRegion().getNameStr();
|
|
|
|
root["context"] = S->getContextStr();
|
|
|
|
root["statements"];
|
|
|
|
|
|
|
|
for (Scop::iterator SI = S->begin(), SE = S->end(); SI != SE; ++SI) {
|
|
|
|
ScopStmt *Stmt = *SI;
|
|
|
|
|
|
|
|
Json::Value statement;
|
|
|
|
|
|
|
|
statement["name"] = Stmt->getBaseName();
|
|
|
|
statement["domain"] = Stmt->getDomainStr();
|
|
|
|
statement["schedule"] = Stmt->getScatteringStr();
|
|
|
|
statement["accesses"];
|
|
|
|
|
|
|
|
for (ScopStmt::memacc_iterator MI = Stmt->memacc_begin(),
|
2013-03-23 09:05:07 +08:00
|
|
|
ME = Stmt->memacc_end();
|
|
|
|
MI != ME; ++MI) {
|
2011-04-29 14:27:02 +08:00
|
|
|
Json::Value access;
|
|
|
|
|
|
|
|
access["kind"] = (*MI)->isRead() ? "read" : "write";
|
2011-10-06 08:04:11 +08:00
|
|
|
access["relation"] = (*MI)->getAccessRelationStr();
|
2011-04-29 14:27:02 +08:00
|
|
|
|
|
|
|
statement["accesses"].append(access);
|
|
|
|
}
|
|
|
|
|
|
|
|
root["statements"].append(statement);
|
|
|
|
}
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool JSONExporter::runOnScop(Scop &scop) {
|
|
|
|
S = &scop;
|
|
|
|
Region &R = S->getRegion();
|
|
|
|
|
|
|
|
std::string FileName = ImportDir + "/" + getFileName(S);
|
|
|
|
|
|
|
|
Json::Value jscop = getJSON(scop);
|
|
|
|
Json::StyledWriter writer;
|
|
|
|
std::string fileContent = writer.write(jscop);
|
|
|
|
|
|
|
|
// Write to file.
|
|
|
|
std::string ErrInfo;
|
2014-02-25 02:21:12 +08:00
|
|
|
tool_output_file F(FileName.c_str(), ErrInfo, llvm::sys::fs::F_Text);
|
2011-04-29 14:27:02 +08:00
|
|
|
|
2011-11-17 22:52:36 +08:00
|
|
|
std::string FunctionName = R.getEntry()->getParent()->getName();
|
2011-04-29 14:27:02 +08:00
|
|
|
errs() << "Writing JScop '" << R.getNameStr() << "' in function '"
|
2013-03-23 09:05:07 +08:00
|
|
|
<< FunctionName << "' to '" << FileName << "'.\n";
|
2011-04-29 14:27:02 +08:00
|
|
|
|
|
|
|
if (ErrInfo.empty()) {
|
|
|
|
F.os() << fileContent;
|
|
|
|
F.os().close();
|
|
|
|
if (!F.os().has_error()) {
|
|
|
|
errs() << "\n";
|
|
|
|
F.keep();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
errs() << " error opening file for writing!\n";
|
|
|
|
F.os().clear_error();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void JSONExporter::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
AU.addRequired<ScopInfo>();
|
|
|
|
}
|
|
|
|
|
2013-03-23 09:05:07 +08:00
|
|
|
Pass *polly::createJSONExporterPass() { return new JSONExporter(); }
|
2011-04-29 14:27:02 +08:00
|
|
|
|
|
|
|
char JSONImporter::ID = 0;
|
|
|
|
std::string JSONImporter::getFileName(Scop *S) const {
|
2013-03-23 09:05:07 +08:00
|
|
|
std::string FunctionName = S->getRegion().getEntry()->getParent()->getName();
|
2011-04-29 14:27:02 +08:00
|
|
|
std::string FileName = FunctionName + "___" + S->getNameStr() + ".jscop";
|
|
|
|
|
|
|
|
if (ImportPostfix != "")
|
|
|
|
FileName += "." + ImportPostfix;
|
|
|
|
|
|
|
|
return FileName;
|
|
|
|
}
|
2011-04-29 14:52:36 +08:00
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
void JSONImporter::printScop(raw_ostream &OS) const {
|
|
|
|
S->print(OS);
|
2011-08-03 21:47:59 +08:00
|
|
|
for (std::vector<std::string>::const_iterator I = newAccessStrings.begin(),
|
2013-03-23 09:05:07 +08:00
|
|
|
E = newAccessStrings.end();
|
|
|
|
I != E; I++)
|
2011-08-03 21:47:59 +08:00
|
|
|
OS << "New access function '" << *I << "'detected in JSCOP file\n";
|
2011-04-29 14:27:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef Dependences::StatementToIslMapTy StatementToIslMapTy;
|
|
|
|
|
|
|
|
bool JSONImporter::runOnScop(Scop &scop) {
|
|
|
|
S = &scop;
|
|
|
|
Region &R = S->getRegion();
|
|
|
|
Dependences *D = &getAnalysis<Dependences>();
|
|
|
|
|
|
|
|
std::string FileName = ImportDir + "/" + getFileName(S);
|
|
|
|
|
2011-11-17 22:52:36 +08:00
|
|
|
std::string FunctionName = R.getEntry()->getParent()->getName();
|
2011-04-29 14:27:02 +08:00
|
|
|
errs() << "Reading JScop '" << R.getNameStr() << "' in function '"
|
2013-03-23 09:05:07 +08:00
|
|
|
<< FunctionName << "' from '" << FileName << "'.\n";
|
2014-05-19 11:55:49 +08:00
|
|
|
std::unique_ptr<MemoryBuffer> result;
|
2011-04-29 14:27:02 +08:00
|
|
|
error_code ec = MemoryBuffer::getFile(FileName, result);
|
|
|
|
|
|
|
|
if (ec) {
|
|
|
|
errs() << "File could not be read: " << ec.message() << "\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Json::Reader reader;
|
|
|
|
Json::Value jscop;
|
|
|
|
|
|
|
|
bool parsingSuccessful = reader.parse(result->getBufferStart(), jscop);
|
|
|
|
|
|
|
|
if (!parsingSuccessful) {
|
|
|
|
errs() << "JSCoP file could not be parsed\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-15 19:38:44 +08:00
|
|
|
isl_set *OldContext = S->getContext();
|
2013-03-23 09:05:07 +08:00
|
|
|
isl_set *NewContext =
|
|
|
|
isl_set_read_from_str(S->getIslCtx(), jscop["context"].asCString());
|
2011-11-15 19:38:44 +08:00
|
|
|
|
|
|
|
for (unsigned i = 0; i < isl_set_dim(OldContext, isl_dim_param); i++) {
|
|
|
|
isl_id *id = isl_set_get_dim_id(OldContext, isl_dim_param, i);
|
|
|
|
NewContext = isl_set_set_dim_id(NewContext, isl_dim_param, i, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
isl_set_free(OldContext);
|
|
|
|
S->setContext(NewContext);
|
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
StatementToIslMapTy &NewScattering = *(new StatementToIslMapTy());
|
|
|
|
|
|
|
|
int index = 0;
|
2011-04-29 14:52:36 +08:00
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
for (Scop::iterator SI = S->begin(), SE = S->end(); SI != SE; ++SI) {
|
|
|
|
Json::Value schedule = jscop["statements"][index]["schedule"];
|
2011-10-06 08:03:54 +08:00
|
|
|
isl_map *m = isl_map_read_from_str(S->getIslCtx(), schedule.asCString());
|
2012-05-29 17:29:44 +08:00
|
|
|
isl_space *Space = (*SI)->getDomainSpace();
|
|
|
|
|
|
|
|
// Copy the old tuple id. This is necessary to retain the user pointer,
|
|
|
|
// that stores the reference to the ScopStmt this scattering belongs to.
|
|
|
|
m = isl_map_set_tuple_id(m, isl_dim_in,
|
|
|
|
isl_space_get_tuple_id(Space, isl_dim_set));
|
|
|
|
isl_space_free(Space);
|
2011-04-29 14:27:02 +08:00
|
|
|
NewScattering[*SI] = m;
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!D->isValidScattering(&NewScattering)) {
|
|
|
|
errs() << "JScop file contains a scattering that changes the "
|
|
|
|
<< "dependences. Use -disable-polly-legality to continue anyways\n";
|
2013-07-29 13:12:01 +08:00
|
|
|
for (StatementToIslMapTy::iterator SI = NewScattering.begin(),
|
|
|
|
SE = NewScattering.end();
|
|
|
|
SI != SE; ++SI)
|
|
|
|
isl_map_free(SI->second);
|
2011-04-29 14:27:02 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-10-06 08:04:11 +08:00
|
|
|
for (Scop::iterator SI = S->begin(), SE = S->end(); SI != SE; ++SI) {
|
|
|
|
ScopStmt *Stmt = *SI;
|
2011-04-29 14:27:02 +08:00
|
|
|
|
2011-10-06 08:04:11 +08:00
|
|
|
if (NewScattering.find(Stmt) != NewScattering.end())
|
|
|
|
Stmt->setScattering(NewScattering[Stmt]);
|
2011-04-29 14:27:02 +08:00
|
|
|
}
|
|
|
|
|
2011-07-13 01:14:03 +08:00
|
|
|
int statementIdx = 0;
|
|
|
|
for (Scop::iterator SI = S->begin(), SE = S->end(); SI != SE; ++SI) {
|
|
|
|
ScopStmt *Stmt = *SI;
|
|
|
|
|
2011-07-16 12:55:09 +08:00
|
|
|
int memoryAccessIdx = 0;
|
2011-07-13 01:14:03 +08:00
|
|
|
for (ScopStmt::memacc_iterator MI = Stmt->memacc_begin(),
|
2013-03-23 09:05:07 +08:00
|
|
|
ME = Stmt->memacc_end();
|
|
|
|
MI != ME; ++MI) {
|
2013-07-14 00:58:07 +08:00
|
|
|
Json::Value accesses = jscop["statements"][statementIdx]["accesses"]
|
|
|
|
[memoryAccessIdx]["relation"];
|
2013-03-23 09:05:07 +08:00
|
|
|
isl_map *newAccessMap =
|
|
|
|
isl_map_read_from_str(S->getIslCtx(), accesses.asCString());
|
2011-10-06 08:04:11 +08:00
|
|
|
isl_map *currentAccessMap = (*MI)->getAccessRelation();
|
2011-11-15 19:38:59 +08:00
|
|
|
|
|
|
|
if (isl_map_dim(newAccessMap, isl_dim_param) !=
|
2013-04-10 14:55:45 +08:00
|
|
|
isl_map_dim(currentAccessMap, isl_dim_param)) {
|
2011-11-15 19:38:59 +08:00
|
|
|
errs() << "JScop file changes the number of parameter dimensions\n";
|
|
|
|
isl_map_free(currentAccessMap);
|
|
|
|
isl_map_free(newAccessMap);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need to copy the isl_ids for the parameter dimensions to the new
|
|
|
|
// map. Without doing this the current map would have different
|
|
|
|
// ids then the new one, even though both are named identically.
|
|
|
|
for (unsigned i = 0; i < isl_map_dim(currentAccessMap, isl_dim_param);
|
|
|
|
i++) {
|
|
|
|
isl_id *id = isl_map_get_dim_id(currentAccessMap, isl_dim_param, i);
|
|
|
|
newAccessMap = isl_map_set_dim_id(newAccessMap, isl_dim_param, i, id);
|
|
|
|
}
|
|
|
|
|
2012-05-29 17:29:44 +08:00
|
|
|
// Copy the old tuple id. This is necessary to retain the user pointer,
|
|
|
|
// that stores the reference to the ScopStmt this access belongs to.
|
|
|
|
isl_id *Id = isl_map_get_tuple_id(currentAccessMap, isl_dim_in);
|
|
|
|
newAccessMap = isl_map_set_tuple_id(newAccessMap, isl_dim_in, Id);
|
|
|
|
|
2011-10-06 08:03:35 +08:00
|
|
|
if (!isl_map_has_equal_space(currentAccessMap, newAccessMap)) {
|
2011-08-15 10:33:39 +08:00
|
|
|
errs() << "JScop file contains access function with incompatible "
|
|
|
|
<< "dimensions\n";
|
2011-10-06 08:04:11 +08:00
|
|
|
isl_map_free(currentAccessMap);
|
2011-08-20 19:11:25 +08:00
|
|
|
isl_map_free(newAccessMap);
|
2011-08-15 10:33:39 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (isl_map_dim(newAccessMap, isl_dim_out) != 1) {
|
|
|
|
errs() << "New access map in JScop file should be single dimensional\n";
|
2011-10-06 08:04:11 +08:00
|
|
|
isl_map_free(currentAccessMap);
|
2011-08-20 19:11:25 +08:00
|
|
|
isl_map_free(newAccessMap);
|
2011-08-15 10:33:39 +08:00
|
|
|
return false;
|
|
|
|
}
|
2011-07-13 01:14:03 +08:00
|
|
|
if (!isl_map_is_equal(newAccessMap, currentAccessMap)) {
|
|
|
|
// Statistics.
|
|
|
|
++NewAccessMapFound;
|
2011-08-20 19:11:25 +08:00
|
|
|
newAccessStrings.push_back(accesses.asCString());
|
2011-10-06 08:04:11 +08:00
|
|
|
(*MI)->setNewAccessRelation(newAccessMap);
|
2011-08-20 19:11:25 +08:00
|
|
|
} else {
|
|
|
|
isl_map_free(newAccessMap);
|
2011-07-13 01:14:03 +08:00
|
|
|
}
|
2011-10-06 08:04:11 +08:00
|
|
|
isl_map_free(currentAccessMap);
|
2011-07-13 01:14:03 +08:00
|
|
|
memoryAccessIdx++;
|
|
|
|
}
|
|
|
|
statementIdx++;
|
|
|
|
}
|
|
|
|
|
2011-04-29 14:27:02 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void JSONImporter::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
ScopPass::getAnalysisUsage(AU);
|
|
|
|
AU.addRequired<Dependences>();
|
|
|
|
}
|
2013-03-23 09:05:07 +08:00
|
|
|
Pass *polly::createJSONImporterPass() { return new JSONImporter(); }
|
|
|
|
|
|
|
|
INITIALIZE_PASS_BEGIN(JSONExporter, "polly-export-jscop",
|
|
|
|
"Polly - Export Scops as JSON"
|
|
|
|
" (Writes a .jscop file for each Scop)",
|
|
|
|
false, false);
|
2013-04-10 14:55:45 +08:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(Dependences)
|
2013-03-23 09:05:07 +08:00
|
|
|
INITIALIZE_PASS_END(JSONExporter, "polly-export-jscop",
|
|
|
|
"Polly - Export Scops as JSON"
|
|
|
|
" (Writes a .jscop file for each Scop)",
|
|
|
|
false, false)
|
|
|
|
|
2011-11-15 19:38:36 +08:00
|
|
|
INITIALIZE_PASS_BEGIN(JSONImporter, "polly-import-jscop",
|
|
|
|
"Polly - Import Scops from JSON"
|
2013-03-23 09:05:07 +08:00
|
|
|
" (Reads a .jscop file for each Scop)",
|
|
|
|
false, false);
|
2013-04-10 14:55:45 +08:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(Dependences)
|
2011-11-15 19:38:36 +08:00
|
|
|
INITIALIZE_PASS_END(JSONImporter, "polly-import-jscop",
|
|
|
|
"Polly - Import Scops from JSON"
|
2013-03-23 09:05:07 +08:00
|
|
|
" (Reads a .jscop file for each Scop)",
|
|
|
|
false, false)
|