2014-07-23 22:39:29 +02:00
|
|
|
#ifndef IVL_netstruct_H
|
|
|
|
|
#define IVL_netstruct_H
|
2011-12-04 02:16:01 +01:00
|
|
|
/*
|
2014-07-23 22:39:29 +02:00
|
|
|
* Copyright (c) 2011-2014 Stephen Williams (steve@icarus.com)
|
2011-12-04 02:16:01 +01:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-12-04 02:16:01 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
# include "LineInfo.h"
|
2012-09-30 00:13:45 +02:00
|
|
|
# include <vector>
|
2011-12-11 19:28:04 +01:00
|
|
|
# include "ivl_target.h"
|
2012-03-26 02:59:05 +02:00
|
|
|
# include "nettypes.h"
|
2011-12-04 02:16:01 +01:00
|
|
|
|
2013-12-01 03:20:01 +01:00
|
|
|
class Design;
|
|
|
|
|
|
2012-09-23 18:28:49 +02:00
|
|
|
class netstruct_t : public LineInfo, public ivl_type_s {
|
2011-12-04 02:16:01 +01:00
|
|
|
|
2011-12-11 19:28:04 +01:00
|
|
|
public:
|
|
|
|
|
struct member_t {
|
|
|
|
|
perm_string name;
|
2013-11-29 21:43:34 +01:00
|
|
|
ivl_type_t net_type;
|
|
|
|
|
inline ivl_variable_type_t data_type() const
|
|
|
|
|
{ return net_type->base_type(); };
|
2012-04-03 04:53:04 +02:00
|
|
|
// We need to keep the individual element sign information.
|
|
|
|
|
bool get_signed() const { return false; };
|
2011-12-11 19:28:04 +01:00
|
|
|
};
|
|
|
|
|
|
2011-12-04 02:16:01 +01:00
|
|
|
public:
|
|
|
|
|
netstruct_t();
|
|
|
|
|
~netstruct_t();
|
|
|
|
|
|
2013-11-29 21:43:34 +01:00
|
|
|
// If this is a union (instead of struct) then this flag is
|
|
|
|
|
// set. We handle union and struct together because they are
|
|
|
|
|
// so similar.
|
|
|
|
|
void union_flag(bool);
|
|
|
|
|
bool union_flag(void) const;
|
|
|
|
|
|
2011-12-11 19:28:04 +01:00
|
|
|
void packed(bool flag);
|
|
|
|
|
bool packed(void) const;
|
|
|
|
|
|
2013-12-01 03:20:01 +01:00
|
|
|
// Append a new member to the struct/union. This must be done
|
|
|
|
|
// after the union_flag and packed settings are set. This
|
|
|
|
|
// function does error checking, and the "des" argument is
|
|
|
|
|
// only present so that it can set error flags.
|
|
|
|
|
void append_member(Design*des, const member_t&);
|
2011-12-11 19:28:04 +01:00
|
|
|
|
|
|
|
|
// Given the name of a member, return a pointer to the member
|
|
|
|
|
// description, and set the off value to be the offset into
|
|
|
|
|
// the packed value where the member begins.
|
|
|
|
|
const struct member_t* packed_member(perm_string name, unsigned long&off) const;
|
|
|
|
|
|
|
|
|
|
// Return the width (in bits) of the packed record, or -1 if
|
|
|
|
|
// the record is not packed.
|
|
|
|
|
long packed_width() const;
|
2012-09-30 00:13:45 +02:00
|
|
|
std::vector<netrange_t> slice_dimensions() const;
|
2011-12-11 19:28:04 +01:00
|
|
|
|
2012-09-15 19:27:43 +02:00
|
|
|
// Return the base type of the packed record, or
|
|
|
|
|
// IVL_VT_NO_TYPE if the record is not packed.
|
|
|
|
|
ivl_variable_type_t base_type() const;
|
|
|
|
|
|
2011-12-04 02:16:01 +01:00
|
|
|
private:
|
2013-11-29 21:43:34 +01:00
|
|
|
bool union_;
|
2011-12-04 02:16:01 +01:00
|
|
|
bool packed_;
|
2011-12-11 19:28:04 +01:00
|
|
|
std::vector<member_t>members_;
|
2011-12-04 02:16:01 +01:00
|
|
|
};
|
|
|
|
|
|
2013-11-29 21:43:34 +01:00
|
|
|
inline bool netstruct_t::union_flag(void) const { return union_; }
|
2011-12-11 19:28:04 +01:00
|
|
|
inline bool netstruct_t::packed(void) const { return packed_; }
|
|
|
|
|
|
2014-07-23 22:39:29 +02:00
|
|
|
#endif /* IVL_netstruct_H */
|