1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
/*
* Copyright (c) 2010-2021 Stephen Williams (steve@icarus.com)
*
* 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
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
# include "compile.h"
# include "enum_type.h"
#ifdef CHECK_WITH_VALGRIND
# include "vvp_cleanup.h"
#endif
# include <iostream>
# include <cassert>
using namespace std;
struct enumconst_s : public __vpiHandle {
enumconst_s();
int get_type_code(void) const;
int vpi_get(int code);
char* vpi_get_str(int code);
void vpi_get_value(p_vpi_value val);
const char*name;
vvp_vector2_t val2;
vvp_vector4_t val4;
};
struct __vpiEnumTypespec : public __vpiHandle {
__vpiEnumTypespec();
int get_type_code(void) const;
int vpi_get(int code);
vpiHandle vpi_iterate(int code);
std::vector<enumconst_s> names;
int base_type_code;
bool is_signed;
};
inline __vpiEnumTypespec::__vpiEnumTypespec()
{ }
int __vpiEnumTypespec::get_type_code(void) const
{ return vpiEnumTypespec; }
int __vpiEnumTypespec::vpi_get(int code)
{
switch (code) {
case vpiSize:
return names.size();
/* This is not currently set correctly. We always use vpiReg for
* four state variables and vpiBitVar for two state variables.
* This minimal functionality is needed to get the next() and
* prev() methods to work correctly with invalid values. */
case vpiBaseTypespec:
return base_type_code;
case vpiSigned:
return is_signed;
default:
fprintf(stderr, "vvp error: get %d not supported "
"by __vpiEnumTypespec\n", code);
assert(0);
return 0;
}
}
vpiHandle __vpiEnumTypespec::vpi_iterate(int code)
{
if (code == vpiEnumConst) {
vpiHandle*args = (vpiHandle*)
calloc(names.size(), sizeof(vpiHandle*));
for (size_t idx = 0 ; idx < names.size() ; idx += 1)
args[idx] = &names[idx];
return vpip_make_iterator(names.size(), args, true);
}
return 0;
}
inline enumconst_s::enumconst_s()
{ }
int enumconst_s::get_type_code(void) const
{ return vpiEnumConst; }
int enumconst_s::vpi_get(int code)
{
switch (code) {
case vpiSize:
return val4.size()? val4.size() : val2.size();
default:
return 0;
}
}
char* enumconst_s::vpi_get_str(int code)
{
switch (code) {
case vpiName:
return const_cast<char*> (name);
default:
return 0;
}
}
void enumconst_s::vpi_get_value(p_vpi_value val)
{
if (val4.size() > 0)
vpip_vec4_get_value(val4, val4.size(), false, val);
else
vpip_vec2_get_value(val2, val2.size(), false, val);
}
void compile_enum2_type(char*label, long width, bool signed_flag,
std::list<struct enum_name_s>*names)
{
struct __vpiEnumTypespec*spec = new struct __vpiEnumTypespec;
spec->names = std::vector<enumconst_s> (names->size());
spec->is_signed = signed_flag;
spec->base_type_code = vpiBitVar;
size_t idx = 0;
for (list<struct enum_name_s>::iterator cur = names->begin()
; cur != names->end() ; ++cur, ++idx) {
assert(cur->val4 == 0);
spec->names[idx].name = cur->text;
spec->names[idx].val2 = vvp_vector2_t(cur->val2, width);
}
assert(idx == spec->names.size());
compile_vpi_symbol(label, spec);
vpip_attach_to_current_scope(spec);
free(label);
delete names;
}
void compile_enum4_type(char*label, long width, bool signed_flag,
std::list<struct enum_name_s>*names)
{
struct __vpiEnumTypespec*spec = new struct __vpiEnumTypespec;
spec->names = std::vector<enumconst_s> (names->size());
spec->is_signed = signed_flag;
spec->base_type_code = vpiReg;
size_t idx = 0;
for (list<struct enum_name_s>::iterator cur = names->begin()
; cur != names->end() ; ++cur, ++idx) {
spec->names[idx].name = cur->text;
assert(cur->val4);
spec->names[idx].val4 = vector4_from_text(cur->val4, width);
free(cur->val4);
cur->val4 = 0;
}
assert(idx == spec->names.size());
compile_vpi_symbol(label, spec);
vpip_attach_to_current_scope(spec);
free(label);
delete names;
}
#ifdef CHECK_WITH_VALGRIND
void enum_delete(vpiHandle item)
{
struct __vpiEnumTypespec*obj = dynamic_cast<__vpiEnumTypespec*>(item);
for (vector<enumconst_s>::iterator iter = obj->names.begin();
iter != obj->names.end(); ++ iter ) {
delete [] iter->name;
}
delete obj;
}
#endif
|