2012-04-13 01:08:20 +00:00
|
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//*************************************************************************
|
|
|
|
|
// DESCRIPTION: Verilator: File stream wrapper that understands indentation
|
|
|
|
|
//
|
2008-04-25 12:14:27 +00:00
|
|
|
|
// Code available from: http://www.veripool.org/verilator
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
//
|
2018-01-02 23:05:06 +00:00
|
|
|
|
// Copyright 2003-2018 by Wilson Snyder. This program is free software; you can
|
2006-08-26 11:35:28 +00:00
|
|
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
2009-05-04 21:07:57 +00:00
|
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
|
// Version 2.0.
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//
|
|
|
|
|
// Verilator 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.
|
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
|
|
|
|
|
#ifndef _V3FILE_H_
|
|
|
|
|
#define _V3FILE_H_ 1
|
2006-12-18 19:20:45 +00:00
|
|
|
|
#include "config_build.h"
|
|
|
|
|
#include "verilatedos.h"
|
2006-08-26 11:35:28 +00:00
|
|
|
|
#include "V3Error.h"
|
2008-06-30 17:11:25 +00:00
|
|
|
|
#include <cstdio>
|
2006-08-26 11:35:28 +00:00
|
|
|
|
#include <stack>
|
|
|
|
|
#include <set>
|
2010-04-07 00:20:44 +00:00
|
|
|
|
#include <list>
|
2006-08-26 11:35:28 +00:00
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
// V3File: Create streams, recording dependency information
|
|
|
|
|
|
|
|
|
|
class V3File {
|
|
|
|
|
public:
|
|
|
|
|
static ifstream* new_ifstream(const string& filename) {
|
|
|
|
|
addSrcDepend(filename);
|
|
|
|
|
return new_ifstream_nodepend (filename);
|
|
|
|
|
}
|
|
|
|
|
static ifstream* new_ifstream_nodepend(const string& filename) {
|
|
|
|
|
return new ifstream(filename.c_str());
|
|
|
|
|
}
|
|
|
|
|
static ofstream* new_ofstream(const string& filename, bool append=false) {
|
|
|
|
|
addTgtDepend(filename);
|
2006-10-12 14:01:06 +00:00
|
|
|
|
return new_ofstream_nodepend (filename, append);
|
|
|
|
|
}
|
|
|
|
|
static ofstream* new_ofstream_nodepend(const string& filename, bool append=false) {
|
2013-11-29 13:28:48 +00:00
|
|
|
|
if (filename != VL_DEV_NULL) createMakeDir();
|
2006-08-26 11:35:28 +00:00
|
|
|
|
if (append) {
|
|
|
|
|
return new ofstream(filename.c_str(), ios::app);
|
|
|
|
|
} else {
|
|
|
|
|
return new ofstream(filename.c_str());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
static FILE* new_fopen_w(const string& filename) {
|
2013-11-29 13:28:48 +00:00
|
|
|
|
if (filename != VL_DEV_NULL) createMakeDir();
|
2006-08-26 11:35:28 +00:00
|
|
|
|
addTgtDepend(filename);
|
|
|
|
|
return fopen(filename.c_str(),"w");
|
|
|
|
|
}
|
2008-01-31 13:50:06 +00:00
|
|
|
|
|
2006-08-26 11:35:28 +00:00
|
|
|
|
// Dependencies
|
|
|
|
|
static void addSrcDepend(const string& filename);
|
|
|
|
|
static void addTgtDepend(const string& filename);
|
|
|
|
|
static void writeDepend(const string& filename);
|
|
|
|
|
static void writeTimes(const string& filename, const string& cmdline);
|
|
|
|
|
static bool checkTimes(const string& filename, const string& cmdline);
|
2008-01-31 13:50:06 +00:00
|
|
|
|
|
|
|
|
|
// Directory utilities
|
|
|
|
|
static void createMakeDir();
|
2006-08-26 11:35:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
2010-01-20 12:15:51 +00:00
|
|
|
|
// V3InFilter: Read a input file, possibly filtering it, and caching contents
|
|
|
|
|
|
|
|
|
|
class V3InFilterImp;
|
|
|
|
|
|
|
|
|
|
class V3InFilter {
|
|
|
|
|
public:
|
2010-04-07 00:20:44 +00:00
|
|
|
|
// TYPES
|
|
|
|
|
typedef list<string> StrList;
|
|
|
|
|
|
2017-11-01 22:51:41 +00:00
|
|
|
|
private:
|
|
|
|
|
V3InFilterImp* m_impp;
|
2010-01-20 12:15:51 +00:00
|
|
|
|
|
|
|
|
|
// CONSTRUCTORS
|
2017-11-01 22:51:41 +00:00
|
|
|
|
VL_UNCOPYABLE(V3InFilter);
|
|
|
|
|
public:
|
2015-10-04 02:33:06 +00:00
|
|
|
|
explicit V3InFilter(const string& command);
|
2010-01-20 12:15:51 +00:00
|
|
|
|
~V3InFilter();
|
2017-11-01 22:51:41 +00:00
|
|
|
|
|
|
|
|
|
// METHODS
|
|
|
|
|
// Read file contents and return it. Return true on success.
|
|
|
|
|
bool readWholefile(const string& filename, StrList& outl);
|
2010-01-20 12:15:51 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
2010-01-07 15:50:23 +00:00
|
|
|
|
// V3OutFormatter: A class for automatic indentation of C++ or Verilog code.
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
2010-01-07 15:50:23 +00:00
|
|
|
|
class V3OutFormatter {
|
2006-08-29 00:58:48 +00:00
|
|
|
|
// TYPES
|
|
|
|
|
enum MiscConsts {
|
|
|
|
|
MAXSPACE = 80}; // After this indent, stop indenting more
|
|
|
|
|
public:
|
|
|
|
|
enum AlignClass {
|
|
|
|
|
AL_AUTO = 0,
|
|
|
|
|
AL_STATIC = 1};
|
2012-03-20 19:57:29 +00:00
|
|
|
|
enum Language {
|
|
|
|
|
LA_C = 0,
|
|
|
|
|
LA_VERILOG = 1,
|
|
|
|
|
LA_MK = 2,
|
|
|
|
|
LA_XML = 3,
|
|
|
|
|
};
|
2006-08-29 00:58:48 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
// MEMBERS
|
2008-06-30 18:31:58 +00:00
|
|
|
|
string m_filename;
|
2012-03-20 19:57:29 +00:00
|
|
|
|
Language m_lang; // Indenting Verilog code
|
2015-10-21 01:22:00 +00:00
|
|
|
|
int m_blockIndent; // Characters per block indent
|
2016-09-14 02:53:09 +00:00
|
|
|
|
int m_commaWidth; // Width after which to break at ,'s
|
2006-08-26 11:35:28 +00:00
|
|
|
|
int m_lineno;
|
|
|
|
|
int m_column;
|
|
|
|
|
int m_nobreak; // Basic operator or begin paren, don't break next
|
|
|
|
|
bool m_prependIndent;
|
|
|
|
|
int m_indentLevel; // Current {} indentation
|
|
|
|
|
stack<int> m_parenVec; // Stack of columns where last ( was
|
|
|
|
|
|
|
|
|
|
int endLevels(const char* strg);
|
2010-01-07 21:41:19 +00:00
|
|
|
|
const char* indentStr(int levels);
|
2010-01-07 15:50:23 +00:00
|
|
|
|
void putcNoTracking(char chr);
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
|
|
|
|
public:
|
2012-03-20 19:57:29 +00:00
|
|
|
|
V3OutFormatter(const string& filename, Language lang);
|
2010-01-07 15:50:23 +00:00
|
|
|
|
virtual ~V3OutFormatter() {}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
// ACCESSORS
|
2015-10-21 01:22:00 +00:00
|
|
|
|
int column() const { return m_column; }
|
|
|
|
|
int blockIndent() const { return m_blockIndent; }
|
|
|
|
|
void blockIndent(int flag) { m_blockIndent=flag; }
|
2006-08-26 11:35:28 +00:00
|
|
|
|
// METHODS
|
|
|
|
|
void printf(const char* fmt...) VL_ATTR_PRINTF(2);
|
|
|
|
|
void puts(const char* strg);
|
|
|
|
|
void puts(const string& strg) { puts(strg.c_str()); }
|
2015-11-10 23:59:48 +00:00
|
|
|
|
void putsNoTracking(const string& strg);
|
|
|
|
|
void putsQuoted(const string& strg);
|
2006-08-26 11:35:28 +00:00
|
|
|
|
void putBreak(); // Print linebreak if line is too wide
|
|
|
|
|
void putBreakExpr(); // Print linebreak in expression if line is too wide
|
|
|
|
|
void putbs(const char* strg) { putBreakExpr(); puts(strg); }
|
|
|
|
|
void putbs(const string& strg) { putBreakExpr(); puts(strg); }
|
2016-09-14 02:53:09 +00:00
|
|
|
|
bool exceededWidth() const { return m_column > m_commaWidth; }
|
2006-08-26 11:35:28 +00:00
|
|
|
|
bool tokenStart(const char* cp, const char* cmp);
|
|
|
|
|
bool tokenEnd(const char* cp);
|
2015-10-21 01:22:00 +00:00
|
|
|
|
void indentInc() { m_indentLevel += m_blockIndent; }
|
2008-06-30 18:31:58 +00:00
|
|
|
|
void indentDec() {
|
2015-10-21 01:22:00 +00:00
|
|
|
|
m_indentLevel -= m_blockIndent;
|
2008-06-30 18:31:58 +00:00
|
|
|
|
UASSERT(m_indentLevel>=0, ": "<<m_filename<<": Underflow of indentation\n");
|
2006-08-26 11:35:28 +00:00
|
|
|
|
}
|
2015-10-21 01:22:00 +00:00
|
|
|
|
void blockInc() { m_parenVec.push(m_indentLevel + m_blockIndent); }
|
2006-08-26 11:35:28 +00:00
|
|
|
|
void blockDec() { if (!m_parenVec.empty()) m_parenVec.pop(); }
|
|
|
|
|
// STATIC METHODS
|
|
|
|
|
static const string indentSpaces(int levels);
|
2010-01-07 15:50:23 +00:00
|
|
|
|
|
|
|
|
|
// CALLBACKS - MUST OVERRIDE
|
|
|
|
|
virtual void putcOutput(char chr) = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
// V3OutFile: A class for printing to a file, with automatic indentation of C++ code.
|
|
|
|
|
|
|
|
|
|
class V3OutFile : public V3OutFormatter {
|
|
|
|
|
// MEMBERS
|
|
|
|
|
FILE* m_fp;
|
|
|
|
|
public:
|
2012-03-20 19:57:29 +00:00
|
|
|
|
V3OutFile(const string& filename, V3OutFormatter::Language lang);
|
2010-01-07 15:50:23 +00:00
|
|
|
|
virtual ~V3OutFile();
|
2017-02-09 12:43:43 +00:00
|
|
|
|
void putsForceIncs();
|
2006-08-26 11:35:28 +00:00
|
|
|
|
private:
|
2010-01-07 15:50:23 +00:00
|
|
|
|
// CALLBACKS
|
|
|
|
|
virtual void putcOutput(char chr) { fputc(chr, m_fp); }
|
2006-08-26 11:35:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2012-03-20 19:57:29 +00:00
|
|
|
|
//######################################################################
|
|
|
|
|
// V3OutCFile: A class for abstracting out SystemC/C++ details
|
|
|
|
|
|
|
|
|
|
class V3OutCFile : public V3OutFile {
|
|
|
|
|
int m_private;
|
|
|
|
|
public:
|
2015-10-04 02:33:06 +00:00
|
|
|
|
explicit V3OutCFile(const string& filename) : V3OutFile(filename, V3OutFormatter::LA_C) {
|
2012-03-20 19:57:29 +00:00
|
|
|
|
resetPrivate();
|
|
|
|
|
}
|
|
|
|
|
virtual ~V3OutCFile() {}
|
|
|
|
|
virtual void putsCellDecl(const string& classname, const string& cellname) {
|
2014-06-09 01:36:18 +00:00
|
|
|
|
string classStar = classname + "*";
|
|
|
|
|
this->printf("%-19s\t%s;\n", classStar.c_str(), cellname.c_str());
|
2012-03-20 19:57:29 +00:00
|
|
|
|
}
|
|
|
|
|
virtual void putsHeader() { puts("// Verilated -*- C++ -*-\n"); }
|
2017-02-09 12:43:43 +00:00
|
|
|
|
virtual void putsIntTopInclude() {
|
|
|
|
|
putsForceIncs();
|
|
|
|
|
}
|
2012-03-20 19:57:29 +00:00
|
|
|
|
// Print out public/privates
|
|
|
|
|
void resetPrivate() { m_private = 0; }
|
|
|
|
|
void putsPrivate(bool setPrivate) {
|
|
|
|
|
if (setPrivate && m_private!=1) {
|
|
|
|
|
puts("private:\n");
|
|
|
|
|
m_private = 1;
|
|
|
|
|
} else if (!setPrivate && m_private!=2) {
|
|
|
|
|
puts("public:\n");
|
|
|
|
|
m_private = 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class V3OutScFile : public V3OutCFile {
|
|
|
|
|
public:
|
2015-10-04 02:33:06 +00:00
|
|
|
|
explicit V3OutScFile(const string& filename) : V3OutCFile(filename) {}
|
2012-03-20 19:57:29 +00:00
|
|
|
|
virtual ~V3OutScFile() {}
|
|
|
|
|
virtual void putsHeader() { puts("// Verilated -*- SystemC -*-\n"); }
|
|
|
|
|
virtual void putsIntTopInclude() {
|
2017-02-09 12:43:43 +00:00
|
|
|
|
putsForceIncs();
|
2012-03-20 19:57:29 +00:00
|
|
|
|
puts("#include \"systemc.h\"\n");
|
|
|
|
|
puts("#include \"verilated_sc.h\"\n");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class V3OutVFile : public V3OutFile {
|
|
|
|
|
public:
|
2015-10-04 02:33:06 +00:00
|
|
|
|
explicit V3OutVFile(const string& filename) : V3OutFile(filename, V3OutFormatter::LA_VERILOG) {}
|
2012-03-20 19:57:29 +00:00
|
|
|
|
virtual ~V3OutVFile() {}
|
|
|
|
|
virtual void putsHeader() { puts("// Verilated -*- Verilog -*-\n"); }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class V3OutXmlFile : public V3OutFile {
|
|
|
|
|
public:
|
2015-10-21 01:22:00 +00:00
|
|
|
|
explicit V3OutXmlFile(const string& filename) : V3OutFile(filename, V3OutFormatter::LA_XML) {
|
|
|
|
|
blockIndent(2);
|
|
|
|
|
}
|
2012-03-20 19:57:29 +00:00
|
|
|
|
virtual ~V3OutXmlFile() {}
|
|
|
|
|
virtual void putsHeader() { puts("<?xml version=\"1.0\" ?>\n"); }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class V3OutMkFile : public V3OutFile {
|
|
|
|
|
public:
|
2015-10-04 02:33:06 +00:00
|
|
|
|
explicit V3OutMkFile(const string& filename) : V3OutFile(filename, V3OutFormatter::LA_MK) {}
|
2012-03-20 19:57:29 +00:00
|
|
|
|
virtual ~V3OutMkFile() {}
|
|
|
|
|
virtual void putsHeader() { puts("# Verilated -*- Makefile -*-\n"); }
|
|
|
|
|
// No automatic indentation yet.
|
|
|
|
|
void puts(const char* strg) { putsNoTracking(strg); }
|
|
|
|
|
void puts(const string& strg) { putsNoTracking(strg); }
|
|
|
|
|
};
|
|
|
|
|
|
2006-08-26 11:35:28 +00:00
|
|
|
|
#endif // Guard
|