2020-02-29 01:15:08 +01:00
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
// DESCRIPTION: Verilator: Break variables into separate words to avoid UNOPTFLAT
|
|
|
|
|
//
|
|
|
|
|
// Code available from: https://verilator.org
|
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
//
|
2022-01-01 14:26:40 +01:00
|
|
|
// Copyright 2003-2022 by Wilson Snyder. This program is free software; you
|
2020-03-21 16:24:24 +01:00
|
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
2020-02-29 01:15:08 +01:00
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
|
// Version 2.0.
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2020-02-29 01:15:08 +01:00
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
|
2021-03-04 03:57:07 +01:00
|
|
|
#ifndef VERILATOR_V3SPLITVAR_H_
|
|
|
|
|
#define VERILATOR_V3SPLITVAR_H_
|
2020-02-29 01:15:08 +01:00
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
|
|
class AstNetlist;
|
|
|
|
|
class AstVar;
|
|
|
|
|
|
2020-11-19 03:32:16 +01:00
|
|
|
class V3SplitVar final {
|
2020-02-29 01:15:08 +01:00
|
|
|
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
|