2020-02-29 00:15:08 +00:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
|
|
//*************************************************************************
|
|
|
|
// DESCRIPTION: Verilator: Break variables into separate words to avoid UNOPTFLAT
|
|
|
|
//
|
|
|
|
// Code available from: https://verilator.org
|
|
|
|
//
|
|
|
|
//*************************************************************************
|
|
|
|
//
|
2020-03-21 15:24:24 +00:00
|
|
|
// Copyright 2003-2020 by Wilson Snyder. This program is free software; you
|
|
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
2020-02-29 00:15:08 +00:00
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
// Version 2.0.
|
2020-03-21 15:24:24 +00:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2020-02-29 00:15:08 +00:00
|
|
|
//
|
|
|
|
//*************************************************************************
|
|
|
|
|
|
|
|
#ifndef _V3SPLITVAR_H_
|
|
|
|
#define _V3SPLITVAR_H_ 1
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
class AstNetlist;
|
|
|
|
class AstVar;
|
|
|
|
|
|
|
|
class V3SplitVar {
|
|
|
|
public:
|
|
|
|
// Split variables marked with split_var metacomment.
|
|
|
|
static void splitVariable(AstNetlist* nodep);
|
|
|
|
|
|
|
|
// Return true if the variable can be split.
|
|
|
|
// This check is not perfect.
|
|
|
|
static bool canSplitVar(const AstVar* varp);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // Guard
|