2008-06-10 03:25:10 +02:00
|
|
|
|
// -*- C++ -*-
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//*************************************************************************
|
|
|
|
|
|
// DESCRIPTION: Verilator: Ast node structure
|
|
|
|
|
|
//
|
2008-04-25 14:14:27 +02:00
|
|
|
|
// Code available from: http://www.veripool.org/verilator
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//
|
|
|
|
|
|
// AUTHORS: Wilson Snyder with Paul Wasson, Duane Gabli
|
|
|
|
|
|
//
|
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
|
//
|
2009-01-02 17:47:39 +01:00
|
|
|
|
// Copyright 2003-2009 by Wilson Snyder. This program is free software; you can
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
2009-05-04 23:07:57 +02:00
|
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
|
|
// Version 2.0.
|
2006-08-26 13:35:28 +02: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 _V3ASTNODES_H_
|
|
|
|
|
|
#define _V3ASTNODES_H_ 1
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _V3AST_H_
|
|
|
|
|
|
#error "Use V3Ast.h as the include"
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2008-11-20 02:15:05 +01:00
|
|
|
|
//######################################################################
|
|
|
|
|
|
// Standard defines for all AstNode final classes
|
|
|
|
|
|
|
|
|
|
|
|
#define ASTNODE_NODE_FUNCS(name,ucname) \
|
|
|
|
|
|
virtual ~Ast ##name() {} \
|
|
|
|
|
|
virtual AstType type() const { return AstType:: ucname; } \
|
|
|
|
|
|
virtual AstNode* clone() { return new Ast ##name (*this); } \
|
|
|
|
|
|
virtual void accept(AstNVisitor& v, AstNUser* vup=NULL) { v.visit(this,vup); } \
|
|
|
|
|
|
Ast ##name * cloneTree(bool cloneNext) { return AstNode::cloneTree(cloneNext)->cast ##name(); }
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//######################################################################
|
|
|
|
|
|
//=== Ast* : Specific types
|
|
|
|
|
|
// Netlist interconnect
|
|
|
|
|
|
|
|
|
|
|
|
struct AstConst : public AstNodeMath {
|
|
|
|
|
|
// A constant
|
|
|
|
|
|
private:
|
|
|
|
|
|
V3Number m_num; // Constant value
|
|
|
|
|
|
public:
|
2009-09-24 05:10:46 +02:00
|
|
|
|
class Unsized32 {}; // for creator type-overload selection
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstConst(FileLine* fl, const V3Number& num)
|
|
|
|
|
|
:AstNodeMath(fl)
|
|
|
|
|
|
,m_num(num) {
|
|
|
|
|
|
width(m_num.width(), m_num.sized()?0:m_num.minWidth());
|
|
|
|
|
|
isSigned(m_num.isSigned());
|
|
|
|
|
|
}
|
|
|
|
|
|
AstConst(FileLine* fl, uint32_t num)
|
|
|
|
|
|
:AstNodeMath(fl)
|
|
|
|
|
|
,m_num(V3Number(fl,32,num)) { width(m_num.width(), m_num.sized()?0:m_num.minWidth()); }
|
2009-09-24 05:10:46 +02:00
|
|
|
|
AstConst(FileLine* fl, Unsized32, uint32_t num) // Unsized 32-bit integer of specified value
|
|
|
|
|
|
:AstNodeMath(fl)
|
2009-09-26 12:43:06 +02:00
|
|
|
|
,m_num(V3Number(fl,32,num)) { m_num.width(32,false); width(32,m_num.minWidth()); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Const, CONST)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return num().ascii(); } // * = Value
|
|
|
|
|
|
virtual const V3Number& num() const { return m_num; } // * = Value
|
2008-09-04 17:03:46 +02:00
|
|
|
|
uint32_t toUInt() const { return num().toUInt(); }
|
2008-10-06 15:59:22 +02:00
|
|
|
|
vlsint32_t toSInt() const { return num().toSInt(); }
|
2008-09-03 23:40:01 +02:00
|
|
|
|
vluint64_t toUQuad() const { return num().toUQuad(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; } // Implemented specially
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return true; }
|
2008-09-03 23:40:01 +02:00
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(num().toHash()); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return num().isCaseEq(samep->castConst()->num()); }
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstRange : public AstNode {
|
|
|
|
|
|
// Range specification, for use under variables and cells
|
2009-10-25 21:53:55 +01:00
|
|
|
|
private:
|
|
|
|
|
|
bool m_littleEndian:1; // Bit vector is little endian
|
|
|
|
|
|
public:
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstRange(FileLine* fl, AstNode* msbp, AstNode* lsbp)
|
|
|
|
|
|
:AstNode(fl) {
|
2009-10-25 21:53:55 +01:00
|
|
|
|
m_littleEndian = false;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
setOp2p(msbp); setOp3p(lsbp); }
|
|
|
|
|
|
AstRange(FileLine* fl, int msb, int lsb)
|
|
|
|
|
|
:AstNode(fl) {
|
2009-10-25 21:53:55 +01:00
|
|
|
|
m_littleEndian = false;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
setOp2p(new AstConst(fl,msb)); setOp3p(new AstConst(fl,lsb));
|
|
|
|
|
|
width(msb-lsb+1,msb-lsb+1);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Range, RANGE)
|
2009-10-25 21:53:55 +01:00
|
|
|
|
AstNode* msbp() const { return op2p()->castNode(); } // op2 = Msb expression
|
|
|
|
|
|
AstNode* lsbp() const { return op3p()->castNode(); } // op3 = Lsb expression
|
|
|
|
|
|
AstNode* msbEndianedp() const { return littleEndian()?lsbp():msbp(); } // How to show a declaration
|
|
|
|
|
|
AstNode* lsbEndianedp() const { return littleEndian()?msbp():lsbp(); }
|
2008-10-06 15:59:22 +02:00
|
|
|
|
int msbConst() const { AstConst* constp=msbp()->castConst(); return (constp?constp->toSInt():0); }
|
|
|
|
|
|
int lsbConst() const { AstConst* constp=lsbp()->castConst(); return (constp?constp->toSInt():0); }
|
2009-10-25 21:53:55 +01:00
|
|
|
|
int elementsConst() const { return (msbConst()>lsbConst()) ? msbConst()-lsbConst()+1 : lsbConst()-msbConst()+1; }
|
|
|
|
|
|
bool littleEndian() const { return m_littleEndian; }
|
|
|
|
|
|
void littleEndian(bool flag) { m_littleEndian=flag; }
|
|
|
|
|
|
virtual void dump(ostream& str);
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2009-11-05 04:31:53 +01:00
|
|
|
|
//######################################################################
|
|
|
|
|
|
//==== Data Types
|
|
|
|
|
|
|
2009-11-07 05:16:06 +01:00
|
|
|
|
struct AstTypedef : public AstNode {
|
2009-11-09 14:20:28 +01:00
|
|
|
|
private:
|
2009-11-07 05:16:06 +01:00
|
|
|
|
string m_name;
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstTypedef(FileLine* fl, const string& name, AstNodeDType* dtypep)
|
|
|
|
|
|
: AstNode(fl), m_name(name) {
|
|
|
|
|
|
setOp1p(dtypep);
|
|
|
|
|
|
widthSignedFrom(dtypep);
|
|
|
|
|
|
}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(Typedef, TYPEDEF)
|
|
|
|
|
|
AstNodeDType* dtypep() const { return op1p()->castNodeDType(); } // op1 = Range of variable
|
|
|
|
|
|
void dtypep(AstNodeDType* nodep) { setOp1p(nodep); }
|
|
|
|
|
|
// METHODS
|
|
|
|
|
|
virtual string name() const { return m_name; }
|
|
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
|
|
|
|
|
void name(const string& flag) { m_name = flag; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstTypedefFwd : public AstNode {
|
|
|
|
|
|
// Forward declaration of a type; stripped after netlist parsing is complete
|
2009-11-09 14:20:28 +01:00
|
|
|
|
private:
|
2009-11-07 05:16:06 +01:00
|
|
|
|
string m_name;
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstTypedefFwd(FileLine* fl, const string& name)
|
|
|
|
|
|
: AstNode(fl), m_name(name) {}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(TypedefFwd, TYPEDEFFWD)
|
|
|
|
|
|
// METHODS
|
|
|
|
|
|
virtual string name() const { return m_name; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2009-11-05 04:31:53 +01:00
|
|
|
|
struct AstArrayDType : public AstNodeDType {
|
2009-11-07 05:16:06 +01:00
|
|
|
|
// Array data type, ie "some_dtype var_name [2:0]"
|
2009-11-05 04:31:53 +01:00
|
|
|
|
AstArrayDType(FileLine* fl, AstNodeDType* dtypep, AstRange* rangep)
|
|
|
|
|
|
: AstNodeDType(fl) {
|
|
|
|
|
|
setOp1p(dtypep);
|
|
|
|
|
|
setOp2p(rangep);
|
|
|
|
|
|
widthSignedFrom(dtypep);
|
|
|
|
|
|
}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(ArrayDType, ARRAYDTYPE)
|
|
|
|
|
|
AstNodeDType* dtypep() const { return op1p()->castNodeDType(); } // op1 = Range of variable
|
2009-11-07 05:16:06 +01:00
|
|
|
|
AstNodeDType* dtypeSkipRefp() const { return dtypep()->skipRefp(); } // op1 = Range of variable
|
2009-11-05 04:31:53 +01:00
|
|
|
|
void dtypep(AstNodeDType* nodep) { setOp1p(nodep); }
|
|
|
|
|
|
AstRange* arrayp() const { return op2p()->castRange(); } // op2 = Array(s) of variable
|
|
|
|
|
|
void arrayp(AstRange* nodep) { setOp2p(nodep); }
|
|
|
|
|
|
// METHODS
|
|
|
|
|
|
virtual AstBasicDType* basicp() { return dtypep()->basicp(); } // (Slow) recurse down to find basic data type
|
2009-11-07 05:16:06 +01:00
|
|
|
|
virtual AstNodeDType* skipRefp() { return this; }
|
2009-11-05 04:31:53 +01:00
|
|
|
|
virtual int widthAlignBytes() const { return dtypep()->widthAlignBytes(); }
|
|
|
|
|
|
virtual int widthTotalBytes() const { return elementsConst() * dtypep()->widthTotalBytes(); }
|
|
|
|
|
|
int msb() const { return arrayp()->msbConst(); }
|
|
|
|
|
|
int lsb() const { return arrayp()->lsbConst(); }
|
|
|
|
|
|
int elementsConst() const { return arrayp()->elementsConst(); }
|
|
|
|
|
|
int msbMaxSelect() const { return (lsb()<0 ? msb()-lsb() : msb()); } // Maximum value a [] select may index
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2009-11-02 14:06:04 +01:00
|
|
|
|
struct AstBasicDType : public AstNodeDType {
|
|
|
|
|
|
// Builtin atomic/vectored data type
|
|
|
|
|
|
private:
|
|
|
|
|
|
AstBasicDTypeKwd m_keyword; // What keyword created it
|
2009-11-03 04:14:11 +01:00
|
|
|
|
bool m_implicit; // Implicitly declared
|
2009-11-02 14:06:04 +01:00
|
|
|
|
public:
|
2009-11-05 15:57:23 +01:00
|
|
|
|
AstBasicDType(FileLine* fl, AstBasicDTypeKwd kwd, AstSignedState signst=signedst_NOP)
|
2009-11-05 04:31:53 +01:00
|
|
|
|
: AstNodeDType(fl) {
|
2009-11-05 15:57:23 +01:00
|
|
|
|
init(kwd, signst, NULL);
|
2009-11-05 04:31:53 +01:00
|
|
|
|
}
|
|
|
|
|
|
AstBasicDType(FileLine* fl, AstLogicPacked, int wantwidth)
|
|
|
|
|
|
: AstNodeDType(fl) {
|
|
|
|
|
|
init(AstBasicDTypeKwd::LOGIC, signedst_NOP,
|
|
|
|
|
|
((wantwidth > 1) ? new AstRange(fl, wantwidth-1, 0) : NULL));
|
2009-11-02 14:06:04 +01:00
|
|
|
|
}
|
2009-11-05 15:57:23 +01:00
|
|
|
|
// See also addRange in verilog.y
|
2009-11-02 14:06:04 +01:00
|
|
|
|
private:
|
2009-11-05 04:31:53 +01:00
|
|
|
|
void init(AstBasicDTypeKwd kwd, AstSignedState signst, AstRange* rangep) {
|
|
|
|
|
|
m_keyword = kwd;
|
2009-11-03 04:14:11 +01:00
|
|
|
|
// Implicitness: // "parameter X" is implicit and sized from initial value, "parameter reg x" not
|
|
|
|
|
|
m_implicit = false;
|
|
|
|
|
|
if (keyword()==AstBasicDTypeKwd::LOGIC_IMPLICIT) {
|
2009-11-05 15:57:23 +01:00
|
|
|
|
if (!rangep) m_implicit = true; // Also cleared if range added later
|
2009-11-03 04:14:11 +01:00
|
|
|
|
m_keyword = AstBasicDTypeKwd::LOGIC;
|
2009-11-02 14:06:04 +01:00
|
|
|
|
}
|
2009-11-03 04:14:11 +01:00
|
|
|
|
if (signst == signedst_NOP && keyword().isSigned()) signst = signedst_SIGNED;
|
|
|
|
|
|
setSignedState(signst);
|
|
|
|
|
|
if (!rangep) { // Set based on keyword properties
|
|
|
|
|
|
// V3Width will pull from this width
|
|
|
|
|
|
if (keyword().width() > 1) rangep = new AstRange(fileline(), keyword().width()-1, 0);
|
|
|
|
|
|
width(keyword().width(), keyword().width());
|
|
|
|
|
|
} else {
|
|
|
|
|
|
widthFrom(rangep); // Maybe unknown if parameters underneath it
|
|
|
|
|
|
}
|
|
|
|
|
|
setNOp1p(rangep);
|
2009-11-02 14:06:04 +01:00
|
|
|
|
}
|
2009-11-03 04:14:11 +01:00
|
|
|
|
AstBasicDTypeKwd keyword() const { return m_keyword; } // private - use isSomething accessors instead
|
2009-11-02 14:06:04 +01:00
|
|
|
|
public:
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(BasicDType, BASICDTYPE)
|
|
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual string name() const {
|
|
|
|
|
|
if (rangep()) return string(m_keyword.ascii())+"[]";
|
|
|
|
|
|
else return m_keyword.ascii();
|
|
|
|
|
|
}
|
|
|
|
|
|
AstRange* rangep() const { return op1p()->castRange(); } // op1 = Range of variable
|
|
|
|
|
|
void rangep(AstRange* nodep) { setNOp1p(nodep); }
|
|
|
|
|
|
void setSignedState(AstSignedState signst) {
|
|
|
|
|
|
if (signst!=signedst_NOP) isSigned(signst==signedst_SIGNED);
|
|
|
|
|
|
}
|
|
|
|
|
|
// METHODS
|
2009-11-05 04:31:53 +01:00
|
|
|
|
virtual AstBasicDType* basicp() { return this; } // (Slow) recurse down to find basic data type
|
2009-11-07 05:16:06 +01:00
|
|
|
|
virtual AstNodeDType* skipRefp() { return this; }
|
2009-11-05 04:31:53 +01:00
|
|
|
|
virtual int widthAlignBytes() const; // (Slow) recurses - Structure alignment 1,2,4 or 8 bytes (arrays affect this)
|
|
|
|
|
|
virtual int widthTotalBytes() const; // (Slow) recurses - Width in bytes rounding up 1,2,4,8,12,...
|
2009-11-03 04:14:11 +01:00
|
|
|
|
bool isBitLogic() const { return keyword().isBitLogic(); }
|
|
|
|
|
|
bool isSloppy() const { return keyword().isSloppy(); }
|
2009-11-02 14:06:04 +01:00
|
|
|
|
int msb() const { if (!rangep()) return 0; return rangep()->msbConst(); }
|
|
|
|
|
|
int lsb() const { if (!rangep()) return 0; return rangep()->lsbConst(); }
|
|
|
|
|
|
int msbEndianed() const { if (!rangep()) return 0; return littleEndian()?rangep()->lsbConst():rangep()->msbConst(); }
|
|
|
|
|
|
int lsbEndianed() const { if (!rangep()) return 0; return littleEndian()?rangep()->msbConst():rangep()->lsbConst(); }
|
|
|
|
|
|
int msbMaxSelect() const { return (lsb()<0 ? msb()-lsb() : msb()); } // Maximum value a [] select may index
|
|
|
|
|
|
bool littleEndian() const { return (rangep() && rangep()->littleEndian()); }
|
2009-11-03 04:14:11 +01:00
|
|
|
|
bool implicit() const { return m_implicit; }
|
2009-11-05 15:57:23 +01:00
|
|
|
|
void implicit(bool flag) { m_implicit = flag; }
|
2009-11-02 14:06:04 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
2009-11-07 05:16:06 +01:00
|
|
|
|
struct AstRefDType : public AstNodeDType {
|
2009-11-09 14:20:28 +01:00
|
|
|
|
private:
|
2009-11-07 05:16:06 +01:00
|
|
|
|
AstTypedef* m_defp;
|
|
|
|
|
|
string m_name;
|
2009-11-08 03:05:02 +01:00
|
|
|
|
AstPackage* m_packagep; // Package hierarchy
|
2009-11-07 05:16:06 +01:00
|
|
|
|
public:
|
|
|
|
|
|
AstRefDType(FileLine* fl, const string& name)
|
2009-11-08 03:05:02 +01:00
|
|
|
|
: AstNodeDType(fl), m_defp(NULL), m_name(name), m_packagep(NULL) {}
|
2009-11-07 05:16:06 +01:00
|
|
|
|
AstRefDType(FileLine* fl, AstTypedef* defp)
|
2009-11-08 03:05:02 +01:00
|
|
|
|
: AstNodeDType(fl), m_defp(defp), m_name(defp->name()), m_packagep(NULL) {
|
2009-11-07 05:16:06 +01:00
|
|
|
|
widthSignedFrom(defp);
|
|
|
|
|
|
}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(RefDType, REFDTYPE)
|
|
|
|
|
|
// METHODS
|
|
|
|
|
|
virtual bool broken() const { return m_defp && !m_defp->brokeExists(); }
|
|
|
|
|
|
virtual void cloneRelink() { if (m_defp && m_defp->clonep()) {
|
|
|
|
|
|
m_defp = m_defp->clonep()->castTypedef();
|
|
|
|
|
|
}}
|
|
|
|
|
|
virtual void dump(ostream& str=cout);
|
|
|
|
|
|
virtual string name() const { return m_name; }
|
|
|
|
|
|
virtual AstBasicDType* basicp() { return defp() ? dtypep()->basicp() : NULL; }
|
|
|
|
|
|
virtual AstNodeDType* skipRefp() {
|
|
|
|
|
|
// Skip past both the Ref and the Typedef
|
|
|
|
|
|
if (defp()) return defp()->dtypep();
|
|
|
|
|
|
else { v3fatalSrc("Typedef not linked"); return NULL; }
|
|
|
|
|
|
}
|
|
|
|
|
|
virtual int widthAlignBytes() const { return dtypep()->widthAlignBytes(); }
|
|
|
|
|
|
virtual int widthTotalBytes() const { return dtypep()->widthTotalBytes(); }
|
|
|
|
|
|
void name(const string& flag) { m_name = flag; }
|
|
|
|
|
|
AstNodeDType* dtypep() const {
|
|
|
|
|
|
if (defp()) return defp()->dtypep();
|
|
|
|
|
|
else { v3fatalSrc("Typedef not linked"); return NULL; }
|
|
|
|
|
|
}
|
|
|
|
|
|
AstNodeDType* dtypeSkipRefp() const { return dtypep()->skipRefp(); } // op1 = Range of variable
|
|
|
|
|
|
AstTypedef* defp() const { return m_defp; }
|
|
|
|
|
|
void defp(AstTypedef* nodep) { m_defp=nodep; }
|
2009-11-08 03:05:02 +01:00
|
|
|
|
AstPackage* packagep() const { return m_packagep; }
|
|
|
|
|
|
void packagep(AstPackage* nodep) { m_packagep=nodep; }
|
2009-11-07 05:16:06 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
2009-11-05 04:31:53 +01:00
|
|
|
|
//######################################################################
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstArraySel : public AstNodeSel {
|
|
|
|
|
|
// Parents: math|stmt
|
|
|
|
|
|
// Children: varref|arraysel, math
|
|
|
|
|
|
AstArraySel(FileLine* fl, AstNode* fromp, AstNode* bitp)
|
|
|
|
|
|
:AstNodeSel(fl, fromp, bitp) {
|
|
|
|
|
|
if (fromp) widthSignedFrom(fromp);
|
|
|
|
|
|
}
|
2008-12-12 21:34:02 +01:00
|
|
|
|
AstArraySel(FileLine* fl, AstNode* fromp, int bit)
|
|
|
|
|
|
:AstNodeSel(fl, fromp, new AstConst(fl,bit)) {
|
|
|
|
|
|
if (fromp) widthSignedFrom(fromp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ArraySel, ARRAYSEL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) {
|
|
|
|
|
|
V3ERROR_NA; /* How can from be a const? */ }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l%k[%r])"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "%li%k[%ri]"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return true; }
|
|
|
|
|
|
virtual bool cleanLhs() {return false;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs(); }
|
|
|
|
|
|
// Special operators
|
2009-10-25 21:53:55 +01:00
|
|
|
|
static int dimension(AstNode* nodep); ///< How many dimensions is this reference from the base variable?
|
|
|
|
|
|
static AstNode* baseFromp(AstNode* nodep); ///< What is the base variable (or const) this dereferences?
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstWordSel : public AstNodeSel {
|
|
|
|
|
|
// Select a single word from a multi-word wide value
|
|
|
|
|
|
AstWordSel(FileLine* fl, AstNode* fromp, AstNode* bitp)
|
|
|
|
|
|
:AstNodeSel(fl, fromp, bitp) {
|
|
|
|
|
|
width(VL_WORDSIZE,VL_WORDSIZE); // Always used on, and returns word entities
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(WordSel, WORDSEL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& from, const V3Number& bit) { V3ERROR_NA; }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l[%r])"; } // Not %k, as usually it's a small constant rhsp
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "%li[%ri]"; } // Not %k, as usually it's a small constant rhsp
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return true; }
|
|
|
|
|
|
virtual bool cleanLhs() { return true; } virtual bool cleanRhs() { return true; }
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstSelExtract : public AstNodePreSel {
|
|
|
|
|
|
// Range extraction, gets replaced with AstSel
|
|
|
|
|
|
AstSelExtract(FileLine* fl, AstNode* fromp, AstNode* msbp, AstNode* lsbp)
|
|
|
|
|
|
: AstNodePreSel(fl, fromp, msbp, lsbp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(SelExtract, SELEXTRACT)
|
2009-10-25 21:53:55 +01:00
|
|
|
|
AstNode* msbp() const { return rhsp(); }
|
|
|
|
|
|
AstNode* lsbp() const { return thsp(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstSelBit : public AstNodePreSel {
|
|
|
|
|
|
// Single bit range extraction, perhaps with non-constant selection or array selection
|
|
|
|
|
|
// Gets replaced during link with AstArraySel or AstSel
|
|
|
|
|
|
AstSelBit(FileLine* fl, AstNode* fromp, AstNode* bitp)
|
|
|
|
|
|
:AstNodePreSel(fl, fromp, bitp, NULL) {
|
|
|
|
|
|
width(1,1);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(SelBit, SELBIT)
|
2009-10-25 21:53:55 +01:00
|
|
|
|
AstNode* bitp() const { return rhsp(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstSelPlus : public AstNodePreSel {
|
|
|
|
|
|
// +: range extraction, perhaps with non-constant selection
|
|
|
|
|
|
// Gets replaced during link with AstSel
|
|
|
|
|
|
AstSelPlus(FileLine* fl, AstNode* fromp, AstNode* bitp, AstNode* widthp)
|
|
|
|
|
|
:AstNodePreSel(fl, fromp, bitp, widthp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(SelPlus, SELPLUS)
|
2009-10-25 21:53:55 +01:00
|
|
|
|
AstNode* bitp() const { return rhsp(); }
|
|
|
|
|
|
AstNode* widthp() const { return thsp(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstSelMinus : public AstNodePreSel {
|
|
|
|
|
|
// -: range extraction, perhaps with non-constant selection
|
|
|
|
|
|
// Gets replaced during link with AstSel
|
|
|
|
|
|
AstSelMinus(FileLine* fl, AstNode* fromp, AstNode* bitp, AstNode* widthp)
|
|
|
|
|
|
:AstNodePreSel(fl, fromp, bitp, widthp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(SelMinus, SELMINUS)
|
2009-10-25 21:53:55 +01:00
|
|
|
|
AstNode* bitp() const { return rhsp(); }
|
|
|
|
|
|
AstNode* widthp() const { return thsp(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstSel : public AstNodeTriop {
|
|
|
|
|
|
// Multiple bit range extraction
|
|
|
|
|
|
// Parents: math|stmt
|
|
|
|
|
|
// Children: varref|arraysel, math, constant math
|
|
|
|
|
|
AstSel(FileLine* fl, AstNode* fromp, AstNode* lsbp, AstNode* widthp)
|
|
|
|
|
|
:AstNodeTriop(fl, fromp, lsbp, widthp) {
|
2008-10-06 15:59:22 +02:00
|
|
|
|
if (widthp->castConst()) width(widthp->castConst()->toUInt(), widthp->castConst()->toUInt());
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
AstSel(FileLine* fl, AstNode* fromp, int lsbp, int bitwidth)
|
|
|
|
|
|
:AstNodeTriop(fl, fromp,
|
|
|
|
|
|
new AstConst(fl,lsbp), new AstConst(fl,bitwidth)) {
|
|
|
|
|
|
width(bitwidth,bitwidth);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Sel, SEL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& from, const V3Number& bit, const V3Number& width) {
|
2009-09-20 15:30:39 +02:00
|
|
|
|
out.opSel(from, bit.toUInt()+width.toUInt()-1, bit.toUInt()); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; } // Implemented specially
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() {
|
|
|
|
|
|
return this->widthp()->isOne()
|
|
|
|
|
|
? "VL_BITSEL_%nq%lq%rq%tq(%nw,%lw,%rw,%tw, %P, %li, %ri)"
|
|
|
|
|
|
: "VL_SEL_%nq%lq%rq%tq(%nw,%lw,%rw,%tw, %P, %li, %ri, %ti)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return false; }
|
|
|
|
|
|
virtual bool cleanLhs() { return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool cleanThs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersThs() {return false;}
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode*) const { return true; }
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*(lsbp()->castConst()?3:10); }
|
|
|
|
|
|
AstNode* fromp() const { return op1p()->castNode(); } // op1 = Extracting what (NULL=TBD during parsing)
|
|
|
|
|
|
AstNode* lsbp() const { return op2p()->castNode(); } // op2 = Msb selection expression
|
|
|
|
|
|
AstNode* widthp() const { return op3p()->castNode(); } // op3 = Width
|
2008-10-06 15:59:22 +02:00
|
|
|
|
int widthConst() const { return widthp()->castConst()->toSInt(); }
|
|
|
|
|
|
int lsbConst() const { return lsbp()->castConst()->toSInt(); }
|
|
|
|
|
|
int msbConst() const { return lsbConst()+widthConst()-1; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstVar : public AstNode {
|
|
|
|
|
|
// A variable (in/out/wire/reg/param) inside a module
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Name of variable
|
|
|
|
|
|
AstVarType m_varType; // Type of variable
|
|
|
|
|
|
bool m_input:1; // Input or inout
|
|
|
|
|
|
bool m_output:1; // Output or inout
|
|
|
|
|
|
bool m_tristate:1; // Inout or triwire or trireg
|
|
|
|
|
|
bool m_primaryIO:1; // In/out to top level (or directly assigned from same)
|
|
|
|
|
|
bool m_sc:1; // SystemC variable
|
|
|
|
|
|
bool m_scClocked:1; // SystemC sc_clk<> needed
|
|
|
|
|
|
bool m_scSensitive:1;// SystemC sensitive() needed
|
|
|
|
|
|
bool m_sigPublic:1; // User C code accesses this signal
|
2007-03-02 23:24:51 +01:00
|
|
|
|
bool m_sigModPublic:1;// User C code accesses this signal and module
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool m_usedClock:1; // Signal used as a clock
|
|
|
|
|
|
bool m_usedParam:1; // Parameter is referenced (on link; later signals not setup)
|
|
|
|
|
|
bool m_funcLocal:1; // Local variable for a function
|
|
|
|
|
|
bool m_funcReturn:1; // Return variable for a function
|
|
|
|
|
|
bool m_attrClockEn:1;// User clock enable attribute
|
2007-01-23 19:11:26 +01:00
|
|
|
|
bool m_attrIsolateAssign:1;// User isolate_assignments attribute
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool m_fileDescr:1; // File descriptor
|
|
|
|
|
|
bool m_isConst:1; // Table contains constant data
|
|
|
|
|
|
bool m_isStatic:1; // Static variable
|
|
|
|
|
|
bool m_trace:1; // Trace this variable
|
|
|
|
|
|
|
|
|
|
|
|
void init() {
|
|
|
|
|
|
m_input=false; m_output=false; m_tristate=false;
|
|
|
|
|
|
m_primaryIO=false;
|
|
|
|
|
|
m_sc=false; m_scClocked=false; m_scSensitive=false;
|
|
|
|
|
|
m_usedClock=false; m_usedParam=false;
|
2007-03-02 23:24:51 +01:00
|
|
|
|
m_sigPublic=false; m_sigModPublic=false;
|
2008-06-10 03:25:10 +02:00
|
|
|
|
m_funcLocal=false; m_funcReturn=false;
|
2007-01-18 01:51:26 +01:00
|
|
|
|
m_attrClockEn=false; m_attrIsolateAssign=false;
|
|
|
|
|
|
m_fileDescr=false; m_isConst=false; m_isStatic=false;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
m_trace=false;
|
|
|
|
|
|
}
|
|
|
|
|
|
public:
|
2009-11-05 04:31:53 +01:00
|
|
|
|
AstVar(FileLine* fl, AstVarType type, const string& name, AstNodeDType* dtypep)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
:AstNode(fl)
|
|
|
|
|
|
, m_name(name) {
|
|
|
|
|
|
init();
|
2009-11-05 04:31:53 +01:00
|
|
|
|
combineType(type); setOp1p(dtypep);
|
2006-08-26 13:35:28 +02:00
|
|
|
|
width(msb()-lsb()+1,0);
|
|
|
|
|
|
}
|
2009-11-05 04:31:53 +01:00
|
|
|
|
AstVar(FileLine* fl, AstVarType type, const string& name, AstLogicPacked, int wantwidth)
|
2009-11-02 14:06:04 +01:00
|
|
|
|
:AstNode(fl)
|
|
|
|
|
|
, m_name(name) {
|
|
|
|
|
|
init();
|
|
|
|
|
|
combineType(type);
|
2009-11-05 04:31:53 +01:00
|
|
|
|
setOp1p(new AstBasicDType(fl, AstLogicPacked(), wantwidth));
|
2009-11-02 14:06:04 +01:00
|
|
|
|
width(wantwidth,0);
|
|
|
|
|
|
}
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstVar(FileLine* fl, AstVarType type, const string& name, AstVar* examplep)
|
|
|
|
|
|
:AstNode(fl)
|
|
|
|
|
|
, m_name(name) {
|
|
|
|
|
|
init();
|
|
|
|
|
|
combineType(type);
|
2009-11-02 14:06:04 +01:00
|
|
|
|
if (examplep->dtypep()) {
|
|
|
|
|
|
setOp1p(examplep->dtypep()->cloneTree(true));
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2009-07-16 20:06:53 +02:00
|
|
|
|
width(examplep->width(), examplep->widthMin());
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Var, VAR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual string name() const { return m_name; } // * = Var name
|
2006-10-05 02:45:39 +02:00
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
2009-11-02 14:06:04 +01:00
|
|
|
|
virtual bool broken() const { return !dtypep(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstVarType varType() const { return m_varType; } // * = Type of variable
|
2009-01-06 17:03:57 +01:00
|
|
|
|
void varType2Out() { m_tristate=0; m_input=0; m_output=1; }
|
|
|
|
|
|
void varType2In() { m_tristate=0; m_input=1; m_output=0; }
|
2006-10-05 16:53:17 +02:00
|
|
|
|
string cType() const; // Return C type for declaration: bool, uint32_t, uint64_t, etc.
|
|
|
|
|
|
string scType() const; // Return SysC type: bool, uint32_t, uint64_t, sc_bv
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void combineType(AstVarType type);
|
2009-11-02 14:06:04 +01:00
|
|
|
|
AstNodeDType* dtypep() const { return op1p()->castNodeDType(); } // op1 = Range of variable
|
2009-11-07 05:16:06 +01:00
|
|
|
|
AstNodeDType* dtypeSkipRefp() const { return dtypep()->skipRefp(); } // op1 = Range of variable
|
2009-11-05 04:31:53 +01:00
|
|
|
|
AstNodeDType* dtypeDimensionp(int depth) const;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* initp() const { return op3p()->castNode(); } // op3 = Initial value that never changes (static const)
|
|
|
|
|
|
void initp(AstNode* nodep) { setOp3p(nodep); }
|
2009-05-08 00:28:05 +02:00
|
|
|
|
void addAttrsp(AstNode* nodep) { addNOp4p(nodep); }
|
|
|
|
|
|
AstNode* attrsp() const { return op4p()->castNode(); } // op4 = Attributes during early parse
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool hasSimpleInit() const { return (op3p() && !op3p()->castInitArray()); }
|
2009-11-02 14:06:04 +01:00
|
|
|
|
void dtypep(AstRange* nodep) { setOp1p(nodep); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void attrClockEn(bool flag) { m_attrClockEn = flag; }
|
|
|
|
|
|
void attrFileDescr(bool flag) { m_fileDescr = flag; }
|
|
|
|
|
|
void attrScClocked(bool flag) { m_scClocked = flag; }
|
2007-01-18 01:51:26 +01:00
|
|
|
|
void attrIsolateAssign(bool flag) { m_attrIsolateAssign = flag; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void usedClock(bool flag) { m_usedClock = flag; }
|
|
|
|
|
|
void usedParam(bool flag) { m_usedParam = flag; }
|
|
|
|
|
|
void sigPublic(bool flag) { m_sigPublic = flag; }
|
2007-03-02 23:24:51 +01:00
|
|
|
|
void sigModPublic(bool flag) { m_sigModPublic = flag; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void sc(bool flag) { m_sc = flag; }
|
|
|
|
|
|
void scSensitive(bool flag) { m_scSensitive = flag; }
|
|
|
|
|
|
void primaryIO(bool flag) { m_primaryIO = flag; }
|
|
|
|
|
|
void isConst(bool flag) { m_isConst = flag; }
|
|
|
|
|
|
void isStatic(bool flag) { m_isStatic = flag; }
|
|
|
|
|
|
void funcLocal(bool flag) { m_funcLocal = flag; }
|
|
|
|
|
|
void funcReturn(bool flag) { m_funcReturn = flag; }
|
|
|
|
|
|
void trace(bool flag) { m_trace=flag; }
|
|
|
|
|
|
// METHODS
|
2009-11-05 04:31:53 +01:00
|
|
|
|
AstBasicDType* basicp() const { return dtypep()->basicp(); } // (Slow) recurse down to find basic data type
|
2009-07-22 21:21:41 +02:00
|
|
|
|
virtual void name(const string& name) { m_name = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isInput() const { return m_input; }
|
|
|
|
|
|
bool isOutput() const { return m_output; }
|
2006-09-25 22:40:52 +02:00
|
|
|
|
bool isInOnly() const { return m_input && !m_output; }
|
|
|
|
|
|
bool isOutOnly() const { return m_output && !m_input; }
|
|
|
|
|
|
bool isInout() const { return m_input && m_output; }
|
|
|
|
|
|
bool isTristate() const { return m_tristate; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isPrimaryIO() const { return m_primaryIO; }
|
|
|
|
|
|
bool isPrimaryIn() const { return isPrimaryIO() && isInput(); }
|
2006-09-25 22:40:52 +02:00
|
|
|
|
bool isIO() const { return (m_input||m_output); }
|
2009-11-03 04:14:11 +01:00
|
|
|
|
bool isSignal() const { return (varType()==AstVarType::WIRE || varType()==AstVarType::IMPLICITWIRE
|
2009-11-02 14:06:04 +01:00
|
|
|
|
|| varType()==AstVarType::VAR); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isTemp() const { return (varType()==AstVarType::BLOCKTEMP || varType()==AstVarType::MODULETEMP
|
2008-07-14 16:42:58 +02:00
|
|
|
|
|| varType()==AstVarType::STMTTEMP || varType()==AstVarType::XTEMP); }
|
2008-12-12 21:34:02 +01:00
|
|
|
|
bool isToggleCoverable() const { return ((isIO() || isSignal())
|
2009-11-03 04:14:11 +01:00
|
|
|
|
&& (isIO() || isBitLogic())
|
2008-12-12 21:34:02 +01:00
|
|
|
|
// Wrapper would otherwise duplicate wrapped module's coverage
|
|
|
|
|
|
&& !isSc() && !isPrimaryIO()); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isStatementTemp() const { return (varType()==AstVarType::STMTTEMP); }
|
|
|
|
|
|
bool isMovableToBlock() const { return (varType()==AstVarType::BLOCKTEMP || isFuncLocal()); }
|
2008-07-14 16:42:58 +02:00
|
|
|
|
bool isPure() const { return (varType()==AstVarType::XTEMP); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isParam() const { return (varType()==AstVarType::LPARAM || varType()==AstVarType::GPARAM); }
|
|
|
|
|
|
bool isGParam() const { return (varType()==AstVarType::GPARAM); }
|
|
|
|
|
|
bool isGenVar() const { return (varType()==AstVarType::GENVAR); }
|
2009-11-05 04:31:53 +01:00
|
|
|
|
bool isBitLogic() const { AstBasicDType* bdtypep = basicp(); return bdtypep && bdtypep->isBitLogic(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isUsedClock() const { return m_usedClock; }
|
|
|
|
|
|
bool isUsedParam() const { return m_usedParam; }
|
|
|
|
|
|
bool isSc() const { return m_sc; }
|
|
|
|
|
|
bool isScQuad() const;
|
2009-03-13 19:17:30 +01:00
|
|
|
|
bool isScBv() const;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isScSensitive() const { return m_scSensitive; }
|
|
|
|
|
|
bool isSigPublic() const;
|
2007-03-02 23:24:51 +01:00
|
|
|
|
bool isSigModPublic() const { return m_sigModPublic; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isTrace() const { return m_trace; }
|
|
|
|
|
|
bool isConst() const { return m_isConst; }
|
|
|
|
|
|
bool isStatic() const { return m_isStatic; }
|
|
|
|
|
|
bool isFuncLocal() const { return m_funcLocal; }
|
|
|
|
|
|
bool isFuncReturn() const { return m_funcReturn; }
|
|
|
|
|
|
bool attrClockEn() const { return m_attrClockEn; }
|
|
|
|
|
|
bool attrFileDescr() const { return m_fileDescr; }
|
|
|
|
|
|
bool attrScClocked() const { return m_scClocked; }
|
2007-01-18 01:51:26 +01:00
|
|
|
|
bool attrIsolateAssign() const { return m_attrIsolateAssign; }
|
2009-11-05 04:31:53 +01:00
|
|
|
|
int msb() const { AstBasicDType* bdtypep = basicp(); return bdtypep ? bdtypep->msb() : 0; }
|
|
|
|
|
|
int lsb() const { AstBasicDType* bdtypep = basicp(); return bdtypep ? bdtypep->lsb() : 0; }
|
|
|
|
|
|
int msbEndianed() const { AstBasicDType* bdtypep = basicp(); return bdtypep ? bdtypep->msbEndianed() : 0; }
|
|
|
|
|
|
int lsbEndianed() const { AstBasicDType* bdtypep = basicp(); return bdtypep ? bdtypep->lsbEndianed() : 0; }
|
|
|
|
|
|
int msbMaxSelect() const { AstBasicDType* bdtypep = basicp(); return bdtypep ? bdtypep->msbMaxSelect() : 0; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
uint32_t arrayElements() const; // 1, or total multiplication of all dimensions
|
|
|
|
|
|
virtual string verilogKwd() const;
|
|
|
|
|
|
void propagateAttrFrom(AstVar* fromp) {
|
|
|
|
|
|
// This is getting connected to fromp; keep attributes
|
|
|
|
|
|
// Note the method below too
|
|
|
|
|
|
if (fromp->attrClockEn()) attrClockEn(true);
|
|
|
|
|
|
if (fromp->attrFileDescr()) attrFileDescr(true);
|
2007-01-18 01:51:26 +01:00
|
|
|
|
if (fromp->attrIsolateAssign()) attrIsolateAssign(true);
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
bool gateMultiInputOptimizable() const {
|
|
|
|
|
|
// Ok to gate optimize; must return false if propagateAttrFrom would do anything
|
|
|
|
|
|
return (!attrClockEn() && !isUsedClock());
|
|
|
|
|
|
}
|
|
|
|
|
|
void combineType(AstVar* typevarp) {
|
|
|
|
|
|
// This is same as typevarp (for combining input & reg decls)
|
|
|
|
|
|
propagateAttrFrom(typevarp);
|
|
|
|
|
|
combineType(typevarp->varType());
|
|
|
|
|
|
if (typevarp->isSigPublic()) sigPublic(true);
|
2007-03-02 23:24:51 +01:00
|
|
|
|
if (typevarp->isSigModPublic()) sigModPublic(true);
|
2006-08-26 13:35:28 +02:00
|
|
|
|
if (typevarp->attrScClocked()) attrScClocked(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
void inlineAttrReset(const string& name) {
|
|
|
|
|
|
m_input=m_output=false; m_name = name;
|
|
|
|
|
|
if (varType()==AstVarType::INOUT) m_varType = AstVarType::TRIWIRE;
|
|
|
|
|
|
if (varType()==AstVarType::INPUT || varType()==AstVarType::OUTPUT) m_varType = AstVarType::WIRE;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstDefParam : public AstNode {
|
|
|
|
|
|
// A defparam assignment
|
|
|
|
|
|
// Parents: MODULE
|
|
|
|
|
|
// Children: math
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Name of variable getting set
|
|
|
|
|
|
string m_path; // Dotted cellname to set parameter of
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstDefParam(FileLine* fl, const string& path, const string& name, AstNode* rhsp)
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
setOp1p(rhsp);
|
|
|
|
|
|
m_name = name;
|
|
|
|
|
|
m_path = path;
|
|
|
|
|
|
}
|
|
|
|
|
|
virtual string name() const { return m_name; } // * = Scope name
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(DefParam, DEFPARAM)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanRhs() { return true; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode*) const { return true; }
|
|
|
|
|
|
AstNode* rhsp() const { return op1p()->castNode(); } // op1 = Assign from
|
|
|
|
|
|
string path() const { return m_path; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstScope : public AstNode {
|
|
|
|
|
|
// A particular usage of a cell
|
|
|
|
|
|
// Parents: MODULE
|
|
|
|
|
|
// Children: NODEBLOCK
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Name
|
|
|
|
|
|
AstScope* m_aboveScopep; // Scope above this one in the hierarchy (NULL if top)
|
2007-05-22 14:15:01 +02:00
|
|
|
|
AstCell* m_aboveCellp; // Cell above this in the hierarchy (NULL if top)
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstNodeModule* m_modp; // Module scope corresponds to
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstScope(FileLine* fl, AstNodeModule* modp, const string& name,
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstScope* aboveScopep, AstCell* aboveCellp)
|
|
|
|
|
|
:AstNode(fl)
|
|
|
|
|
|
,m_name(name) ,m_aboveScopep(aboveScopep) ,m_aboveCellp(aboveCellp), m_modp(modp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Scope, SCOPE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void cloneRelink();
|
|
|
|
|
|
virtual bool broken() const;
|
2006-10-05 02:45:39 +02:00
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_name; } // * = Scope name
|
2009-07-22 21:21:41 +02:00
|
|
|
|
virtual void name(const string& name) { m_name = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
string nameDotless() const;
|
2006-08-30 23:07:55 +02:00
|
|
|
|
string nameVlSym() const { return (((string)"vlSymsp->") + nameDotless()); }
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstNodeModule* modp() const { return m_modp; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void addVarp(AstNode* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
AstNode* varsp() const { return op1p()->castNode(); } // op1 = AstVarScope's
|
|
|
|
|
|
void addActivep(AstNode* nodep) { addOp2p(nodep); }
|
|
|
|
|
|
AstNode* blocksp() const { return op2p()->castNode(); } // op2 = Block names
|
|
|
|
|
|
void addFinalClkp(AstNode* nodep) { addOp3p(nodep); }
|
|
|
|
|
|
AstNode* finalClksp() const { return op3p()->castNode(); } // op3 = Final assigns for clock correction
|
|
|
|
|
|
AstScope* aboveScopep() const { return m_aboveScopep; }
|
|
|
|
|
|
AstCell* aboveCellp() const { return m_aboveCellp; }
|
|
|
|
|
|
bool isTop() const { return aboveScopep()==NULL; } // At top of hierarchy
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstTopScope : public AstNode {
|
|
|
|
|
|
// In the top level netlist, a complete scope tree
|
|
|
|
|
|
// There may be two of these, when we support "rare" and "usual" splitting
|
|
|
|
|
|
// Parents: topMODULE
|
|
|
|
|
|
// Children: SCOPEs
|
|
|
|
|
|
AstTopScope(FileLine* fl, AstScope* ascopep)
|
|
|
|
|
|
:AstNode(fl)
|
|
|
|
|
|
{addNOp2p(ascopep);}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(TopScope, TOPSCOPE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* stmtsp() const { return op1p()->castNode(); }
|
|
|
|
|
|
void addStmtsp(AstNode* nodep) { addOp1p(nodep); }
|
2006-08-29 21:10:55 +02:00
|
|
|
|
AstScope* scopep() const { return op2p()->castScope(); } // op1 = AstVarScope's
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstVarScope : public AstNode {
|
|
|
|
|
|
// A particular scoped usage of a variable
|
|
|
|
|
|
// That is, as a module is used under multiple cells, we get a different varscope for each var in the module
|
|
|
|
|
|
// Parents: MODULE
|
|
|
|
|
|
// Children: none
|
|
|
|
|
|
private:
|
|
|
|
|
|
AstScope* m_scopep; // Scope variable is underneath
|
|
|
|
|
|
AstVar* m_varp; // [AfterLink] Pointer to variable itself
|
|
|
|
|
|
bool m_circular:1; // Used in circular ordering dependency, need change detect
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstVarScope(FileLine* fl, AstScope* scopep, AstVar* varp)
|
|
|
|
|
|
:AstNode(fl)
|
|
|
|
|
|
, m_scopep(scopep), m_varp(varp) {
|
|
|
|
|
|
m_circular = false;
|
|
|
|
|
|
widthSignedFrom(varp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(VarScope, VARSCOPE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void cloneRelink() { if (m_varp && m_varp->clonep()) {
|
|
|
|
|
|
m_varp = m_varp->clonep()->castVar();
|
|
|
|
|
|
UASSERT(m_scopep->clonep(), "No clone cross link: "<<this);
|
|
|
|
|
|
m_scopep = m_scopep->clonep()->castScope();
|
|
|
|
|
|
}}
|
|
|
|
|
|
virtual bool broken() const { return ( (m_varp && !m_varp->brokeExists())
|
|
|
|
|
|
|| (m_scopep && !m_scopep->brokeExists())); }
|
2006-10-05 02:45:39 +02:00
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const {return scopep()->name()+"->"+varp()->name();} // * = Var name
|
|
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
AstVar* varp() const { return m_varp; } // [After Link] Pointer to variable
|
|
|
|
|
|
AstScope* scopep() const { return m_scopep; } // Pointer to scope it's under
|
|
|
|
|
|
AstNode* valuep() const { return op1p(); } // op1 = Calculation of value of variable, NULL=complicated
|
|
|
|
|
|
void valuep(AstNode* valuep) { addOp1p(valuep); }
|
|
|
|
|
|
bool isCircular() const { return m_circular; }
|
|
|
|
|
|
void circular(bool flag) { m_circular = flag; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstVarRef : public AstNodeVarRef {
|
|
|
|
|
|
// A reference to a variable (lvalue or rvalue)
|
|
|
|
|
|
AstVarRef(FileLine* fl, const string& name, bool lvalue)
|
|
|
|
|
|
:AstNodeVarRef(fl, name, NULL, lvalue) {}
|
|
|
|
|
|
AstVarRef(FileLine* fl, AstVar* varp, bool lvalue) // This form only allowed post-link
|
|
|
|
|
|
:AstNodeVarRef(fl, varp->name(), varp, lvalue) {} // because output/wire compression may lead to deletion of AstVar's
|
|
|
|
|
|
AstVarRef(FileLine* fl, AstVarScope* varscp, bool lvalue) // This form only allowed post-link
|
|
|
|
|
|
:AstNodeVarRef(fl, varscp->varp()->name(), varscp->varp(), lvalue) { // because output/wire compression may lead to deletion of AstVar's
|
|
|
|
|
|
varScopep(varscp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(VarRef, VARREF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(V3Hash(varp()->name()),V3Hash(hiername())); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
if (varScopep()) return varScopep()==samep->castVarRef()->varScopep();
|
|
|
|
|
|
else return (hiername()==samep->castVarRef()->hiername()
|
|
|
|
|
|
&& varp()->name()==samep->castVarRef()->varp()->name()); }
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*(lvalue()?1:instrCountLd()); }
|
|
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; } // Implemented specially
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstVarXRef : public AstNodeVarRef {
|
|
|
|
|
|
// A VarRef to something in another module before AstScope.
|
|
|
|
|
|
// Includes pin on a cell, as part of a ASSIGN statement to connect I/Os until AstScope
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_dotted; // Scope name to connected to
|
2007-05-22 14:15:01 +02:00
|
|
|
|
string m_inlinedDots; // Dotted hierarchy flattened out
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
|
|
|
|
|
AstVarXRef(FileLine* fl, const string& name, const string& dotted, bool lvalue)
|
|
|
|
|
|
:AstNodeVarRef(fl, name, NULL, lvalue)
|
|
|
|
|
|
, m_dotted(dotted) { }
|
|
|
|
|
|
AstVarXRef(FileLine* fl, AstVar* varp, const string& dotted, bool lvalue)
|
|
|
|
|
|
:AstNodeVarRef(fl, varp->name(), varp, lvalue)
|
|
|
|
|
|
, m_dotted(dotted) {
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(VarXRef, VARXREF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
2008-06-10 03:25:10 +02:00
|
|
|
|
string dotted() const { return m_dotted; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
string prettyDotted() const { return prettyName(dotted()); }
|
|
|
|
|
|
string inlinedDots() const { return m_inlinedDots; }
|
|
|
|
|
|
void inlinedDots(const string& flag) { m_inlinedDots = flag; }
|
|
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return true; }
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(V3Hash(varp()),V3Hash(dotted())); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return (hiername()==samep->castVarXRef()->hiername()
|
|
|
|
|
|
&& varp()==samep->castVarXRef()->varp()
|
|
|
|
|
|
&& name()==samep->castVarXRef()->name()
|
|
|
|
|
|
&& dotted()==samep->castVarXRef()->dotted()); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstPin : public AstNode {
|
|
|
|
|
|
// A pin on a cell
|
|
|
|
|
|
private:
|
|
|
|
|
|
int m_pinNum; // Pin number
|
|
|
|
|
|
string m_name; // Pin name, or "" for number based interconnect
|
|
|
|
|
|
AstVar* m_modVarp; // Input/output this pin connects to on submodule.
|
2007-03-14 14:06:08 +01:00
|
|
|
|
bool m_svImplicit; // Pin is SystemVerilog .name'ed
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
|
|
|
|
|
AstPin(FileLine* fl, int pinNum, const string& name, AstNode* exprp)
|
|
|
|
|
|
:AstNode(fl)
|
2007-03-14 14:06:08 +01:00
|
|
|
|
,m_name(name), m_svImplicit(false) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
m_pinNum = pinNum;
|
|
|
|
|
|
m_modVarp = NULL;
|
|
|
|
|
|
setNOp1p(exprp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Pin, PIN)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual bool broken() const { return (m_modVarp && !m_modVarp->brokeExists()); }
|
|
|
|
|
|
virtual string name() const { return m_name; } // * = Pin name, ""=go by number
|
2009-07-22 21:21:41 +02:00
|
|
|
|
virtual void name(const string& name) { m_name = name; }
|
2009-05-08 00:28:05 +02:00
|
|
|
|
bool dotStar() const { return name() == ".*"; } // Special fake name for .* connections until linked
|
2006-08-26 13:35:28 +02:00
|
|
|
|
int pinNum() const { return m_pinNum; }
|
|
|
|
|
|
void exprp(AstNode* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
AstNode* exprp() const { return op1p()->castNode(); } // op1 = Expression connected to pin
|
|
|
|
|
|
AstVar* modVarp() const { return m_modVarp; } // [After Link] Pointer to variable
|
|
|
|
|
|
void modVarp(AstVar* varp) { m_modVarp=varp; }
|
2007-03-14 14:06:08 +01:00
|
|
|
|
bool svImplicit() const { return m_svImplicit; }
|
|
|
|
|
|
void svImplicit(bool flag) { m_svImplicit=flag; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
2009-11-07 12:20:20 +01:00
|
|
|
|
struct AstModule : public AstNodeModule {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// A module declaration
|
|
|
|
|
|
AstModule(FileLine* fl, const string& name)
|
2009-11-07 12:20:20 +01:00
|
|
|
|
: AstNodeModule (fl,name) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Module, MODULE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
2009-11-08 03:05:02 +01:00
|
|
|
|
struct AstPackage : public AstNodeModule {
|
|
|
|
|
|
// A package declaration
|
|
|
|
|
|
AstPackage(FileLine* fl, const string& name)
|
|
|
|
|
|
: AstNodeModule (fl,name) {}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(Package, PACKAGE)
|
|
|
|
|
|
static string dollarUnitName() { return AstNode::encodeName("$unit"); }
|
|
|
|
|
|
bool isDollarUnit() const { return name() == dollarUnitName(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2009-11-10 01:07:59 +01:00
|
|
|
|
struct AstPackageImport : public AstNode {
|
|
|
|
|
|
private:
|
|
|
|
|
|
// A package import declaration
|
|
|
|
|
|
string m_name;
|
|
|
|
|
|
AstPackage* m_packagep; // Package hierarchy
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstPackageImport(FileLine* fl, AstPackage* packagep, const string& name)
|
|
|
|
|
|
: AstNode (fl), m_name(name), m_packagep(packagep) {}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(PackageImport, PACKAGEIMPORT)
|
|
|
|
|
|
virtual bool broken() const { return (!m_packagep || !m_packagep->brokeExists()); }
|
|
|
|
|
|
virtual void cloneRelink() { if (m_packagep && m_packagep->clonep()) m_packagep = m_packagep->clonep()->castPackage(); }
|
|
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual string name() const { return m_name; }
|
|
|
|
|
|
AstPackage* packagep() const { return m_packagep; }
|
|
|
|
|
|
void packagep(AstPackage* nodep) { m_packagep=nodep; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstCell : public AstNode {
|
2009-11-07 12:20:20 +01:00
|
|
|
|
// A instantiation cell or interface call (don't know which until link)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Cell name
|
|
|
|
|
|
string m_origName; // Original name before dot addition
|
|
|
|
|
|
string m_modName; // Module the cell instances
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstNodeModule* m_modp; // [AfterLink] Pointer to module instanced
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
|
|
|
|
|
AstCell(FileLine* fl, const string& instName, const string& modName,
|
|
|
|
|
|
AstPin* pinsp, AstPin* paramsp, AstRange* rangep)
|
|
|
|
|
|
: AstNode(fl)
|
2007-03-14 14:06:08 +01:00
|
|
|
|
, m_name(instName), m_origName(instName), m_modName(modName)
|
2009-05-08 00:28:05 +02:00
|
|
|
|
, m_modp(NULL) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
addNOp1p(pinsp); addNOp2p(paramsp); setNOp3p(rangep); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Cell, CELL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// No cloneRelink, we presume cloneee's want the same module linkages
|
|
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual bool broken() const { return (m_modp && !m_modp->brokeExists()); }
|
2006-10-05 02:45:39 +02:00
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// ACCESSORS
|
|
|
|
|
|
virtual string name() const { return m_name; } // * = Cell name
|
2009-07-22 21:21:41 +02:00
|
|
|
|
virtual void name(const string& name) { m_name = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
string origName() const { return m_origName; } // * = Original name
|
2006-09-01 17:31:07 +02:00
|
|
|
|
void origName(const string& name) { m_origName = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
string modName() const { return m_modName; } // * = Instance name
|
2006-09-01 17:31:07 +02:00
|
|
|
|
void modName(const string& name) { m_modName = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstPin* pinsp() const { return op1p()->castPin(); } // op1 = List of cell ports
|
|
|
|
|
|
AstPin* paramsp() const { return op2p()->castPin(); } // op2 = List of parameter #(##) values
|
|
|
|
|
|
AstRange* rangep() const { return op3p()->castRange(); } // op3 = Range of arrayed instants (NULL=not ranged)
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstNodeModule* modp() const { return m_modp; } // [AfterLink] = Pointer to module instantiated
|
2006-09-01 17:31:07 +02:00
|
|
|
|
void addPinsp(AstPin* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
void addParamsp(AstPin* nodep) { addOp2p(nodep); }
|
2009-11-07 12:20:20 +01:00
|
|
|
|
void modp(AstNodeModule* nodep) { m_modp = nodep; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCellInline : public AstNode {
|
|
|
|
|
|
// A instantiation cell that was removed by inlining
|
|
|
|
|
|
// For communication between V3Inline and V3LinkDot only
|
|
|
|
|
|
// Children: When 2 levels inlined, other CellInline under this
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Cell name, possibly {a}__DOT__{b}...
|
|
|
|
|
|
string m_origModName; // Original name of the module, ignoring name() changes, for dot lookup
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstCellInline(FileLine* fl, const string& name, const string& origModName)
|
|
|
|
|
|
: AstNode(fl)
|
|
|
|
|
|
, m_name(name), m_origModName(origModName) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CellInline, CELLINLINE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
// ACCESSORS
|
|
|
|
|
|
virtual string name() const { return m_name; } // * = Cell name
|
|
|
|
|
|
string origModName() const { return m_origModName; } // * = modp()->origName() before inlining
|
2009-07-22 21:21:41 +02:00
|
|
|
|
virtual void name(const string& name) { m_name = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstPort : public AstNode {
|
|
|
|
|
|
// A port (in/out/inout) on a module
|
|
|
|
|
|
private:
|
|
|
|
|
|
int m_pinNum; // Pin number
|
|
|
|
|
|
string m_name; // Name of pin
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstPort(FileLine* fl, int pinnum, const string& name)
|
|
|
|
|
|
:AstNode(fl)
|
|
|
|
|
|
,m_pinNum(pinnum) ,m_name(name) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Port, PORT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_name; } // * = Port name
|
|
|
|
|
|
int pinNum() const { return m_pinNum; } // * = Pin number, for order based instantiation
|
|
|
|
|
|
AstNode* exprp() const { return op1p()->castNode(); } // op1 = Expression connected to port
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//######################################################################
|
|
|
|
|
|
|
|
|
|
|
|
struct AstBegin : public AstNode {
|
|
|
|
|
|
// A Begin/end named block, only exists shortly after parsing until linking
|
|
|
|
|
|
// Parents: statement
|
|
|
|
|
|
// Children: statements
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Name of block
|
2009-10-12 02:50:31 +02:00
|
|
|
|
bool m_unnamed; // Originally unnamed
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
|
|
|
|
|
// Node that simply puts name into the output stream
|
|
|
|
|
|
AstBegin(FileLine* fileline, const string& name, AstNode* stmtsp)
|
|
|
|
|
|
: AstNode(fileline)
|
|
|
|
|
|
, m_name(name) {
|
|
|
|
|
|
addNOp1p(stmtsp);
|
2009-10-12 02:50:31 +02:00
|
|
|
|
m_unnamed = (name=="");
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Begin, BEGIN)
|
2009-10-12 02:50:31 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_name; } // * = Block name
|
2009-07-22 21:21:41 +02:00
|
|
|
|
virtual void name(const string& name) { m_name = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// op1 = Statements
|
|
|
|
|
|
AstNode* stmtsp() const { return op1p()->castNode(); } // op1 = List of statements
|
2009-10-31 15:08:38 +01:00
|
|
|
|
void addStmtp(AstNode* nodep) { addNOp1p(nodep); }
|
2009-10-12 02:50:31 +02:00
|
|
|
|
bool unnamed() const { return m_unnamed; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
2008-06-10 03:25:10 +02:00
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstGenerate : public AstNode {
|
|
|
|
|
|
// A Generate/end block
|
|
|
|
|
|
// Parents: MODULE
|
|
|
|
|
|
// Children: modItems
|
|
|
|
|
|
AstGenerate(FileLine* fileline, AstNode* stmtsp)
|
|
|
|
|
|
: AstNode(fileline) {
|
|
|
|
|
|
addNOp1p(stmtsp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Generate, GENERATE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// op1 = Statements
|
|
|
|
|
|
AstNode* stmtsp() const { return op1p()->castNode(); } // op1 = List of statements
|
|
|
|
|
|
void addStmtp(AstNode* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-12-21 22:53:51 +01:00
|
|
|
|
struct AstParseRef : public AstNode {
|
|
|
|
|
|
// A reference to a variable, function or task
|
|
|
|
|
|
// We don't know which at parse time due to bison constraints
|
|
|
|
|
|
// The link stages will replace this with AstVarRef, or AstTaskRef, etc.
|
|
|
|
|
|
// Parents: math|stmt
|
|
|
|
|
|
// Children: TEXT|DOT|SEL* (or expression under sel)
|
|
|
|
|
|
private:
|
|
|
|
|
|
AstParseRefExp m_expect; // Type we think it should resolve to
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstParseRef(FileLine* fl, AstParseRefExp expect, AstNode* lhsp)
|
|
|
|
|
|
:AstNode(fl), m_expect(expect) { setOp1p(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ParseRef, PARSEREF)
|
2006-12-21 22:53:51 +01:00
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(m_expect); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return expect() == samep->castParseRef()->expect(); }
|
|
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-12-21 22:53:51 +01:00
|
|
|
|
AstParseRefExp expect() const { return m_expect; }
|
|
|
|
|
|
// op1 = Components
|
|
|
|
|
|
AstNode* lhsp() const { return op1p(); } // op1 = List of statements
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstDot : public AstNode {
|
|
|
|
|
|
// A dot separating paths in a AstXRef, AstFuncRef or AstTaskRef
|
|
|
|
|
|
// These are elimiated in the link stage
|
|
|
|
|
|
AstDot(FileLine* fl, AstNode* lhsp, AstNode* rhsp)
|
|
|
|
|
|
:AstNode(fl) { setOp1p(lhsp); setOp2p(rhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Dot, DOT)
|
2006-12-21 22:53:51 +01:00
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-12-21 22:53:51 +01:00
|
|
|
|
AstNode* lhsp() const { return op1p(); }
|
|
|
|
|
|
AstNode* rhsp() const { return op2p(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//######################################################################
|
|
|
|
|
|
|
|
|
|
|
|
struct AstTask : public AstNodeFTask {
|
|
|
|
|
|
// A task inside a module
|
|
|
|
|
|
AstTask(FileLine* fl, const string& name, AstNode* stmtp)
|
|
|
|
|
|
:AstNodeFTask(fl, name, stmtp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Task, TASK)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstFunc : public AstNodeFTask {
|
|
|
|
|
|
// A function inside a module
|
|
|
|
|
|
AstFunc(FileLine* fl, const string& name, AstNode* stmtp, AstNode* fvarsp)
|
|
|
|
|
|
:AstNodeFTask(fl, name, stmtp) {
|
|
|
|
|
|
addNOp1p(fvarsp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Func, FUNC)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// op1 = Range output variable (functions only)
|
|
|
|
|
|
AstNode* fvarp() const { return op1p()->castNode(); }
|
2009-10-31 15:08:38 +01:00
|
|
|
|
void addFvarp(AstNode* nodep) { addNOp1p(nodep); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstTaskRef : public AstNodeFTaskRef {
|
|
|
|
|
|
// A reference to a task
|
2006-12-21 22:53:51 +01:00
|
|
|
|
AstTaskRef(FileLine* fl, AstParseRef* namep, AstNode* pinsp)
|
|
|
|
|
|
:AstNodeFTaskRef(fl, namep, pinsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(TaskRef, TASKREF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstFuncRef : public AstNodeFTaskRef {
|
|
|
|
|
|
// A reference to a function
|
2006-12-21 22:53:51 +01:00
|
|
|
|
AstFuncRef(FileLine* fl, AstParseRef* namep, AstNode* pinsp)
|
|
|
|
|
|
:AstNodeFTaskRef(fl, namep, pinsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(FuncRef, FUNCREF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//######################################################################
|
|
|
|
|
|
|
2008-11-20 13:55:54 +01:00
|
|
|
|
struct AstSenItem : public AstNodeSenItem {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// Parents: SENTREE
|
2009-01-07 15:37:59 +01:00
|
|
|
|
// Children: (optional) VARREF SENGATE
|
2006-08-26 13:35:28 +02:00
|
|
|
|
private:
|
|
|
|
|
|
AstEdgeType m_edgeType; // Edge type
|
|
|
|
|
|
public:
|
|
|
|
|
|
class Combo {}; // for creator type-overload selection
|
|
|
|
|
|
class Initial {}; // for creator type-overload selection
|
|
|
|
|
|
class Settle {}; // for creator type-overload selection
|
|
|
|
|
|
class Never {}; // for creator type-overload selection
|
2006-10-03 15:02:21 +02:00
|
|
|
|
AstSenItem(FileLine* fl, AstEdgeType edgeType, AstNodeVarRef* varrefp)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
: AstNodeSenItem(fl), m_edgeType(edgeType) {
|
2006-12-21 22:53:51 +01:00
|
|
|
|
setOp1p(varrefp);
|
|
|
|
|
|
}
|
|
|
|
|
|
AstSenItem(FileLine* fl, AstEdgeType edgeType, AstParseRef* varrefp)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
: AstNodeSenItem(fl), m_edgeType(edgeType) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
setOp1p(varrefp);
|
|
|
|
|
|
}
|
|
|
|
|
|
AstSenItem(FileLine* fl, Combo)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
: AstNodeSenItem(fl) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
m_edgeType = AstEdgeType::COMBO;
|
|
|
|
|
|
}
|
|
|
|
|
|
AstSenItem(FileLine* fl, Initial)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
: AstNodeSenItem(fl) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
m_edgeType = AstEdgeType::INITIAL;
|
|
|
|
|
|
}
|
|
|
|
|
|
AstSenItem(FileLine* fl, Settle)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
: AstNodeSenItem(fl) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
m_edgeType = AstEdgeType::SETTLE;
|
|
|
|
|
|
}
|
|
|
|
|
|
AstSenItem(FileLine* fl, Never)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
: AstNodeSenItem(fl) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
m_edgeType = AstEdgeType::NEVER;
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(SenItem, SENITEM)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(V3Hash(edgeType())); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return edgeType()==samep->castSenItem()->edgeType(); }
|
|
|
|
|
|
AstEdgeType edgeType() const { return m_edgeType; } // * = Posedge/negedge
|
|
|
|
|
|
void edgeType(AstEdgeType type) { m_edgeType=type; editCountInc(); }// * = Posedge/negedge
|
|
|
|
|
|
AstNode* sensp() const { return op1p(); } // op1 = Signal sensitized
|
2006-10-03 15:02:21 +02:00
|
|
|
|
AstNodeVarRef* varrefp() const { return op1p()->castNodeVarRef(); } // op1 = Signal sensitized
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//
|
2008-11-20 13:55:54 +01:00
|
|
|
|
virtual bool isClocked() const { return edgeType().clockedStmt(); }
|
|
|
|
|
|
virtual bool isCombo() const { return edgeType()==AstEdgeType::COMBO; }
|
|
|
|
|
|
virtual bool isInitial() const { return edgeType()==AstEdgeType::INITIAL; }
|
|
|
|
|
|
virtual bool isSettle() const { return edgeType()==AstEdgeType::SETTLE; }
|
|
|
|
|
|
virtual bool isNever() const { return edgeType()==AstEdgeType::NEVER; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool hasVar() const { return !(isCombo()||isInitial()||isSettle()||isNever()); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2009-01-07 15:37:59 +01:00
|
|
|
|
struct AstSenGate : public AstNodeSenItem {
|
|
|
|
|
|
// Parents: SENTREE
|
|
|
|
|
|
// Children: SENITEM expr
|
|
|
|
|
|
// AND as applied to a sensitivity list and a gating expression
|
|
|
|
|
|
// Performing this gating is optional; it may be removed by later optimizations
|
|
|
|
|
|
AstSenGate(FileLine* fl, AstSenItem* sensesp, AstNode* rhsp) : AstNodeSenItem(fl) {
|
|
|
|
|
|
width(1,1); addOp1p(sensesp); setOp2p(rhsp);
|
|
|
|
|
|
}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(SenGate, SENGATE)
|
|
|
|
|
|
virtual string emitVerilog() { return "(%l) && (%r)"; }
|
|
|
|
|
|
AstSenItem* sensesp() const { return op1p()->castSenItem(); }
|
|
|
|
|
|
AstNode* rhsp() const { return op2p()->castNode(); }
|
|
|
|
|
|
void sensesp(AstSenItem* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
void rhsp(AstNode* nodep) { setOp2p(nodep); }
|
|
|
|
|
|
//
|
|
|
|
|
|
virtual bool isClocked() const { return true; }
|
|
|
|
|
|
virtual bool isCombo() const { return false; }
|
|
|
|
|
|
virtual bool isInitial() const { return false; }
|
|
|
|
|
|
virtual bool isSettle() const { return false; }
|
|
|
|
|
|
virtual bool isNever() const { return false; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstSenTree : public AstNode {
|
|
|
|
|
|
// A list of senitems
|
|
|
|
|
|
// Parents: MODULE | SBLOCK
|
|
|
|
|
|
// Children: SENITEM list
|
|
|
|
|
|
private:
|
|
|
|
|
|
bool m_multi; // Created from combo logic by ORing multiple clock domains
|
|
|
|
|
|
public:
|
2008-11-20 13:55:54 +01:00
|
|
|
|
AstSenTree(FileLine* fl, AstNodeSenItem* sensesp)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNode(fl), m_multi(false) {
|
|
|
|
|
|
addNOp1p(sensesp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(SenTree, SENTREE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
2006-10-05 02:45:39 +02:00
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool isMulti() const { return m_multi; }
|
2008-11-20 13:55:54 +01:00
|
|
|
|
AstNodeSenItem* sensesp() const { return op1p()->castNodeSenItem(); } // op1 = Sensitivity list
|
|
|
|
|
|
void addSensesp(AstNodeSenItem* nodep) { addOp1p(nodep); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void multi(bool flag) { m_multi = true; }
|
|
|
|
|
|
// METHODS
|
|
|
|
|
|
bool hasClocked(); // Includes a clocked statement
|
|
|
|
|
|
bool hasSettle(); // Includes a SETTLE SenItem
|
|
|
|
|
|
bool hasInitial(); // Includes a INITIAL SenItem
|
|
|
|
|
|
bool hasCombo(); // Includes a COMBO SenItem
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstAlways : public AstNode {
|
|
|
|
|
|
AstAlways(FileLine* fl, AstSenTree* sensesp, AstNode* bodysp)
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
addNOp1p(sensesp); addNOp2p(bodysp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Always, ALWAYS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//
|
|
|
|
|
|
AstSenTree* sensesp() const { return op1p()->castSenTree(); } // op1 = Sensitivity list
|
|
|
|
|
|
AstNode* bodysp() const { return op2p()->castNode(); } // op2 = Statements to evaluate
|
|
|
|
|
|
void addStmtp(AstNode* nodep) { addOp2p(nodep); }
|
|
|
|
|
|
// Special accessors
|
|
|
|
|
|
bool isJustOneBodyStmt() const { return bodysp() && !bodysp()->nextp(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstAlwaysPost : public AstNode {
|
|
|
|
|
|
// Like always but post assignments for memory assignment IFs
|
|
|
|
|
|
AstAlwaysPost(FileLine* fl, AstSenTree* sensesp, AstNode* bodysp)
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
addNOp1p(sensesp); addNOp2p(bodysp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(AlwaysPost, ALWAYSPOST)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//
|
|
|
|
|
|
AstNode* bodysp() const { return op2p()->castNode(); } // op2 = Statements to evaluate
|
|
|
|
|
|
void addBodysp(AstNode* newp) { addOp2p(newp); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstAssign : public AstNodeAssign {
|
|
|
|
|
|
AstAssign(FileLine* fileline, AstNode* lhsp, AstNode* rhsp)
|
|
|
|
|
|
: AstNodeAssign(fileline, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Assign, ASSIGN)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual AstNode* cloneType(AstNode* lhsp, AstNode* rhsp) { return new AstAssign(this->fileline(), lhsp, rhsp); }
|
2009-07-22 20:38:20 +02:00
|
|
|
|
virtual string verilogKwd() const { return "="; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstAssignAlias : public AstNodeAssign {
|
|
|
|
|
|
// Like AstAssignW, but a true bidirect interconnection alias
|
|
|
|
|
|
// If both sides are wires, there's no LHS vs RHS,
|
|
|
|
|
|
AstAssignAlias(FileLine* fileline, AstVarRef* lhsp, AstVarRef* rhsp)
|
|
|
|
|
|
: AstNodeAssign(fileline, lhsp, rhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(AssignAlias, ASSIGNALIAS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual AstNode* cloneType(AstNode* lhsp, AstNode* rhsp) { V3ERROR_NA; return NULL; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstAssignDly : public AstNodeAssign {
|
|
|
|
|
|
AstAssignDly(FileLine* fileline, AstNode* lhsp, AstNode* rhsp)
|
|
|
|
|
|
: AstNodeAssign(fileline, lhsp, rhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(AssignDly, ASSIGNDLY)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual AstNode* cloneType(AstNode* lhsp, AstNode* rhsp) { return new AstAssignDly(this->fileline(), lhsp, rhsp); }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
2009-07-22 20:38:20 +02:00
|
|
|
|
virtual string verilogKwd() const { return "<="; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstAssignW : public AstNodeAssign {
|
|
|
|
|
|
// Like assign, but wire/assign's in verilog, the only setting of the specified variable
|
|
|
|
|
|
AstAssignW(FileLine* fileline, AstNode* lhsp, AstNode* rhsp)
|
2009-10-07 03:58:00 +02:00
|
|
|
|
: AstNodeAssign(fileline, lhsp, rhsp) { }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(AssignW, ASSIGNW)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual AstNode* cloneType(AstNode* lhsp, AstNode* rhsp) { return new AstAssignW(this->fileline(), lhsp, rhsp); }
|
2009-10-09 02:42:45 +02:00
|
|
|
|
AstAlways* convertToAlways() {
|
|
|
|
|
|
AstNode* lhs1p = lhsp()->unlinkFrBack();
|
|
|
|
|
|
AstNode* rhs1p = rhsp()->unlinkFrBack();
|
|
|
|
|
|
AstAlways* newp = new AstAlways (fileline(), NULL,
|
|
|
|
|
|
new AstAssign (fileline(), lhs1p, rhs1p));
|
|
|
|
|
|
replaceWith(newp); // User expected to then deleteTree();
|
|
|
|
|
|
return newp;
|
|
|
|
|
|
}
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
2009-01-06 17:03:57 +01:00
|
|
|
|
struct AstPull : public AstNode {
|
|
|
|
|
|
private:
|
|
|
|
|
|
bool m_direction;
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstPull(FileLine* fileline, AstNode* lhsp, bool direction)
|
|
|
|
|
|
: AstNode(fileline) {
|
|
|
|
|
|
setOp1p(lhsp);
|
|
|
|
|
|
m_direction = direction;
|
|
|
|
|
|
}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(Pull, PULL)
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return direction()==samep->castPull()->direction(); }
|
|
|
|
|
|
void lhsp(AstNode* np) { setOp1p(np); }
|
|
|
|
|
|
AstNode* lhsp() const { return op1p()->castNode(); } // op1 = Assign to
|
|
|
|
|
|
uint32_t direction() const { return (uint32_t) m_direction; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstAssignPre : public AstNodeAssign {
|
|
|
|
|
|
// Like Assign, but predelayed assignment requiring special order handling
|
|
|
|
|
|
AstAssignPre(FileLine* fileline, AstNode* lhsp, AstNode* rhsp)
|
|
|
|
|
|
: AstNodeAssign(fileline, lhsp, rhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(AssignPre, ASSIGNPRE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual AstNode* cloneType(AstNode* lhsp, AstNode* rhsp) { return new AstAssignPre(this->fileline(), lhsp, rhsp); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstAssignPost : public AstNodeAssign {
|
|
|
|
|
|
// Like Assign, but predelayed assignment requiring special order handling
|
|
|
|
|
|
AstAssignPost(FileLine* fileline, AstNode* lhsp, AstNode* rhsp)
|
|
|
|
|
|
: AstNodeAssign(fileline, lhsp, rhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(AssignPost, ASSIGNPOST)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual AstNode* cloneType(AstNode* lhsp, AstNode* rhsp) { return new AstAssignPost(this->fileline(), lhsp, rhsp); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstComment : public AstNodeStmt {
|
|
|
|
|
|
// Some comment to put into the output stream
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// Children: none
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Name of variable
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstComment(FileLine* fl, const string& name)
|
|
|
|
|
|
: AstNodeStmt(fl)
|
|
|
|
|
|
, m_name(name) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Comment, COMMENT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_name; } // * = Var name
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); } // Ignore name in comments
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; } // Ignore name in comments
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCond : public AstNodeCond {
|
|
|
|
|
|
// Conditional ?: statement
|
|
|
|
|
|
// Parents: MATH
|
|
|
|
|
|
// Children: MATH
|
|
|
|
|
|
AstCond(FileLine* fl, AstNode* condp, AstNode* expr1p, AstNode* expr2p)
|
|
|
|
|
|
: AstNodeCond(fl, condp, expr1p, expr2p) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Cond, COND)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCondBound : public AstNodeCond {
|
|
|
|
|
|
// Conditional ?: statement, specially made for saftey checking of array bounds
|
|
|
|
|
|
// Parents: MATH
|
|
|
|
|
|
// Children: MATH
|
|
|
|
|
|
AstCondBound(FileLine* fl, AstNode* condp, AstNode* expr1p, AstNode* expr2p)
|
|
|
|
|
|
: AstNodeCond(fl, condp, expr1p, expr2p) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CondBound, CONDBOUND)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCoverDecl : public AstNodeStmt {
|
|
|
|
|
|
// Coverage analysis point declaration
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// Children: none
|
|
|
|
|
|
private:
|
2008-12-12 21:34:02 +01:00
|
|
|
|
AstCoverDecl* m_dataDeclp; // [After V3CoverageJoin] Pointer to duplicate declaration to get data from instead
|
2008-12-12 22:04:56 +01:00
|
|
|
|
string m_page;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
string m_text;
|
|
|
|
|
|
string m_hier;
|
|
|
|
|
|
int m_column;
|
2008-12-05 16:54:14 +01:00
|
|
|
|
int m_binNum; // Set by V3EmitCSyms to tell final V3Emit what to increment
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
2008-12-12 22:04:56 +01:00
|
|
|
|
AstCoverDecl(FileLine* fl, int column, const string& page, const string& comment)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNodeStmt(fl) {
|
2008-12-12 22:04:56 +01:00
|
|
|
|
m_text = comment; m_page = page; m_column = column;
|
2008-12-05 16:54:14 +01:00
|
|
|
|
m_binNum = 0;
|
2008-12-12 21:34:02 +01:00
|
|
|
|
m_dataDeclp = NULL;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CoverDecl, COVERDECL)
|
2008-12-12 21:34:02 +01:00
|
|
|
|
virtual bool broken() const {
|
|
|
|
|
|
if (m_dataDeclp && !m_dataDeclp->brokeExists()) return true;
|
|
|
|
|
|
if (m_dataDeclp && m_dataDeclp->m_dataDeclp) v3fatalSrc("dataDeclp should point to real data, not be a list"); // Avoid O(n^2) accessing
|
|
|
|
|
|
return false; }
|
|
|
|
|
|
virtual void cloneRelink() { if (m_dataDeclp && m_dataDeclp->clonep()) m_dataDeclp = m_dataDeclp->clonep()->castCoverDecl(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual int instrCount() const { return 1+2*instrCountLd(); }
|
2006-10-05 02:45:39 +02:00
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
int column() const { return m_column; }
|
2008-12-05 16:54:14 +01:00
|
|
|
|
void binNum(int flag) { m_binNum = flag; }
|
|
|
|
|
|
int binNum() const { return m_binNum; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
const string& comment() const { return m_text; } // text to insert in code
|
2008-12-12 22:04:56 +01:00
|
|
|
|
const string& page() const { return m_page; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
const string& hier() const { return m_hier; }
|
|
|
|
|
|
void hier(const string& flag) { m_hier=flag; }
|
|
|
|
|
|
void comment(const string& flag) { m_text=flag; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return (fileline() == samep->castCoverDecl()->fileline()
|
|
|
|
|
|
&& hier()==samep->castCoverDecl()->hier()
|
|
|
|
|
|
&& comment()==samep->castCoverDecl()->comment()
|
|
|
|
|
|
&& column()==samep->castCoverDecl()->column()); }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
2008-12-12 21:34:02 +01:00
|
|
|
|
void dataDeclp(AstCoverDecl* nodep) { m_dataDeclp=nodep; }
|
|
|
|
|
|
// dataDecl NULL means "use this one", but often you want "this" to indicate to get data from here
|
|
|
|
|
|
AstCoverDecl* dataDeclNullp() const { return m_dataDeclp; }
|
|
|
|
|
|
AstCoverDecl* dataDeclThisp() { return dataDeclNullp()?dataDeclNullp():this; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCoverInc : public AstNodeStmt {
|
|
|
|
|
|
// Coverage analysis point; increment coverage count
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// Children: none
|
|
|
|
|
|
private:
|
|
|
|
|
|
AstCoverDecl* m_declp; // [After V3Coverage] Pointer to declaration
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstCoverInc(FileLine* fl, AstCoverDecl* declp)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
m_declp = declp;
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CoverInc, COVERINC)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool broken() const { return !declp()->brokeExists(); }
|
|
|
|
|
|
virtual void cloneRelink() { if (m_declp->clonep()) m_declp = m_declp->clonep()->castCoverDecl(); }
|
|
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual int instrCount() const { return 1+2*instrCountLd(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(declp()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return declp()==samep->castCoverInc()->declp(); }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
// but isSplittable() true
|
|
|
|
|
|
AstCoverDecl* declp() const { return m_declp; } // Where defined
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2008-12-12 21:34:02 +01:00
|
|
|
|
struct AstCoverToggle : public AstNodeStmt {
|
|
|
|
|
|
// Toggle analysis of given signal
|
|
|
|
|
|
// Parents: MODULE
|
|
|
|
|
|
// Children: AstCoverInc, orig var, change det var
|
|
|
|
|
|
AstCoverToggle(FileLine* fl, AstCoverInc* incp, AstNode* origp, AstNode* changep)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
setOp1p(incp);
|
|
|
|
|
|
setOp2p(origp);
|
|
|
|
|
|
setOp3p(changep);
|
|
|
|
|
|
}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(CoverToggle, COVERTOGGLE)
|
|
|
|
|
|
virtual int instrCount() const { return 3+instrCountBranch()+instrCountLd(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode*) const { return true; }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return true; }
|
|
|
|
|
|
virtual bool isOutputter() const { return false; } // Though the AstCoverInc under this is an outputter
|
|
|
|
|
|
// but isSplittable() true
|
|
|
|
|
|
AstCoverInc* incp() const { return op1p()->castCoverInc(); }
|
|
|
|
|
|
void incp(AstCoverInc* nodep) { setOp1p(nodep); }
|
|
|
|
|
|
AstNode* origp() const { return op2p(); }
|
|
|
|
|
|
AstNode* changep() const { return op3p(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstGenCase : public AstNodeCase {
|
|
|
|
|
|
// Generate Case statement
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// exprp Children: MATHs
|
|
|
|
|
|
// casesp Children: CASEITEMs
|
|
|
|
|
|
AstGenCase(FileLine* fileline, AstNode* exprp, AstNode* casesp)
|
|
|
|
|
|
: AstNodeCase(fileline, exprp, casesp) {
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(GenCase, GENCASE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCase : public AstNodeCase {
|
|
|
|
|
|
// Case statement
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// exprp Children: MATHs
|
|
|
|
|
|
// casesp Children: CASEITEMs
|
|
|
|
|
|
private:
|
2008-07-22 19:07:19 +02:00
|
|
|
|
AstCaseType m_casex; // 0=case, 1=casex, 2=casez
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool m_fullPragma; // Synthesis full_case
|
|
|
|
|
|
bool m_parallelPragma; // Synthesis parallel_case
|
|
|
|
|
|
public:
|
2008-07-22 19:07:19 +02:00
|
|
|
|
AstCase(FileLine* fileline, AstCaseType casex, AstNode* exprp, AstNode* casesp)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNodeCase(fileline, exprp, casesp) {
|
|
|
|
|
|
m_casex=casex;
|
|
|
|
|
|
m_fullPragma=false; m_parallelPragma=false;
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Case, CASE)
|
2008-07-22 19:07:19 +02:00
|
|
|
|
virtual string verilogKwd() const { return casez()?"casez":casex()?"casex":"case"; }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return m_casex==samep->castCase()->m_casex; }
|
|
|
|
|
|
bool casex() const { return m_casex==AstCaseType::CASEX; }
|
|
|
|
|
|
bool casez() const { return m_casex==AstCaseType::CASEZ; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
bool fullPragma() const { return m_fullPragma; }
|
|
|
|
|
|
void fullPragma(bool flag) { m_fullPragma=flag; }
|
2008-07-22 19:07:19 +02:00
|
|
|
|
bool parallelPragma() const { return m_parallelPragma; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void parallelPragma(bool flag) { m_parallelPragma=flag; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCaseItem : public AstNode {
|
|
|
|
|
|
// Single item of a case statement
|
|
|
|
|
|
// Parents: CASE
|
|
|
|
|
|
// condsp Children: MATH (Null condition used for default block)
|
|
|
|
|
|
// bodysp Children: Statements
|
|
|
|
|
|
private:
|
|
|
|
|
|
bool m_ignoreOverlap; // Default created by assertions; ignore overlaps
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstCaseItem(FileLine* fileline, AstNode* condsp, AstNode* bodysp)
|
|
|
|
|
|
: AstNode(fileline) {
|
|
|
|
|
|
addNOp1p(condsp); addNOp2p(bodysp);
|
|
|
|
|
|
m_ignoreOverlap = false;
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CaseItem, CASEITEM)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual int instrCount() const { return widthInstrs()+instrCountBranch(); }
|
|
|
|
|
|
AstNode* condsp() const { return op1p()->castNode(); } // op1= list of possible matching expressions
|
|
|
|
|
|
AstNode* bodysp() const { return op2p()->castNode(); } // op2= what to do
|
2006-12-19 17:26:49 +01:00
|
|
|
|
void condsp(AstNode* nodep) { setOp1p(nodep); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void addBodysp(AstNode* newp) { addOp2p(newp); }
|
|
|
|
|
|
bool isDefault() const { return condsp()==NULL; }
|
|
|
|
|
|
bool ignoreOverlap() const { return m_ignoreOverlap; }
|
|
|
|
|
|
void ignoreOverlap(bool flag) { m_ignoreOverlap = flag; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstDisplay : public AstNodePli {
|
2006-12-21 22:53:51 +01:00
|
|
|
|
// Parents: stmtlist
|
|
|
|
|
|
// Children: file which must be a varref, MATH to print
|
2006-08-26 13:35:28 +02:00
|
|
|
|
private:
|
2007-03-06 22:43:38 +01:00
|
|
|
|
AstDisplayType m_displayType;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
2007-03-06 22:43:38 +01:00
|
|
|
|
AstDisplay(FileLine* fileline, AstDisplayType dispType, const string& text, AstNode* filep, AstNode* exprsp)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNodePli (fileline, text, exprsp) {
|
|
|
|
|
|
setNOp2p(filep);
|
2007-03-06 22:43:38 +01:00
|
|
|
|
m_displayType = dispType;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Display, DISPLAY)
|
2008-03-26 15:58:30 +01:00
|
|
|
|
virtual void dump(ostream& str);
|
2007-03-06 22:43:38 +01:00
|
|
|
|
virtual string verilogKwd() const { return (filep() ? (string)"$f"+(string)displayType().ascii()
|
|
|
|
|
|
: (string)"$"+(string)displayType().ascii()); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: $display has 'visual' ordering
|
|
|
|
|
|
virtual bool isOutputter() const { return true; } // SPECIAL: $display makes output
|
|
|
|
|
|
virtual bool isUnlikely() const { return true; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(text()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
2007-03-06 22:43:38 +01:00
|
|
|
|
return displayType()==samep->castDisplay()->displayType()
|
2006-08-26 13:35:28 +02:00
|
|
|
|
&& text()==samep->castDisplay()->text(); }
|
|
|
|
|
|
// op1 used by AstNodePli
|
2007-03-06 22:43:38 +01:00
|
|
|
|
AstDisplayType displayType() const { return m_displayType; }
|
|
|
|
|
|
void displayType(AstDisplayType type) { m_displayType = type; }
|
|
|
|
|
|
bool addNewline() const { return displayType().addNewline(); } // * = Add a newline for $display
|
2006-12-21 22:53:51 +01:00
|
|
|
|
AstNode* filep() const { return op2p(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void filep(AstNodeVarRef* nodep) { setNOp2p(nodep); }
|
2007-06-14 18:41:32 +02:00
|
|
|
|
AstScopeName* scopeNamep() const { return op3p()->castScopeName(); }
|
|
|
|
|
|
void scopeNamep(AstNode* nodep) { setNOp3p(nodep); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstFClose : public AstNodeStmt {
|
2006-12-21 22:53:51 +01:00
|
|
|
|
// Parents: stmtlist
|
|
|
|
|
|
// Children: file which must be a varref
|
|
|
|
|
|
AstFClose(FileLine* fileline, AstNode* filep)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNodeStmt (fileline) {
|
|
|
|
|
|
setNOp2p(filep);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(FClose, FCLOSE)
|
2009-07-22 20:38:20 +02:00
|
|
|
|
virtual string verilogKwd() const { return "$fclose"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; }
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
virtual bool isUnlikely() const { return true; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
2006-12-21 22:53:51 +01:00
|
|
|
|
AstNode* filep() const { return op2p(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
void filep(AstNodeVarRef* nodep) { setNOp2p(nodep); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstFOpen : public AstNodeStmt {
|
|
|
|
|
|
AstFOpen(FileLine* fileline, AstNode* filep, AstNode* filenamep, AstNode* modep)
|
|
|
|
|
|
: AstNodeStmt (fileline) {
|
|
|
|
|
|
setOp1p(filep);
|
|
|
|
|
|
setOp2p(filenamep);
|
|
|
|
|
|
setOp3p(modep);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(FOpen, FOPEN)
|
2009-07-22 20:38:20 +02:00
|
|
|
|
virtual string verilogKwd() const { return "$fclose"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; }
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
virtual bool isUnlikely() const { return true; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
2006-12-21 22:53:51 +01:00
|
|
|
|
AstNode* filep() const { return op1p(); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* filenamep() const { return op2p(); }
|
|
|
|
|
|
AstNode* modep() const { return op3p(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2008-06-27 14:45:05 +02:00
|
|
|
|
struct AstFFlush : public AstNodeStmt {
|
|
|
|
|
|
// Parents: stmtlist
|
|
|
|
|
|
// Children: file which must be a varref
|
|
|
|
|
|
AstFFlush(FileLine* fileline, AstNode* filep)
|
|
|
|
|
|
: AstNodeStmt (fileline) {
|
|
|
|
|
|
setNOp2p(filep);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(FFlush, FFLUSH)
|
2009-07-22 20:38:20 +02:00
|
|
|
|
virtual string verilogKwd() const { return "$fflush"; }
|
2008-06-27 14:45:05 +02:00
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; }
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
virtual bool isUnlikely() const { return true; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
AstNode* filep() const { return op2p(); }
|
|
|
|
|
|
void filep(AstNodeVarRef* nodep) { setNOp2p(nodep); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2008-07-01 20:15:10 +02:00
|
|
|
|
struct AstFScanF : public AstNodeMath {
|
|
|
|
|
|
// Parents: expr
|
|
|
|
|
|
// Children: file which must be a varref
|
|
|
|
|
|
// Children: varrefs to load
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_text;
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstFScanF(FileLine* fileline, const string& text, AstNode* filep, AstNode* exprsp)
|
|
|
|
|
|
: AstNodeMath (fileline), m_text(text) {
|
|
|
|
|
|
addNOp1p(exprsp);
|
|
|
|
|
|
setNOp2p(filep);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(FScanF, FSCANF)
|
2008-07-01 20:15:10 +02:00
|
|
|
|
virtual string name() const { return m_text; }
|
|
|
|
|
|
virtual string verilogKwd() const { return "$fscanf"; }
|
|
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; }
|
|
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: has 'visual' ordering
|
|
|
|
|
|
virtual bool isOutputter() const { return true; } // SPECIAL: makes output
|
|
|
|
|
|
virtual bool cleanOut() { return false; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(text()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return text()==samep->castFScanF()->text(); }
|
|
|
|
|
|
AstNode* exprsp() const { return op1p()->castNode(); } // op1 = Expressions to output
|
|
|
|
|
|
void exprsp(AstNode* nodep) { addOp1p(nodep); } // op1 = Expressions to output
|
|
|
|
|
|
string text() const { return m_text; } // * = Text to display
|
|
|
|
|
|
void text(const string& text) { m_text=text; }
|
|
|
|
|
|
AstNode* filep() const { return op2p(); }
|
|
|
|
|
|
void filep(AstNodeVarRef* nodep) { setNOp2p(nodep); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstSScanF : public AstNodeMath {
|
|
|
|
|
|
// Parents: expr
|
|
|
|
|
|
// Children: file which must be a varref
|
|
|
|
|
|
// Children: varrefs to load
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_text;
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstSScanF(FileLine* fileline, const string& text, AstNode* fromp, AstNode* exprsp)
|
|
|
|
|
|
: AstNodeMath (fileline), m_text(text) {
|
|
|
|
|
|
addNOp1p(exprsp);
|
|
|
|
|
|
setOp2p(fromp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(SScanF, SSCANF)
|
2008-07-01 20:15:10 +02:00
|
|
|
|
virtual string name() const { return m_text; }
|
|
|
|
|
|
virtual string verilogKwd() const { return "$sscanf"; }
|
|
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; }
|
|
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: has 'visual' ordering
|
|
|
|
|
|
virtual bool isOutputter() const { return true; } // SPECIAL: makes output
|
|
|
|
|
|
virtual bool cleanOut() { return false; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(text()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return text()==samep->castSScanF()->text(); }
|
|
|
|
|
|
AstNode* exprsp() const { return op1p()->castNode(); } // op1 = Expressions to output
|
|
|
|
|
|
void exprsp(AstNode* nodep) { addOp1p(nodep); } // op1 = Expressions to output
|
|
|
|
|
|
string text() const { return m_text; } // * = Text to display
|
|
|
|
|
|
void text(const string& text) { m_text=text; }
|
|
|
|
|
|
AstNode* fromp() const { return op2p(); }
|
|
|
|
|
|
void fromp(AstNode* nodep) { setOp2p(nodep); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-12-19 15:09:57 +01:00
|
|
|
|
struct AstReadMem : public AstNodeStmt {
|
|
|
|
|
|
private:
|
|
|
|
|
|
bool m_isHex; // readmemh, not readmemb
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstReadMem(FileLine* fileline, bool hex,
|
|
|
|
|
|
AstNode* filenamep, AstNode* memp, AstNode* lsbp, AstNode* msbp)
|
|
|
|
|
|
: AstNodeStmt (fileline), m_isHex(hex) {
|
|
|
|
|
|
setOp1p(filenamep); setOp2p(memp); setNOp3p(lsbp); setNOp4p(msbp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ReadMem, READMEM)
|
2009-07-22 20:38:20 +02:00
|
|
|
|
virtual string verilogKwd() const { return (isHex()?"$readmemh":"$readmemb"); }
|
2006-12-19 15:09:57 +01:00
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; }
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
virtual bool isUnlikely() const { return true; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return isHex()==samep->castReadMem()->isHex(); }
|
|
|
|
|
|
bool isHex() const { return m_isHex; }
|
|
|
|
|
|
AstNode* filenamep() const { return op1p()->castNode(); }
|
|
|
|
|
|
AstNode* memp() const { return op2p()->castNode(); }
|
|
|
|
|
|
AstNode* lsbp() const { return op3p()->castNode(); }
|
|
|
|
|
|
AstNode* msbp() const { return op4p()->castNode(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstGenFor : public AstNodeFor {
|
|
|
|
|
|
AstGenFor(FileLine* fileline, AstNode* initsp, AstNode* condp,
|
2006-09-05 22:06:23 +02:00
|
|
|
|
AstNode* incsp, AstNode* bodysp)
|
|
|
|
|
|
: AstNodeFor(fileline, initsp, condp, incsp, bodysp) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(GenFor, GENFOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstFor : public AstNodeFor {
|
|
|
|
|
|
AstFor(FileLine* fileline, AstNode* initsp, AstNode* condp,
|
2006-09-05 22:06:23 +02:00
|
|
|
|
AstNode* incsp, AstNode* bodysp)
|
|
|
|
|
|
: AstNodeFor(fileline, initsp, condp, incsp, bodysp) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(For, FOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
2009-02-26 04:06:59 +01:00
|
|
|
|
struct AstRepeat : public AstNodeStmt {
|
|
|
|
|
|
AstRepeat(FileLine* fileline, AstNode* countp, AstNode* bodysp)
|
|
|
|
|
|
: AstNodeStmt(fileline) {
|
|
|
|
|
|
setOp2p(countp); addNOp3p(bodysp);
|
|
|
|
|
|
}
|
|
|
|
|
|
ASTNODE_NODE_FUNCS(Repeat, REPEAT)
|
|
|
|
|
|
AstNode* countp() const { return op2p()->castNode(); } // op2= condition to continue
|
|
|
|
|
|
AstNode* bodysp() const { return op3p()->castNode(); } // op3= body of loop
|
2009-07-21 20:31:16 +02:00
|
|
|
|
virtual bool isGateOptimizable() const { return false; } // Not releavant - converted to FOR
|
2009-02-26 04:06:59 +01:00
|
|
|
|
virtual int instrCount() const { return instrCountBranch(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstWhile : public AstNodeStmt {
|
|
|
|
|
|
AstWhile(FileLine* fileline, AstNode* condp, AstNode* bodysp)
|
|
|
|
|
|
: AstNodeStmt(fileline) {
|
|
|
|
|
|
setOp2p(condp); addNOp3p(bodysp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(While, WHILE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* precondsp() const { return op1p()->castNode(); } // op1= prepare statements for condition (exec every loop)
|
|
|
|
|
|
AstNode* condp() const { return op2p()->castNode(); } // op2= condition to continue
|
|
|
|
|
|
AstNode* bodysp() const { return op3p()->castNode(); } // op3= body of loop
|
|
|
|
|
|
void addPrecondsp(AstNode* newp) { addOp1p(newp); }
|
|
|
|
|
|
void addBodysp(AstNode* newp) { addOp3p(newp); }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual int instrCount() const { return instrCountBranch(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
2009-10-09 02:42:45 +02:00
|
|
|
|
virtual void addBeforeStmt(AstNode* newp, AstNode* belowp); // Stop statement searchback here
|
|
|
|
|
|
virtual void addNextStmt(AstNode* newp, AstNode* belowp); // Stop statement searchback here
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstGenIf : public AstNodeIf {
|
|
|
|
|
|
AstGenIf(FileLine* fileline, AstNode* condp, AstNode* ifsp, AstNode* elsesp)
|
|
|
|
|
|
: AstNodeIf(fileline, condp, ifsp, elsesp) {
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(GenIf, GENIF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstIf : public AstNodeIf {
|
|
|
|
|
|
AstIf(FileLine* fileline, AstNode* condp, AstNode* ifsp, AstNode* elsesp)
|
|
|
|
|
|
: AstNodeIf(fileline, condp, ifsp, elsesp) {
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(If, IF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstUntilStable : public AstNodeStmt {
|
|
|
|
|
|
// Quasi-while loop until given signals are stable
|
|
|
|
|
|
// Parents: CFUNC (generally)
|
|
|
|
|
|
// Children: VARREF, statements
|
|
|
|
|
|
AstUntilStable(FileLine* fileline, AstVarRef* stablesp, AstNode* bodysp)
|
|
|
|
|
|
: AstNodeStmt(fileline) {
|
|
|
|
|
|
addNOp2p(stablesp); addNOp3p(bodysp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(UntilStable, UNTILSTABLE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstVarRef* stablesp() const { return op2p()->castVarRef(); } // op2= list of variables that must become stable
|
|
|
|
|
|
AstNode* bodysp() const { return op3p()->castNode(); } // op3= body of loop
|
|
|
|
|
|
void addStablesp(AstVarRef* newp) { addOp2p(newp); }
|
|
|
|
|
|
void addBodysp(AstNode* newp) { addOp3p(newp); }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; } // Not relevant
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; } // Not relevant
|
|
|
|
|
|
virtual int instrCount() const { return instrCountBranch(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstChangeXor : public AstNodeBiComAsv {
|
|
|
|
|
|
// A comparison to determine change detection, common & must be fast.
|
|
|
|
|
|
// Returns 32-bit or 64-bit value where 0 indicates no change.
|
|
|
|
|
|
// Parents: OR or LOGOR
|
|
|
|
|
|
// Children: VARREF
|
|
|
|
|
|
AstChangeXor(FileLine* fl, AstNode* lhsp, AstNode* rhsp)
|
|
|
|
|
|
: AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(32,32); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ChangeXor, CHANGEXOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opChangeXor(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l ^ %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_CHANGEXOR_%li(%lw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "^"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;} // Lclean && Rclean
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstChangeDet : public AstNodeStmt {
|
|
|
|
|
|
// A comparison to determine change detection, common & must be fast.
|
|
|
|
|
|
private:
|
|
|
|
|
|
bool m_clockReq; // Type of detection
|
|
|
|
|
|
public:
|
|
|
|
|
|
// Null lhs+rhs used to indicate change needed with no spec vars
|
|
|
|
|
|
AstChangeDet(FileLine* fl, AstNode* lhsp, AstNode* rhsp, bool clockReq)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
setNOp1p(lhsp); setNOp2p(rhsp); m_clockReq=clockReq;
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ChangeDet, CHANGEDET)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* lhsp() const { return op1p(); }
|
|
|
|
|
|
AstNode* rhsp() const { return op2p(); }
|
|
|
|
|
|
bool isClockReq() const { return m_clockReq; }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstInitial : public AstNode {
|
|
|
|
|
|
AstInitial(FileLine* fl, AstNode* bodysp)
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
addNOp1p(bodysp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Initial, INITIAL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* bodysp() const { return op1p()->castNode(); } // op1 = Expressions to evaluate
|
|
|
|
|
|
// Special accessors
|
|
|
|
|
|
bool isJustOneBodyStmt() const { return bodysp() && !bodysp()->nextp(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstFinal : public AstNode {
|
|
|
|
|
|
AstFinal(FileLine* fl, AstNode* bodysp)
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
addNOp1p(bodysp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Final, FINAL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* bodysp() const { return op1p()->castNode(); } // op1 = Expressions to evaluate
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstInitArray : public AstNode {
|
|
|
|
|
|
// Set a var to a large list of values
|
|
|
|
|
|
// The values must be in sorted order, and not exceed the size of the var's array.
|
|
|
|
|
|
// Parents: ASTVAR::init()
|
|
|
|
|
|
// Children: CONSTs...
|
|
|
|
|
|
AstInitArray(FileLine* fl, AstNode* initsp)
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
addNOp1p(initsp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(InitArray, INITARRAY)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* initsp() const { return op1p()->castNode(); } // op1 = Initial value expressions
|
|
|
|
|
|
void addInitsp(AstNode* newp) { addOp1p(newp); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstPragma : public AstNode {
|
|
|
|
|
|
private:
|
|
|
|
|
|
AstPragmaType m_pragType; // Type of pragma
|
|
|
|
|
|
public:
|
|
|
|
|
|
// Pragmas don't result in any output code, they're just flags that affect
|
|
|
|
|
|
// other processing in verilator.
|
|
|
|
|
|
AstPragma(FileLine* fl, AstPragmaType pragType)
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
m_pragType = pragType;
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Pragma, PRAGMA)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstPragmaType pragType() const { return m_pragType; } // *=type of the pragma
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(pragType()); }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return pragType()==samep->castPragma()->pragType(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstStop : public AstNodeStmt {
|
|
|
|
|
|
AstStop(FileLine* fl)
|
|
|
|
|
|
: AstNodeStmt(fl) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Stop, STOP)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: $display has 'visual' ordering
|
|
|
|
|
|
virtual bool isOutputter() const { return true; } // SPECIAL: $display makes output
|
|
|
|
|
|
virtual bool isUnlikely() const { return true; }
|
|
|
|
|
|
virtual int instrCount() const { return 0; } // Rarely executes
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(fileline()->lineno()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return fileline() == samep->fileline(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstFinish : public AstNodeStmt {
|
|
|
|
|
|
AstFinish(FileLine* fl)
|
|
|
|
|
|
: AstNodeStmt(fl) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Finish, FINISH)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: $display has 'visual' ordering
|
|
|
|
|
|
virtual bool isOutputter() const { return true; } // SPECIAL: $display makes output
|
|
|
|
|
|
virtual bool isUnlikely() const { return true; }
|
|
|
|
|
|
virtual int instrCount() const { return 0; } // Rarely executes
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(fileline()->lineno()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return fileline() == samep->fileline(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstTraceDecl : public AstNodeStmt {
|
|
|
|
|
|
// Trace point declaration
|
|
|
|
|
|
// Separate from AstTraceInc; as a declaration can't be deleted
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// Children: none
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_showname; // Name of variable
|
|
|
|
|
|
uint32_t m_code; // Trace identifier code; converted to ASCII by trace routines
|
2008-10-06 15:59:22 +02:00
|
|
|
|
int m_lsb; // Property of var the trace details
|
|
|
|
|
|
int m_msb; // Property of var the trace details
|
2006-08-26 13:35:28 +02:00
|
|
|
|
uint32_t m_arrayLsb; // Property of var the trace details
|
|
|
|
|
|
uint32_t m_arrayMsb; // Property of var the trace details
|
|
|
|
|
|
uint32_t m_codeInc; // Code increment
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstTraceDecl(FileLine* fl, const string& showname, AstVar* varp)
|
|
|
|
|
|
: AstNodeStmt(fl)
|
|
|
|
|
|
, m_showname(showname) {
|
|
|
|
|
|
widthSignedFrom(varp);
|
|
|
|
|
|
m_code = 0;
|
|
|
|
|
|
m_codeInc = varp->arrayElements() * varp->widthWords();
|
2009-10-25 21:53:55 +01:00
|
|
|
|
m_lsb = varp->lsbEndianed(); m_msb = varp->msbEndianed();
|
2009-11-07 05:16:06 +01:00
|
|
|
|
if (AstArrayDType* adtypep = varp->dtypeSkipRefp()->castArrayDType()) {
|
2009-11-05 04:31:53 +01:00
|
|
|
|
m_arrayLsb = adtypep->arrayp()->lsbConst();
|
|
|
|
|
|
m_arrayMsb = adtypep->arrayp()->msbConst();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
m_arrayLsb = 0;
|
|
|
|
|
|
m_arrayMsb = 0;
|
|
|
|
|
|
}
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
virtual int instrCount() const { return 100; } // Large...
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(TraceDecl, TRACEDECL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_showname; }
|
2006-10-05 02:45:39 +02:00
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
string showname() const { return m_showname; } // * = Var name
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return false; }
|
|
|
|
|
|
// Details on what we're tracing
|
|
|
|
|
|
uint32_t code() const { return m_code; }
|
|
|
|
|
|
void code(uint32_t code) { m_code=code; }
|
|
|
|
|
|
uint32_t codeInc() const { return m_codeInc; }
|
2009-10-25 21:53:55 +01:00
|
|
|
|
int msbEndianed() const { return m_msb; } // Note msb maybe < lsb if little endian
|
|
|
|
|
|
int lsbEndianed() const { return m_lsb; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
uint32_t arrayMsb() const { return m_arrayMsb; }
|
|
|
|
|
|
uint32_t arrayLsb() const { return m_arrayLsb; }
|
|
|
|
|
|
uint32_t arrayWidth() const { if (!arrayMsb()) return 0; return arrayMsb()-arrayLsb()+1; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstTraceInc : public AstNodeStmt {
|
|
|
|
|
|
// Trace point; incremental change detect and dump
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// Children: incremental value
|
|
|
|
|
|
private:
|
|
|
|
|
|
AstTraceDecl* m_declp; // [After V3Trace] Pointer to declaration
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstTraceInc(FileLine* fl, AstTraceDecl* declp, AstNode* valuep)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
widthSignedFrom(declp);
|
|
|
|
|
|
m_declp = declp;
|
|
|
|
|
|
addNOp2p(valuep);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(TraceInc, TRACEINC)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool broken() const { return !declp()->brokeExists(); }
|
|
|
|
|
|
virtual void cloneRelink() { if (m_declp->clonep()) m_declp = m_declp->clonep()->castTraceDecl(); }
|
|
|
|
|
|
virtual void dump(ostream& str);
|
|
|
|
|
|
virtual int instrCount() const { return 10+2*instrCountLd(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(declp()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
|
|
|
|
|
return declp()==samep->castTraceInc()->declp(); }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
// but isSplittable() true
|
|
|
|
|
|
// op1 = Statements before the value
|
|
|
|
|
|
AstNode* precondsp() const { return op1p()->castNode(); } // op1= prepare statements for condition (exec every loop)
|
|
|
|
|
|
void addPrecondsp(AstNode* newp) { addOp1p(newp); }
|
|
|
|
|
|
// op2 = Value to trace
|
|
|
|
|
|
AstTraceDecl* declp() const { return m_declp; } // Where defined
|
|
|
|
|
|
AstNode* valuep() const { return op2p()->castNode(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstActive : public AstNode {
|
|
|
|
|
|
// Block of code with sensitivity activation
|
|
|
|
|
|
// Parents: MODULE | CFUNC
|
|
|
|
|
|
// Children: SENTREE, statements
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name;
|
|
|
|
|
|
AstSenTree* m_sensesp;
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstActive(FileLine* fileline, const string& name, AstSenTree* sensesp)
|
|
|
|
|
|
: AstNode(fileline) {
|
|
|
|
|
|
m_name = name; // Copy it
|
|
|
|
|
|
UASSERT(sensesp, "Sensesp required arg");
|
|
|
|
|
|
m_sensesp = sensesp;
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Active, ACTIVE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str=cout);
|
|
|
|
|
|
virtual string name() const { return m_name; }
|
|
|
|
|
|
virtual bool broken() const { return (m_sensesp && !m_sensesp->brokeExists()); }
|
|
|
|
|
|
virtual void cloneRelink() {
|
|
|
|
|
|
if (m_sensesp->clonep()) {
|
|
|
|
|
|
m_sensesp = m_sensesp->clonep()->castSenTree();
|
|
|
|
|
|
UASSERT(m_sensesp, "Bad clone cross link: "<<this);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// Statements are broken into pieces, as some must come before others.
|
|
|
|
|
|
void sensesp(AstSenTree* nodep) { m_sensesp=nodep; }
|
|
|
|
|
|
AstSenTree* sensesp() const { return m_sensesp; }
|
|
|
|
|
|
// op1 = Sensitivity tree, if a clocked block in early stages
|
|
|
|
|
|
void sensesStorep(AstSenTree* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
AstSenTree* sensesStorep() const { return op1p()->castSenTree(); }
|
|
|
|
|
|
// op2 = Combo logic
|
|
|
|
|
|
AstNode* stmtsp() const { return op2p()->castNode(); }
|
|
|
|
|
|
void addStmtsp(AstNode* nodep) { addOp2p(nodep); }
|
|
|
|
|
|
// METHODS
|
|
|
|
|
|
bool hasInitial() const { return m_sensesp->hasInitial(); }
|
|
|
|
|
|
bool hasSettle() const { return m_sensesp->hasSettle(); }
|
|
|
|
|
|
bool hasClocked() const { return m_sensesp->hasClocked(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-09-27 20:00:53 +02:00
|
|
|
|
struct AstAttrOf : public AstNode {
|
|
|
|
|
|
private:
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// Return a value of a attribute, for example a LSB or array LSB of a signal
|
|
|
|
|
|
AstAttrType m_attrType; // What sort of extraction
|
|
|
|
|
|
public:
|
2009-10-25 21:53:55 +01:00
|
|
|
|
AstAttrOf(FileLine* fl, AstAttrType attrtype, AstNode* fromp=NULL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNode(fl) {
|
2009-10-25 21:53:55 +01:00
|
|
|
|
setNOp1p(fromp);
|
|
|
|
|
|
m_attrType = attrtype; }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(AttrOf, ATTROF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* fromp() const { return op1p(); }
|
|
|
|
|
|
AstAttrType attrType() const { return m_attrType; }
|
2009-05-08 00:28:05 +02:00
|
|
|
|
virtual void dump(ostream& str=cout);
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
2007-06-14 18:41:32 +02:00
|
|
|
|
struct AstScopeName : public AstNode {
|
|
|
|
|
|
// For display %m
|
|
|
|
|
|
// Parents: DISPLAY
|
|
|
|
|
|
// Children: TEXT
|
|
|
|
|
|
AstScopeName(FileLine* fl)
|
|
|
|
|
|
: AstNode(fl) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ScopeName, SCOPENAME)
|
2007-06-14 18:41:32 +02:00
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
AstText* scopeAttrp() const { return op1p()->castText(); }
|
|
|
|
|
|
void scopeAttrp(AstNode* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//======================================================================
|
|
|
|
|
|
// non-ary ops
|
|
|
|
|
|
|
|
|
|
|
|
struct AstRand : public AstNodeTermop {
|
|
|
|
|
|
// Return a random number, based upon width()
|
2008-06-27 17:36:25 +02:00
|
|
|
|
private:
|
|
|
|
|
|
bool m_reset; // Random reset, versus always random
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstRand(FileLine* fl, int wwidth, bool reset) : AstNodeTermop(fl) {
|
|
|
|
|
|
width(wwidth,wwidth); m_reset=reset; }
|
|
|
|
|
|
AstRand(FileLine* fl) : AstNodeTermop(fl), m_reset(false) { }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Rand, RAND)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitVerilog() { return "$random"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() {
|
|
|
|
|
|
return (m_reset ?
|
|
|
|
|
|
"VL_RAND_RESET_%nq(%nw, %P)"
|
|
|
|
|
|
:"VL_RANDOM_%nq(%nw, %P)"); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return true; }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual int instrCount() const { return instrCountPli(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstTime : public AstNodeTermop {
|
|
|
|
|
|
AstTime(FileLine* fl) : AstNodeTermop(fl) {
|
|
|
|
|
|
width(64,64); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Time, TIME)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitVerilog() { return "$time"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_TIME_%nq()"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return true; }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual int instrCount() const { return instrCountTime(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2008-11-22 21:28:29 +01:00
|
|
|
|
struct AstUCFunc : public AstNodeMath {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
// User's $c function
|
2008-11-22 21:28:29 +01:00
|
|
|
|
// Perhaps this should be a AstNodeListop; but there's only one list math right now
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstUCFunc(FileLine* fl, AstNode* exprsp)
|
2008-11-22 21:28:29 +01:00
|
|
|
|
: AstNodeMath(fl) {
|
2006-08-26 13:35:28 +02:00
|
|
|
|
addNOp1p(exprsp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(UCFunc, UCFUNC)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() { return false; }
|
|
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; } // Implemented specially
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* bodysp() const { return op1p()->castNode(); } // op1= expressions to print
|
|
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: User may order w/other sigs
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSubstOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual int instrCount() const { return instrCountPli(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
|
// Unary ops
|
|
|
|
|
|
|
|
|
|
|
|
struct AstUnaryMin : public AstNodeUniop {
|
|
|
|
|
|
AstUnaryMin(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(UnaryMin, UNARYMIN)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opUnaryMin(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(- %l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_UNARYMIN_%lq(%lW, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstRedAnd : public AstNodeUniop {
|
|
|
|
|
|
AstRedAnd(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(RedAnd, REDAND)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opRedAnd(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(& %l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_REDAND_%nq%lq(%nw,%lw, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return true;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstRedOr : public AstNodeUniop {
|
|
|
|
|
|
AstRedOr(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(RedOr, REDOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opRedOr(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(| %l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_REDOR_%lq(%lW, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return true;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstRedXor : public AstNodeUniop {
|
|
|
|
|
|
AstRedXor(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(RedXor, REDXOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opRedXor(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(^ %l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_REDXOR_%lq(%lW, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return (lhsp()->width()!=1 && lhsp()->width()!=2 && lhsp()->width()!=4
|
|
|
|
|
|
&& lhsp()->width()!=8 && lhsp()->width()!=16);}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return 1+V3Number::log2b(width()); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstRedXnor : public AstNodeUniop {
|
2006-09-27 20:00:53 +02:00
|
|
|
|
// AstRedXnors are replaced with AstRedXors in V3Const.
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstRedXnor(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(RedXnor, REDXNOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opRedXnor(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(~^ %l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { v3fatalSrc("REDXNOR should have became REDXOR"); return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return 1+V3Number::log2b(width()); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstLogNot : public AstNodeUniop {
|
|
|
|
|
|
AstLogNot(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(LogNot, LOGNOT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opLogNot(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(! %l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LOGNOT_%nq%lq(%nw,%lw, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "!"; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstNot : public AstNodeUniop {
|
|
|
|
|
|
AstNot(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Not, NOT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opNot(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(~ %l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_NOT_%lq(%lW, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "~"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstExtend : public AstNodeUniop {
|
|
|
|
|
|
// Expand a value into a wider entity by 0 extension. Width is implied from nodep->width()
|
|
|
|
|
|
AstExtend(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Extend, EXTEND)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opAssign(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%l"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_EXTEND_%nq%lq(%nw,%lw, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return true;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} // Because the EXTEND operator self-casts
|
|
|
|
|
|
virtual int instrCount() const { return 0; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstExtendS : public AstNodeUniop {
|
|
|
|
|
|
// Expand a value into a wider entity by sign extension. Width is implied from nodep->width()
|
|
|
|
|
|
AstExtendS(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ExtendS, EXTENDS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opExtendS(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%l"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_EXTENDS_%nq%lq(%nw,%lw, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} // Because the EXTEND operator self-casts
|
|
|
|
|
|
virtual int instrCount() const { return 0; }
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstSigned : public AstNodeUniop {
|
|
|
|
|
|
// $signed(lhs)
|
|
|
|
|
|
AstSigned(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
isSigned(true);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Signed, SIGNED)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opAssign(lhs); out.isSigned(false); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$signed(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return false;} // Eliminated before matters
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} // Eliminated before matters
|
|
|
|
|
|
virtual int instrCount() const { return 0; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstUnsigned : public AstNodeUniop {
|
|
|
|
|
|
// $unsigned(lhs)
|
|
|
|
|
|
AstUnsigned(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
isSigned(false);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Unsigned, UNSIGNED)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opAssign(lhs); out.isSigned(false); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$unsigned(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return false;} // Eliminated before matters
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} // Eliminated before matters
|
|
|
|
|
|
virtual int instrCount() const { return 0; }
|
|
|
|
|
|
};
|
2008-04-24 15:52:51 +02:00
|
|
|
|
struct AstCLog2 : public AstNodeUniop {
|
|
|
|
|
|
AstCLog2(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CLog2, CLOG2)
|
2008-04-24 15:52:51 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opCLog2(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$clog2(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_CLOG2_%lq(%lW, %P, %li)"; }
|
2008-04-24 15:52:51 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*16; }
|
|
|
|
|
|
};
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstCountOnes : public AstNodeUniop {
|
|
|
|
|
|
// Number of bits set in vector
|
|
|
|
|
|
AstCountOnes(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CountOnes, COUNTONES)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opCountOnes(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$countones(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_COUNTONES_%lq(%lW, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*16; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstIsUnknown : public AstNodeUniop {
|
|
|
|
|
|
// True if any unknown bits
|
|
|
|
|
|
AstIsUnknown(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
width(1,1);}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(IsUnknown, ISUNKNOWN)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opIsUnknown(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$isunknown(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstOneHot : public AstNodeUniop {
|
|
|
|
|
|
// True if only single bit set in vector
|
|
|
|
|
|
AstOneHot(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
width(1,1);}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(OneHot, ONEHOT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opOneHot(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$onehot(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_ONEHOT_%lq(%lW, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return true;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*4; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstOneHot0 : public AstNodeUniop {
|
|
|
|
|
|
// True if only single bit, or no bits set in vector
|
|
|
|
|
|
AstOneHot0(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
width(1,1);}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(OneHot0, ONEHOT0)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opOneHot0(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$onehot0(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_ONEHOT0_%lq(%lW, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return true;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*3; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCast : public AstNodeUniop {
|
|
|
|
|
|
// Cast to appropriate data type
|
|
|
|
|
|
private:
|
|
|
|
|
|
int m_size;
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstCast(FileLine* fl, AstNode* lhsp, int setwidth) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
m_size=setwidth;
|
|
|
|
|
|
if (setwidth) { width(setwidth,setwidth); }
|
|
|
|
|
|
}
|
|
|
|
|
|
AstCast(FileLine* fl, AstNode* lhsp, AstNode* widthFromp) : AstNodeUniop(fl, lhsp) {
|
|
|
|
|
|
if (widthFromp) { widthSignedFrom(widthFromp); }
|
|
|
|
|
|
m_size=width();
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Cast, CAST)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { out.opAssign(lhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$_CAST(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_CAST_%nq%lq(%nw,%lw, %P, %li)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return true;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} // Special cased in V3Cast
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(size()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return size()==samep->castCast()->size(); }
|
|
|
|
|
|
virtual void dump(ostream& str=cout);
|
|
|
|
|
|
//
|
|
|
|
|
|
int size() const { return m_size; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2008-06-26 14:52:02 +02:00
|
|
|
|
struct AstFEof : public AstNodeUniop {
|
|
|
|
|
|
AstFEof(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(FEof, FEOF)
|
2008-06-26 14:52:02 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { V3ERROR_NA; }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$feof(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "(%li ? feof(VL_CVT_Q_FP(%li)) : true)"; }
|
2008-06-26 14:52:02 +02:00
|
|
|
|
virtual bool cleanOut() {return true;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*16; }
|
|
|
|
|
|
AstNode* filep() const { return lhsp(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2008-06-28 02:04:20 +02:00
|
|
|
|
struct AstFGetC : public AstNodeUniop {
|
|
|
|
|
|
AstFGetC(FileLine* fl, AstNode* lhsp) : AstNodeUniop(fl, lhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(FGetC, FGETC)
|
2008-06-28 02:04:20 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs) { V3ERROR_NA; }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$fgetc(%l)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
// Non-existant filehandle returns EOF
|
|
|
|
|
|
virtual string emitC() { return "(%li ? fgetc(VL_CVT_Q_FP(%li)) : -1)"; }
|
2008-06-28 02:04:20 +02:00
|
|
|
|
virtual bool cleanOut() {return false;} virtual bool cleanLhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*64; }
|
|
|
|
|
|
AstNode* filep() const { return lhsp(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//======================================================================
|
|
|
|
|
|
// Binary ops
|
|
|
|
|
|
|
|
|
|
|
|
struct AstLogOr : public AstNodeBiComAsv {
|
|
|
|
|
|
AstLogOr(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(LogOr, LOGOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opLogOr(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k|| %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LOGOR_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "||"; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()+instrCountBranch(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstLogAnd : public AstNodeBiComAsv {
|
|
|
|
|
|
AstLogAnd(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(LogAnd, LOGAND)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opLogAnd(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k&& %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LOGAND_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "&&"; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()+instrCountBranch(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstLogIf : public AstNodeBiop {
|
|
|
|
|
|
AstLogIf(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(LogIf, LOGIF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { V3ERROR_NA; }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k-> %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LOGIF_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "->"; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()+instrCountBranch(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstLogIff : public AstNodeBiCom {
|
|
|
|
|
|
AstLogIff(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiCom(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(LogIff, LOGIFF)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { V3ERROR_NA; }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k<-> %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LOGIFF_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "<->"; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()+instrCountBranch(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstOr : public AstNodeBiComAsv {
|
|
|
|
|
|
AstOr(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Or, OR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opOr(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k| %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_OR_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "|"; }
|
|
|
|
|
|
virtual bool cleanOut() {V3ERROR_NA; return false;} // Lclean && Rclean
|
|
|
|
|
|
virtual bool cleanLhs() {return false;} virtual bool cleanRhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstAnd : public AstNodeBiComAsv {
|
|
|
|
|
|
AstAnd(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(And, AND)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opAnd(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k& %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_AND_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "&"; }
|
|
|
|
|
|
virtual bool cleanOut() {V3ERROR_NA; return false;} // Lclean || Rclean
|
|
|
|
|
|
virtual bool cleanLhs() {return false;} virtual bool cleanRhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstXor : public AstNodeBiComAsv {
|
|
|
|
|
|
AstXor(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Xor, XOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opXor(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k^ %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_XOR_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "^"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;} // Lclean && Rclean
|
|
|
|
|
|
virtual bool cleanLhs() {return false;} virtual bool cleanRhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstXnor : public AstNodeBiComAsv {
|
|
|
|
|
|
AstXnor(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Xnor, XNOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opXnor(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k^ ~ %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_XNOR_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "^ ~"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return false;} virtual bool cleanRhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstEq : public AstNodeBiCom {
|
|
|
|
|
|
AstEq(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiCom(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Eq, EQ)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opEq(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k== %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_EQ_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "=="; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstNeq : public AstNodeBiCom {
|
|
|
|
|
|
AstNeq(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiCom(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Neq, NEQ)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opNeq(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k!= %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_NEQ_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "!="; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstLt : public AstNodeBiop {
|
|
|
|
|
|
AstLt(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Lt, LT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opLt(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k< %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LT_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "<"; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstLtS : public AstNodeBiop {
|
|
|
|
|
|
AstLtS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(LtS, LTS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opLtS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k< %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LTS_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ""; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstGt : public AstNodeBiop {
|
|
|
|
|
|
AstGt(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Gt, GT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opGt(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k> %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_GT_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ">"; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstGtS : public AstNodeBiop {
|
|
|
|
|
|
AstGtS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(GtS, GTS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opGtS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k> %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_GTS_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ""; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstGte : public AstNodeBiop {
|
|
|
|
|
|
AstGte(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Gte, GTE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opGte(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k>= %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_GTE_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ">="; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstGteS : public AstNodeBiop {
|
|
|
|
|
|
AstGteS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(GteS, GTES)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opGteS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k>= %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_GTES_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ""; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstLte : public AstNodeBiop {
|
|
|
|
|
|
AstLte(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Lte, LTE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opLte(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k<= %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LTE_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "<="; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstLteS : public AstNodeBiop {
|
|
|
|
|
|
AstLteS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(LteS, LTES)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opLteS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k<= %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_LTES_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ""; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstShiftL : public AstNodeBiop {
|
|
|
|
|
|
AstShiftL(FileLine* fl, AstNode* lhsp, AstNode* rhsp, int setwidth=0)
|
|
|
|
|
|
: AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (setwidth) { width(setwidth,setwidth); }
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ShiftL, SHIFTL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opShiftL(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k<< %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_SHIFTL_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "<<"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return false;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstShiftR : public AstNodeBiop {
|
|
|
|
|
|
AstShiftR(FileLine* fl, AstNode* lhsp, AstNode* rhsp, int setwidth=0)
|
|
|
|
|
|
: AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (setwidth) { width(setwidth,setwidth); }
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ShiftR, SHIFTR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opShiftR(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k>> %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_SHIFTR_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ">>"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;} // LHS size might be > output size, so don't want to force size
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstShiftRS : public AstNodeBiop {
|
|
|
|
|
|
AstShiftRS(FileLine* fl, AstNode* lhsp, AstNode* rhsp, int setwidth=0)
|
|
|
|
|
|
: AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (setwidth) { width(setwidth,setwidth); }
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ShiftRS, SHIFTRS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opShiftRS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k>>> %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_SHIFTRS_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ""; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstAdd : public AstNodeBiComAsv {
|
|
|
|
|
|
AstAdd(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Add, ADD)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opAdd(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k+ %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_ADD_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "+"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return false;} virtual bool cleanRhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstSub : public AstNodeBiop {
|
|
|
|
|
|
AstSub(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Sub, SUB)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opSub(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k- %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_SUB_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "-"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return false;} virtual bool cleanRhs() {return false;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstMul : public AstNodeBiComAsv {
|
|
|
|
|
|
AstMul(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Mul, MUL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opMul(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k* %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_MUL_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "*"; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*instrCountMul(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstMulS : public AstNodeBiComAsv {
|
|
|
|
|
|
AstMulS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiComAsv(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(MulS, MULS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opMulS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k* %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_MULS_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return ""; }
|
|
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*instrCountMul(); }
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstDiv : public AstNodeBiop {
|
|
|
|
|
|
AstDiv(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Div, DIV)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opDiv(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k/ %r)"; }
|
2009-10-27 01:12:09 +01:00
|
|
|
|
virtual string emitC() { return "VL_DIV_%nq%lq%rq(%lw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*instrCountDiv(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstDivS : public AstNodeBiop {
|
|
|
|
|
|
AstDivS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(DivS, DIVS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opDivS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k/ %r)"; }
|
2009-10-27 01:12:09 +01:00
|
|
|
|
virtual string emitC() { return "VL_DIVS_%nq%lq%rq(%lw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*instrCountDiv(); }
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstModDiv : public AstNodeBiop {
|
|
|
|
|
|
AstModDiv(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ModDiv, MODDIV)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opModDiv(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k%% %r)"; }
|
2009-10-27 01:12:09 +01:00
|
|
|
|
virtual string emitC() { return "VL_MODDIV_%nq%lq%rq(%lw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*instrCountDiv(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstModDivS : public AstNodeBiop {
|
|
|
|
|
|
AstModDivS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ModDivS, MODDIVS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opModDivS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k%% %r)"; }
|
2009-10-27 01:12:09 +01:00
|
|
|
|
virtual string emitC() { return "VL_MODDIVS_%nq%lq%rq(%lw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return true;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*instrCountDiv(); }
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstPow : public AstNodeBiop {
|
|
|
|
|
|
AstPow(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Pow, POW)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opPow(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k** %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_POW_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*instrCountMul(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstPowS : public AstNodeBiop {
|
|
|
|
|
|
AstPowS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp) widthSignedFrom(lhsp); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(PowS, POWS)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opPowS(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k** %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_POWS_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return true;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*instrCountMul(); }
|
|
|
|
|
|
virtual bool signedFlavor() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstEqCase : public AstNodeBiCom {
|
|
|
|
|
|
AstEqCase(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiCom(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(EqCase, EQCASE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opCaseEq(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k=== %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_EQ_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "=="; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstNeqCase : public AstNodeBiCom {
|
|
|
|
|
|
AstNeqCase(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiCom(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(NeqCase, NEQCASE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opCaseNeq(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k!== %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_NEQ_%lq(%lW, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "!="; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
2007-07-18 17:01:39 +02:00
|
|
|
|
struct AstEqWild : public AstNodeBiop {
|
|
|
|
|
|
// Note wildcard operator rhs differs from lhs
|
|
|
|
|
|
AstEqWild(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(EqWild, EQWILD)
|
2007-07-18 17:01:39 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opWildEq(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k==? %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_EQ_%lq(%lW, %P, %li, %ri)"; }
|
2007-07-18 17:01:39 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "=="; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstNeqWild : public AstNodeBiop {
|
|
|
|
|
|
AstNeqWild(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
width(1,1); }
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(NeqWild, NEQWILD)
|
2007-07-18 17:01:39 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opWildNeq(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k(%l %k!=? %r)"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_NEQ_%lq(%lW, %P, %li, %ri)"; }
|
2007-07-18 17:01:39 +02:00
|
|
|
|
virtual string emitSimpleOperator() { return "!="; }
|
|
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
};
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstConcat : public AstNodeBiop {
|
|
|
|
|
|
// If you're looking for {#{}}, see AstReplicate
|
|
|
|
|
|
AstConcat(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {
|
|
|
|
|
|
if (lhsp->width() && rhsp->width()) width(lhsp->width()+rhsp->width(),lhsp->width()+rhsp->width());
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Concat, CONCAT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string emitVerilog() { return "%k{%l, %k%r}"; }
|
|
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opConcat(lhs,rhs); }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_CONCAT_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return true;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*2; }
|
|
|
|
|
|
};
|
|
|
|
|
|
struct AstReplicate : public AstNodeBiop {
|
|
|
|
|
|
AstReplicate(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {}
|
|
|
|
|
|
AstReplicate(FileLine* fl, AstNode* lhsp, uint32_t repCount)
|
|
|
|
|
|
: AstNodeBiop(fl, lhsp, new AstConst(fl, repCount)) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Replicate, REPLICATE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { out.opRepl(lhs,rhs); }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k{%l{%k%r}}"; }
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { return "VL_REPLICATE_%nq%lq%rq(%nw,%lw,%rw, %P, %li, %ri)"; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*2; }
|
|
|
|
|
|
};
|
2008-06-28 02:04:20 +02:00
|
|
|
|
struct AstFGetS : public AstNodeBiop {
|
|
|
|
|
|
AstFGetS(FileLine* fl, AstNode* lhsp, AstNode* rhsp) : AstNodeBiop(fl, lhsp, rhsp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(FGetS, FGETS)
|
2008-06-28 02:04:20 +02:00
|
|
|
|
virtual void numberOperate(V3Number& out, const V3Number& lhs, const V3Number& rhs) { V3ERROR_NA; }
|
|
|
|
|
|
virtual string emitVerilog() { return "%k$fgets(%l,%r)"; }
|
2008-06-30 13:10:23 +02:00
|
|
|
|
virtual string emitC() { return "VL_FGETS_%nqX%rq(%lw, %P, &(%li), %ri)"; }
|
2008-06-28 02:04:20 +02:00
|
|
|
|
virtual bool cleanOut() {return false;}
|
|
|
|
|
|
virtual bool cleanLhs() {return true;} virtual bool cleanRhs() {return true;}
|
|
|
|
|
|
virtual bool sizeMattersLhs() {return false;} virtual bool sizeMattersRhs() {return false;}
|
|
|
|
|
|
virtual int instrCount() const { return widthInstrs()*64; }
|
|
|
|
|
|
AstNode* strgp() const { return lhsp(); }
|
|
|
|
|
|
AstNode* filep() const { return rhsp(); }
|
|
|
|
|
|
};
|
2006-08-26 13:35:28 +02:00
|
|
|
|
|
2007-03-06 22:43:38 +01:00
|
|
|
|
//======================================================================
|
|
|
|
|
|
// SysVerilog assertions
|
|
|
|
|
|
|
|
|
|
|
|
struct AstVAssert : public AstNodeStmt {
|
|
|
|
|
|
// Verilog Assertion
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// Children: expression, if pass statements, if fail statements
|
|
|
|
|
|
AstVAssert(FileLine* fl, AstNode* propp, AstNode* passsp, AstNode* failsp)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
addOp1p(propp);
|
|
|
|
|
|
addNOp2p(passsp);
|
|
|
|
|
|
addNOp3p(failsp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(VAssert, VASSERT)
|
2007-03-06 22:43:38 +01:00
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
AstNode* propp() const { return op1p(); } // op1 = property
|
|
|
|
|
|
AstNode* passsp() const { return op2p(); } // op2 = if passes
|
|
|
|
|
|
AstNode* failsp() const { return op3p(); } // op3 = if fails
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2008-08-06 18:52:39 +02:00
|
|
|
|
//======================================================================
|
|
|
|
|
|
// Assertions
|
|
|
|
|
|
|
|
|
|
|
|
struct AstClocking : public AstNode {
|
|
|
|
|
|
// Set default clock region
|
|
|
|
|
|
// Parents: MODULE
|
|
|
|
|
|
// Children: Assertions
|
2008-11-20 13:55:54 +01:00
|
|
|
|
AstClocking(FileLine* fl, AstNodeSenItem* sensesp, AstNode* bodysp)
|
2008-08-06 18:52:39 +02:00
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
addOp1p(sensesp);
|
|
|
|
|
|
addNOp2p(bodysp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Clocking, CLOCKING)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
AstNodeSenItem* sensesp() const { return op1p()->castNodeSenItem(); } // op1 = Sensitivity list
|
2008-08-06 18:52:39 +02:00
|
|
|
|
AstNode* bodysp() const { return op2p(); } // op2 = Body
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//======================================================================
|
|
|
|
|
|
// PSL
|
|
|
|
|
|
|
|
|
|
|
|
struct AstPslDefClock : public AstNode {
|
|
|
|
|
|
// Set default PSL clock
|
|
|
|
|
|
// Parents: MODULE
|
|
|
|
|
|
// Children: SENITEM
|
2008-11-20 13:55:54 +01:00
|
|
|
|
AstPslDefClock(FileLine* fl, AstNodeSenItem* sensesp)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
addNOp1p(sensesp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(PslDefClock, PSLDEFCLOCK)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
AstNodeSenItem* sensesp() const { return op1p()->castNodeSenItem(); } // op1 = Sensitivity list
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstPslClocked : public AstNode {
|
|
|
|
|
|
// A clocked property
|
|
|
|
|
|
// Parents: ASSERT|COVER (property)
|
|
|
|
|
|
// Children: SENITEM, Properties
|
2008-11-20 13:55:54 +01:00
|
|
|
|
AstPslClocked(FileLine* fl, AstNodeSenItem* sensesp, AstNode* disablep, AstNode* propp)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
addNOp1p(sensesp);
|
2008-08-06 18:52:39 +02:00
|
|
|
|
addNOp2p(disablep);
|
|
|
|
|
|
addOp3p(propp);
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(PslClocked, PSLCLOCKED)
|
2008-11-20 13:55:54 +01:00
|
|
|
|
AstNodeSenItem* sensesp() const { return op1p()->castNodeSenItem(); } // op1 = Sensitivity list
|
2008-08-06 18:52:39 +02:00
|
|
|
|
AstNode* disablep() const { return op2p(); } // op2 = disable
|
|
|
|
|
|
AstNode* propp() const { return op3p(); } // op3 = property
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstPslAssert : public AstNodeStmt {
|
|
|
|
|
|
// Psl Assertion
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// Children: expression, report string
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Name to report
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstPslAssert(FileLine* fl, AstNode* propp, const string& name="")
|
|
|
|
|
|
: AstNodeStmt(fl)
|
|
|
|
|
|
, m_name(name) {
|
|
|
|
|
|
addOp1p(propp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(PslAssert, PSLASSERT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_name; } // * = Var name
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(name()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return samep->name() == name(); }
|
|
|
|
|
|
AstNode* propp() const { return op1p(); } // op1 = property
|
|
|
|
|
|
AstSenTree* sentreep() const { return op2p()->castSenTree(); } // op2 = clock domain
|
|
|
|
|
|
void sentreep(AstSenTree* sentreep) { addOp2p(sentreep); } // op2 = clock domain
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstPslCover : public AstNodeStmt {
|
|
|
|
|
|
// Psl Cover
|
|
|
|
|
|
// Parents: {statement list}
|
|
|
|
|
|
// Children: expression, report string
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; // Name to report
|
|
|
|
|
|
public:
|
2008-08-06 18:52:39 +02:00
|
|
|
|
AstPslCover(FileLine* fl, AstNode* propp, AstNode* stmtsp, const string& name="")
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNodeStmt(fl)
|
|
|
|
|
|
, m_name(name) {
|
|
|
|
|
|
addOp1p(propp);
|
2008-08-06 18:52:39 +02:00
|
|
|
|
addNOp4p(stmtsp);
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(PslCover, PSLCOVER)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_name; } // * = Var name
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(name()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return samep->name() == name(); }
|
2009-07-22 21:21:41 +02:00
|
|
|
|
virtual void name(const string& name) { m_name = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* propp() const { return op1p(); } // op1 = property
|
|
|
|
|
|
AstSenTree* sentreep() const { return op2p()->castSenTree(); } // op2 = clock domain
|
|
|
|
|
|
void sentreep(AstSenTree* sentreep) { addOp2p(sentreep); } // op2 = clock domain
|
|
|
|
|
|
AstNode* coverincp() const { return op3p(); } // op3 = coverage node
|
|
|
|
|
|
void coverincp(AstCoverInc* nodep) { addOp3p(nodep); } // op3 = coverage node
|
2008-08-06 18:52:39 +02:00
|
|
|
|
AstNode* stmtsp() const { return op4p(); } // op4 = statements
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
|
// PSL Expressions
|
|
|
|
|
|
|
|
|
|
|
|
struct AstPslBool : public AstNode {
|
|
|
|
|
|
// Separates PSL Sere/sequences from the normal expression boolean layer below.
|
|
|
|
|
|
// Note this excludes next() and similar functions; they are time domain, so not under AstPslBool.
|
|
|
|
|
|
// Parents: Sequences, etc.
|
|
|
|
|
|
// Children: math
|
|
|
|
|
|
AstPslBool(FileLine* fileline, AstNode* exprp)
|
|
|
|
|
|
: AstNode(fileline) {
|
|
|
|
|
|
addOp1p(exprp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(PslBool, PSLBOOL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* exprp() const { return op1p()->castNode(); } // op1= expression
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; } // Not relevant
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; } // Not relevant
|
|
|
|
|
|
virtual int instrCount() const { return 0; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
|
// Text based nodes
|
|
|
|
|
|
|
|
|
|
|
|
struct AstText : public AstNodeText {
|
|
|
|
|
|
AstText(FileLine* fl, const string& textp)
|
|
|
|
|
|
: AstNodeText(fl, textp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Text, TEXT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstScCtor : public AstNodeText {
|
|
|
|
|
|
AstScCtor(FileLine* fl, const string& textp)
|
|
|
|
|
|
: AstNodeText(fl, textp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ScCtor, SCCTOR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: User may order w/other sigs
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-30 19:27:53 +02:00
|
|
|
|
struct AstScDtor : public AstNodeText {
|
|
|
|
|
|
AstScDtor(FileLine* fl, const string& textp)
|
|
|
|
|
|
: AstNodeText(fl, textp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ScDtor, SCDTOR)
|
2006-08-30 19:27:53 +02:00
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: User may order w/other sigs
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2006-08-26 13:35:28 +02:00
|
|
|
|
struct AstScHdr : public AstNodeText {
|
|
|
|
|
|
AstScHdr(FileLine* fl, const string& textp)
|
|
|
|
|
|
: AstNodeText(fl, textp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ScHdr, SCHDR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: User may order w/other sigs
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstScImp : public AstNodeText {
|
|
|
|
|
|
AstScImp(FileLine* fl, const string& textp)
|
|
|
|
|
|
: AstNodeText(fl, textp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ScImp, SCIMP)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: User may order w/other sigs
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstScImpHdr : public AstNodeText {
|
|
|
|
|
|
AstScImpHdr(FileLine* fl, const string& textp)
|
|
|
|
|
|
: AstNodeText(fl, textp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ScImpHdr, SCIMPHDR)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: User may order w/other sigs
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstScInt : public AstNodeText {
|
|
|
|
|
|
AstScInt(FileLine* fl, const string& textp)
|
|
|
|
|
|
: AstNodeText(fl, textp) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(ScInt, SCINT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: User may order w/other sigs
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstUCStmt : public AstNodeStmt {
|
|
|
|
|
|
// User $c statement
|
|
|
|
|
|
AstUCStmt(FileLine* fl, AstNode* exprsp)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
addNOp1p(exprsp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(UCStmt, UCSTMT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* bodysp() const { return op1p()->castNode(); } // op1= expressions to print
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; }
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
|
// Emit C nodes
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCFile : public AstNode {
|
|
|
|
|
|
// C++ output file
|
|
|
|
|
|
// Parents: NETLIST
|
|
|
|
|
|
// Children: nothing yet
|
|
|
|
|
|
private:
|
|
|
|
|
|
string m_name; ///< Filename
|
|
|
|
|
|
bool m_slow:1; ///< Compile w/o optimization
|
|
|
|
|
|
bool m_source:1; ///< Source file (vs header file)
|
|
|
|
|
|
bool m_support:1; ///< Support file (non systemc)
|
|
|
|
|
|
public:
|
|
|
|
|
|
AstCFile(FileLine* fl, const string& name)
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
m_name = name;
|
|
|
|
|
|
m_slow = false;
|
|
|
|
|
|
m_source = false;
|
|
|
|
|
|
m_support = false;
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CFile, CFILE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_name; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
virtual void dump(ostream& str=cout);
|
|
|
|
|
|
bool slow() const { return m_slow; }
|
|
|
|
|
|
void slow(bool flag) { m_slow = flag; }
|
|
|
|
|
|
bool source() const { return m_source; }
|
|
|
|
|
|
void source(bool flag) { m_source = flag; }
|
|
|
|
|
|
bool support() const { return m_support; }
|
|
|
|
|
|
void support(bool flag) { m_support = flag; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCFunc : public AstNode {
|
|
|
|
|
|
// C++ function
|
|
|
|
|
|
// Parents: MODULE/SCOPE
|
|
|
|
|
|
// Children: VAR/statements
|
|
|
|
|
|
private:
|
|
|
|
|
|
AstCFuncType m_funcType;
|
|
|
|
|
|
AstScope* m_scopep;
|
|
|
|
|
|
string m_name;
|
|
|
|
|
|
string m_rtnType; // void, bool, or other return type
|
|
|
|
|
|
string m_argTypes;
|
|
|
|
|
|
bool m_dontCombine:1; // V3Combine shouldn't compare this func tree, it's special
|
|
|
|
|
|
bool m_skipDecl:1; // Don't declare it
|
|
|
|
|
|
bool m_declPrivate:1; // Declare it private
|
|
|
|
|
|
bool m_formCallTree:1; // Make a global function to call entire tree of functions
|
|
|
|
|
|
bool m_slow:1; // Slow routine, called once or just at init time
|
|
|
|
|
|
bool m_funcPublic:1; // From user public task/function
|
2006-08-29 14:01:02 +02:00
|
|
|
|
bool m_isStatic:1; // Function is declared static (no this)
|
2006-08-30 23:07:55 +02:00
|
|
|
|
bool m_symProlog:1; // Setup symbol table for later instructions
|
2006-09-26 17:05:35 +02:00
|
|
|
|
bool m_entryPoint:1; // User may call into this top level function
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
|
|
|
|
|
AstCFunc(FileLine* fl, const string& name, AstScope* scopep, const string& rtnType="")
|
|
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
m_funcType = AstCFuncType::NORMAL;
|
|
|
|
|
|
m_scopep = scopep;
|
|
|
|
|
|
m_name = name;
|
|
|
|
|
|
m_rtnType = rtnType;
|
|
|
|
|
|
m_dontCombine = false;
|
|
|
|
|
|
m_skipDecl = false;
|
|
|
|
|
|
m_declPrivate = false;
|
|
|
|
|
|
m_formCallTree = false;
|
|
|
|
|
|
m_slow = false;
|
|
|
|
|
|
m_funcPublic = false;
|
2006-08-31 00:00:55 +02:00
|
|
|
|
m_isStatic = true; // Note defaults to static, later we see where thisp is needed
|
2006-08-30 23:07:55 +02:00
|
|
|
|
m_symProlog = false;
|
2006-09-26 17:05:35 +02:00
|
|
|
|
m_entryPoint = false;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CFunc, CFUNC)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual string name() const { return m_name; }
|
2006-10-05 02:45:39 +02:00
|
|
|
|
virtual bool broken() const { return ( (m_scopep && !m_scopep->brokeExists())); }
|
|
|
|
|
|
virtual bool maybePointedTo() const { return true; }
|
2008-08-06 23:09:33 +02:00
|
|
|
|
virtual void dump(ostream& str=cout);
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
2006-08-30 23:07:55 +02:00
|
|
|
|
virtual bool same(AstNode* samep) const { return ((funcType()==samep->castCFunc()->funcType())
|
|
|
|
|
|
&& (rtnTypeVoid()==samep->castCFunc()->rtnTypeVoid())
|
|
|
|
|
|
&& (argTypes()==samep->castCFunc()->argTypes())); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//
|
2009-07-22 21:21:41 +02:00
|
|
|
|
virtual void name(const string& name) { m_name = name; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstScope* scopep() const { return m_scopep; }
|
|
|
|
|
|
void scopep(AstScope* nodep) { m_scopep = nodep; }
|
|
|
|
|
|
string rtnTypeVoid() const { return ((m_rtnType=="") ? "void" : m_rtnType); }
|
|
|
|
|
|
bool dontCombine() const { return m_dontCombine || funcType()!=AstCFuncType::NORMAL; }
|
|
|
|
|
|
void dontCombine(bool flag) { m_dontCombine = flag; }
|
|
|
|
|
|
bool skipDecl() const { return m_skipDecl; }
|
|
|
|
|
|
void skipDecl(bool flag) { m_skipDecl = flag; }
|
|
|
|
|
|
bool declPrivate() const { return m_declPrivate; }
|
|
|
|
|
|
void declPrivate(bool flag) { m_declPrivate = flag; }
|
|
|
|
|
|
bool formCallTree() const { return m_formCallTree; }
|
|
|
|
|
|
void formCallTree(bool flag) { m_formCallTree = flag; }
|
|
|
|
|
|
bool slow() const { return m_slow; }
|
|
|
|
|
|
void slow(bool flag) { m_slow = flag; }
|
|
|
|
|
|
bool funcPublic() const { return m_funcPublic; }
|
|
|
|
|
|
void funcPublic(bool flag) { m_funcPublic = flag; }
|
|
|
|
|
|
void argTypes(const string& str) { m_argTypes = str; }
|
|
|
|
|
|
string argTypes() const { return m_argTypes; }
|
|
|
|
|
|
void funcType(AstCFuncType flag) { m_funcType = flag; }
|
|
|
|
|
|
AstCFuncType funcType() const { return m_funcType; }
|
2006-08-29 14:01:02 +02:00
|
|
|
|
bool isStatic() const { return m_isStatic; }
|
|
|
|
|
|
void isStatic(bool flag) { m_isStatic = flag; }
|
2006-08-30 23:07:55 +02:00
|
|
|
|
bool symProlog() const { return m_symProlog; }
|
|
|
|
|
|
void symProlog(bool flag) { m_symProlog = flag; }
|
2006-09-26 17:05:35 +02:00
|
|
|
|
bool entryPoint() const { return m_entryPoint; }
|
|
|
|
|
|
void entryPoint(bool flag) { m_entryPoint = flag; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//
|
|
|
|
|
|
// If adding node accessors, see below
|
|
|
|
|
|
AstNode* argsp() const { return op1p()->castNode(); }
|
|
|
|
|
|
void addArgsp(AstNode* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
AstNode* initsp() const { return op2p()->castNode(); }
|
|
|
|
|
|
void addInitsp(AstNode* nodep) { addOp2p(nodep); }
|
|
|
|
|
|
AstNode* stmtsp() const { return op3p()->castNode(); }
|
|
|
|
|
|
void addStmtsp(AstNode* nodep) { addOp3p(nodep); }
|
|
|
|
|
|
AstNode* finalsp() const { return op4p()->castNode(); }
|
|
|
|
|
|
void addFinalsp(AstNode* nodep) { addOp4p(nodep); }
|
|
|
|
|
|
// Special methods
|
|
|
|
|
|
bool emptyBody() const { return argsp()==NULL && initsp()==NULL && stmtsp()==NULL && finalsp()==NULL; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCCall : public AstNodeStmt {
|
|
|
|
|
|
// C++ function call
|
|
|
|
|
|
// Parents: Anything above a statement
|
|
|
|
|
|
// Children: Args to the function
|
|
|
|
|
|
private:
|
|
|
|
|
|
AstCFunc* m_funcp;
|
|
|
|
|
|
string m_hiername;
|
2006-08-30 23:07:55 +02:00
|
|
|
|
string m_argTypes;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
|
|
|
|
|
AstCCall(FileLine* fl, AstCFunc* funcp, AstNode* argsp=NULL)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
m_funcp = funcp;
|
|
|
|
|
|
addNOp1p(argsp);
|
|
|
|
|
|
}
|
|
|
|
|
|
AstCCall(AstCCall* oldp, AstCFunc* funcp) // Replacement form for V3Combine
|
|
|
|
|
|
: AstNodeStmt(oldp->fileline()) {
|
|
|
|
|
|
m_funcp = funcp;
|
|
|
|
|
|
m_hiername = oldp->hiername();
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CCall, CCALL)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual void dump(ostream& str=cout);
|
|
|
|
|
|
virtual void cloneRelink() { if (m_funcp && m_funcp->clonep()) {
|
|
|
|
|
|
m_funcp = m_funcp->clonep()->castCFunc();
|
|
|
|
|
|
}}
|
|
|
|
|
|
virtual bool broken() const { return (m_funcp && !m_funcp->brokeExists()); }
|
|
|
|
|
|
virtual int instrCount() const { return instrCountCall(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(funcp()); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const {
|
2006-08-30 23:07:55 +02:00
|
|
|
|
return (funcp()==samep->castCCall()->funcp()
|
|
|
|
|
|
&& argTypes()==samep->castCCall()->argTypes()); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* exprsp() const { return op1p()->castNode(); } // op1= expressions to print
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isSplittable() const { return false; } // SPECIAL: $display has 'visual' ordering
|
|
|
|
|
|
virtual bool isOutputter() const { return true; }
|
|
|
|
|
|
AstCFunc* funcp() const { return m_funcp; }
|
|
|
|
|
|
string hiername() const { return m_hiername; }
|
|
|
|
|
|
void hiername(const string& hn) { m_hiername = hn; }
|
2006-08-30 23:07:55 +02:00
|
|
|
|
void argTypes(const string& str) { m_argTypes = str; }
|
|
|
|
|
|
string argTypes() const { return m_argTypes; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
//
|
|
|
|
|
|
AstNode* argsp() const { return op1p()->castNode(); }
|
|
|
|
|
|
void addArgsp(AstNode* nodep) { addOp1p(nodep); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCReturn : public AstNodeStmt {
|
|
|
|
|
|
// C++ return from a function
|
|
|
|
|
|
// Parents: CFUNC/statement
|
|
|
|
|
|
// Children: Math
|
|
|
|
|
|
AstCReturn(FileLine* fl, AstNode* lhsp)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
setOp1p(lhsp);
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CReturn, CRETURN)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual int instrCount() const { return widthInstrs(); }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode*) const { return true; }
|
|
|
|
|
|
//
|
|
|
|
|
|
AstNode* lhsp() const { return op1p(); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCInclude : public AstNode {
|
|
|
|
|
|
// C++ use of another class
|
|
|
|
|
|
// Parents: MODULE
|
|
|
|
|
|
// Children: None
|
|
|
|
|
|
private:
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstNodeModule* m_modp;
|
2006-08-26 13:35:28 +02:00
|
|
|
|
public:
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstCInclude(FileLine* fl, AstNodeModule* modp)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
: AstNode(fl) {
|
|
|
|
|
|
m_modp = modp;
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CInclude, CINCLUDE)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual bool broken() const { return (m_modp && !m_modp->brokeExists()); }
|
|
|
|
|
|
virtual void cloneRelink() { if (m_modp && m_modp->clonep()) {
|
2009-11-07 12:20:20 +01:00
|
|
|
|
m_modp = m_modp->clonep()->castNodeModule();
|
2006-08-26 13:35:28 +02:00
|
|
|
|
}}
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstNodeModule* modp() const { return m_modp; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCMath : public AstNodeMath {
|
|
|
|
|
|
// Emit C textual math function (like AstUCFunc)
|
|
|
|
|
|
AstCMath(FileLine* fl, AstNode* exprsp)
|
|
|
|
|
|
: AstNodeMath(fl) {
|
|
|
|
|
|
addOp1p(exprsp);
|
|
|
|
|
|
widthSignedFrom(exprsp);
|
|
|
|
|
|
}
|
|
|
|
|
|
AstCMath(FileLine* fl, const string& textStmt, int setwidth)
|
|
|
|
|
|
: AstNodeMath(fl) {
|
|
|
|
|
|
addNOp1p(new AstText(fl, textStmt));
|
|
|
|
|
|
if (setwidth) { width(setwidth,setwidth); }
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CMath, CMATH)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* bodysp() const { return op1p()->castNode(); } // op1= expressions to print
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool cleanOut() { return true; }
|
|
|
|
|
|
virtual string emitVerilog() { V3ERROR_NA; return ""; } // Implemented specially
|
2008-06-30 02:02:24 +02:00
|
|
|
|
virtual string emitC() { V3ERROR_NA; return ""; }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct AstCStmt : public AstNodeStmt {
|
|
|
|
|
|
// Emit C statement
|
|
|
|
|
|
AstCStmt(FileLine* fl, AstNode* exprsp)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
addNOp1p(exprsp);
|
|
|
|
|
|
}
|
|
|
|
|
|
AstCStmt(FileLine* fl, const string& textStmt)
|
|
|
|
|
|
: AstNodeStmt(fl) {
|
|
|
|
|
|
addNOp1p(new AstText(fl, textStmt));
|
|
|
|
|
|
}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(CStmt, CSTMT)
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstNode* bodysp() const { return op1p()->castNode(); } // op1= expressions to print
|
|
|
|
|
|
virtual bool isGateOptimizable() const { return false; }
|
|
|
|
|
|
virtual bool isPredictOptimizable() const { return false; }
|
|
|
|
|
|
virtual V3Hash sameHash() const { return V3Hash(); }
|
|
|
|
|
|
virtual bool same(AstNode* samep) const { return true; }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//######################################################################
|
|
|
|
|
|
// Top
|
|
|
|
|
|
|
|
|
|
|
|
struct AstNetlist : public AstNode {
|
|
|
|
|
|
// All modules are under this single top node.
|
|
|
|
|
|
// Parents: none
|
|
|
|
|
|
// Children: MODULEs & CFILEs
|
|
|
|
|
|
AstNetlist() : AstNode(new FileLine("AstRoot",0)) {}
|
2008-11-20 02:15:05 +01:00
|
|
|
|
ASTNODE_NODE_FUNCS(Netlist, NETLIST)
|
2009-11-07 12:20:20 +01:00
|
|
|
|
AstNodeModule* modulesp() const { return op1p()->castNodeModule();} // op1 = List of modules
|
|
|
|
|
|
AstNodeModule* topModulep() const { return op1p()->castNodeModule(); } // * = Top module in hierarchy (first one added, for now)
|
|
|
|
|
|
void addModulep(AstNodeModule* modulep) { addOp1p(modulep); }
|
2006-08-26 13:35:28 +02:00
|
|
|
|
AstCFile* filesp() const { return op2p()->castCFile();} // op2 = List of files
|
|
|
|
|
|
void addFilesp(AstCFile* filep) { addOp2p(filep); }
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//######################################################################
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Guard
|