2006-08-26 11:35:28 +00:00
|
|
|
|
//*************************************************************************
|
|
|
|
|
// DESCRIPTION: Verilator: Netlist (top level) functions
|
|
|
|
|
//
|
2008-04-25 12:14:27 +00:00
|
|
|
|
// Code available from: http://www.veripool.org/verilator
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//
|
|
|
|
|
// AUTHORS: Wilson Snyder with Paul Wasson, Duane Gabli
|
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
//
|
2011-01-01 23:21:19 +00:00
|
|
|
|
// Copyright 2003-2011 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.
|
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
2009-10-31 14:08:38 +00:00
|
|
|
|
// Overview of files involved in parsing
|
|
|
|
|
// V3Parse.h External consumer interface to V3ParseImp
|
|
|
|
|
// V3ParseImp Internals to parser, common to across flex & bison
|
|
|
|
|
// V3ParseGrammar Wrapper that includes V3ParseBison
|
|
|
|
|
// V3ParseBison Bison output
|
|
|
|
|
// V3ParseLex Wrapper that includes lex output
|
|
|
|
|
// V3Lexer.yy.cpp Flex output
|
|
|
|
|
//*************************************************************************
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
2006-12-18 19:20:45 +00:00
|
|
|
|
#include "config_build.h"
|
|
|
|
|
#include "verilatedos.h"
|
2008-06-30 17:11:25 +00:00
|
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cstdarg>
|
2006-08-26 11:35:28 +00:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
|
|
#include "V3Error.h"
|
|
|
|
|
#include "V3Global.h"
|
|
|
|
|
#include "V3Ast.h"
|
|
|
|
|
#include "V3File.h"
|
2009-10-31 14:08:38 +00:00
|
|
|
|
#include "V3ParseImp.h"
|
2006-08-26 11:35:28 +00:00
|
|
|
|
#include "V3PreShell.h"
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
// Globals
|
|
|
|
|
|
2009-10-31 14:08:38 +00:00
|
|
|
|
V3ParseImp* V3ParseImp::s_parsep = NULL;
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
2009-10-31 14:14:04 +00:00
|
|
|
|
int V3ParseSym::s_anonNum = 0;
|
|
|
|
|
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//######################################################################
|
|
|
|
|
// Read class functions
|
|
|
|
|
|
2009-10-31 14:08:38 +00:00
|
|
|
|
V3ParseImp::~V3ParseImp() {
|
2007-11-02 11:23:03 +00:00
|
|
|
|
for (deque<string*>::iterator it = m_stringps.begin(); it != m_stringps.end(); ++it) {
|
|
|
|
|
delete (*it);
|
|
|
|
|
}
|
|
|
|
|
m_stringps.clear();
|
|
|
|
|
for (deque<V3Number*>::iterator it = m_numberps.begin(); it != m_numberps.end(); ++it) {
|
|
|
|
|
delete (*it);
|
|
|
|
|
}
|
|
|
|
|
m_numberps.clear();
|
2009-10-31 14:08:38 +00:00
|
|
|
|
lexDestroy();
|
2007-11-02 11:23:03 +00:00
|
|
|
|
parserClear();
|
2009-10-31 14:14:04 +00:00
|
|
|
|
|
|
|
|
|
if (debug()>=9) { UINFO(0,"~V3ParseImp\n"); symp()->dump(cout, "-vpi: "); }
|
2007-11-02 11:23:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-07 00:20:44 +00:00
|
|
|
|
size_t V3ParseImp::ppInputToLex(char* buf, size_t max_size) {
|
|
|
|
|
size_t got = 0;
|
2008-01-31 14:49:27 +00:00
|
|
|
|
while (got < max_size // Haven't got enough
|
|
|
|
|
&& !m_ppBuffers.empty()) { // And something buffered
|
|
|
|
|
string front = m_ppBuffers.front(); m_ppBuffers.pop_front();
|
2010-04-07 00:20:44 +00:00
|
|
|
|
size_t len = front.length();
|
2008-01-31 14:49:27 +00:00
|
|
|
|
if (len > (max_size-got)) { // Front string too big
|
|
|
|
|
string remainder = front.substr(max_size-got);
|
|
|
|
|
front = front.substr(0, max_size-got);
|
|
|
|
|
m_ppBuffers.push_front(remainder); // Put back remainder for next time
|
|
|
|
|
len = (max_size-got);
|
|
|
|
|
}
|
|
|
|
|
strncpy(buf+got, front.c_str(), len);
|
|
|
|
|
got += len;
|
|
|
|
|
}
|
|
|
|
|
if (debug()>=9) {
|
|
|
|
|
string out = string(buf,got);
|
|
|
|
|
cout<<" inputToLex got="<<got<<" '"<<out<<"'"<<endl;
|
|
|
|
|
}
|
|
|
|
|
// Note returns 0 at EOF
|
|
|
|
|
return got;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-31 14:08:38 +00:00
|
|
|
|
void V3ParseImp::parseFile(FileLine* fileline, const string& modfilename, bool inLibrary) {
|
2006-08-26 11:35:28 +00:00
|
|
|
|
string modname = V3Options::filenameNonExt(modfilename);
|
|
|
|
|
|
|
|
|
|
UINFO(2,__FUNCTION__<<": "<<modname<<(inLibrary?" [LIB]":"")<<endl);
|
|
|
|
|
m_fileline = new FileLine(fileline);
|
|
|
|
|
m_inLibrary = inLibrary;
|
|
|
|
|
|
2008-03-28 20:41:21 +00:00
|
|
|
|
// Set language standard up front
|
|
|
|
|
if (!v3Global.opt.preprocOnly()) {
|
|
|
|
|
// Leting lex parse this saves us from having to specially en/decode
|
|
|
|
|
// from the V3LangCode to the various Lex BEGIN states.
|
|
|
|
|
ppPushText((string)"`begin_keywords \""+v3Global.opt.language().ascii()+"\"\n");
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-31 14:49:27 +00:00
|
|
|
|
// Preprocess into m_ppBuffer
|
2010-01-20 12:15:51 +00:00
|
|
|
|
V3PreShell::preproc(fileline, modfilename, m_filterp, this);
|
2008-01-31 14:49:27 +00:00
|
|
|
|
|
|
|
|
|
if (v3Global.opt.preprocOnly() || v3Global.opt.keepTempFiles()) {
|
|
|
|
|
// Create output file with all the preprocessor output we buffered up
|
|
|
|
|
string vppfilename = v3Global.opt.makeDir()+"/"+v3Global.opt.prefix()+"_"+modname+".vpp";
|
|
|
|
|
ofstream* ofp = NULL;
|
|
|
|
|
ostream* osp;
|
|
|
|
|
if (v3Global.opt.preprocOnly()) {
|
|
|
|
|
osp = &cout;
|
|
|
|
|
} else {
|
|
|
|
|
osp = ofp = V3File::new_ofstream(vppfilename);
|
|
|
|
|
}
|
|
|
|
|
if (osp->fail()) {
|
|
|
|
|
fileline->v3error("Cannot write preprocessor output: "+vppfilename);
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
for (deque<string>::iterator it = m_ppBuffers.begin(); it!=m_ppBuffers.end(); ++it) {
|
|
|
|
|
*osp << *it;
|
|
|
|
|
}
|
|
|
|
|
if (ofp) {
|
|
|
|
|
ofp->close();
|
|
|
|
|
delete ofp; ofp = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
}
|
2006-10-04 18:46:42 +00:00
|
|
|
|
|
2008-01-31 14:49:27 +00:00
|
|
|
|
// Parse it
|
|
|
|
|
if (!v3Global.opt.preprocOnly()) {
|
|
|
|
|
lexFile (modfilename);
|
2006-10-04 18:46:42 +00:00
|
|
|
|
}
|
2006-08-26 11:35:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-10-31 14:08:38 +00:00
|
|
|
|
void V3ParseImp::lexFile(const string& modname) {
|
2006-08-26 11:35:28 +00:00
|
|
|
|
// Prepare for lexing
|
2008-01-31 14:49:27 +00:00
|
|
|
|
UINFO(3,"Lexing "<<modname<<endl);
|
2009-10-31 14:08:38 +00:00
|
|
|
|
s_parsep = this;
|
|
|
|
|
fileline()->warnResetDefault(); // Reenable warnings on each file
|
|
|
|
|
lexDestroy(); // Restart from clean slate.
|
|
|
|
|
lexNew(debugFlex()>=9);
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
|
|
|
|
// Lex it
|
2009-10-31 14:08:38 +00:00
|
|
|
|
if (bisonParse()) v3fatal("Cannot continue\n");
|
2006-08-26 11:35:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
2009-10-31 14:08:38 +00:00
|
|
|
|
// V3Parse functions
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
2010-01-20 12:15:51 +00:00
|
|
|
|
V3Parse::V3Parse(AstNetlist* rootp, V3InFilter* filterp) {
|
|
|
|
|
m_impp = new V3ParseImp (rootp, filterp);
|
2006-08-26 11:35:28 +00:00
|
|
|
|
}
|
2009-10-31 14:08:38 +00:00
|
|
|
|
V3Parse::~V3Parse() {
|
|
|
|
|
delete m_impp; m_impp = NULL;
|
2008-07-22 18:27:34 +00:00
|
|
|
|
}
|
2009-10-31 14:08:38 +00:00
|
|
|
|
void V3Parse::parseFile(FileLine* fileline, const string& modname, bool inLibrary) {
|
|
|
|
|
m_impp->parseFile(fileline, modname, inLibrary);
|
|
|
|
|
}
|
|
|
|
|
void V3Parse::ppPushText(V3ParseImp* impp, const string& text) {
|
|
|
|
|
impp->ppPushText(text);
|
2006-08-26 11:35:28 +00:00
|
|
|
|
}
|