/* * Copyright (c) 2003-2025 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 "vpi_priv.h" # include "vvp_net_sig.h" # include "schedule.h" #ifdef CHECK_WITH_VALGRIND # include "vvp_cleanup.h" #endif # include # include # include # include # include "ivl_alloc.h" static int real_var_get(int code, vpiHandle ref) { struct __vpiRealVar*rfp = dynamic_cast<__vpiRealVar*>(ref); assert(rfp); switch (code) { case vpiArray: return rfp->is_netarray != 0; case vpiSize: return 1; case vpiLineNo: return 0; // Not implemented for now! case vpiAutomatic: return vpip_scope(rfp)->is_automatic()? 1 : 0; } return 0; } static char* real_var_get_str(int code, vpiHandle ref) { struct __vpiRealVar*rfp = dynamic_cast<__vpiRealVar*>(ref); assert(rfp); if (code == vpiFile) { // Not implemented for now! return simple_set_rbuf_str(file_names[0]); } char *nm; const char *ixs; if (rfp->is_netarray) { nm = strdup(vpi_get_str(vpiName, rfp->within.parent)); s_vpi_value vp; vp.format = vpiDecStrVal; vpi_get_value(rfp->id.index, &vp); ixs = vp.value.str; /* do I need to strdup() this? */ } else { nm = strdup(rfp->id.name); ixs = NULL; } char *rbuf = generic_get_str(code, vpip_scope(rfp), nm, ixs); free(nm); return rbuf; } static vpiHandle real_var_get_handle(int code, vpiHandle ref) { struct __vpiRealVar*rfp = dynamic_cast<__vpiRealVar*>(ref); assert(rfp); switch (code) { case vpiParent: return rfp->is_netarray ? rfp->within.parent : NULL; case vpiIndex: return rfp->is_netarray ? rfp->id.index : NULL; case vpiScope: return vpip_scope(rfp); case vpiModule: return vpip_module(vpip_scope(rfp)); } return 0; } static vpiHandle real_var_iterate(int code, vpiHandle ref) { struct __vpiRealVar*rfp = dynamic_cast<__vpiRealVar*>(ref); assert(rfp); if (code == vpiIndex) { return rfp->is_netarray ? rfp->id.index->vpi_iterate(code) : NULL; } return 0; } static void real_var_get_value(vpiHandle ref, s_vpi_value*vp) { struct __vpiRealVar*rfp = dynamic_cast<__vpiRealVar*>(ref); assert(rfp); vvp_signal_value*fil = dynamic_cast(rfp->net->fil); fil->get_signal_value(vp); } static vpiHandle real_var_put_value(vpiHandle ref, p_vpi_value vp, int flags) { struct __vpiRealVar*rfp = dynamic_cast<__vpiRealVar*>(ref); assert(rfp); vvp_net_ptr_t destination (rfp->net, 0); /* If this is a release, then we are not really putting a value. Instead, issue a release "command" to the signal node to cause it to release a forced value. */ if (flags == vpiReleaseFlag) { assert(rfp->net->fil); rfp->net->fil->force_unlink(); rfp->net->fil->release(destination, rfp->is_wire); real_var_get_value(ref, vp); return ref; } double result = real_from_vpi_value(vp); if (flags == vpiForceFlag) { vvp_vector2_t mask (vvp_vector2_t::FILL1, 1); rfp->net->force_real(result, mask); } else if (rfp->is_wire) { rfp->net->send_real(result, vthread_get_wt_context()); } else { vvp_send_real(destination, result, vthread_get_wt_context()); } return 0; } inline __vpiRealVar::__vpiRealVar() { } int __vpiRealVar::get_type_code(void) const { return vpiRealVar; } int __vpiRealVar::vpi_get(int code) { return real_var_get(code, this); } char* __vpiRealVar::vpi_get_str(int code) { return real_var_get_str(code, this); } void __vpiRealVar::vpi_get_value(p_vpi_value val) { real_var_get_value(this, val); } vpiHandle __vpiRealVar::vpi_put_value(p_vpi_value val, int flags) { return real_var_put_value(this, val, flags); } vpiHandle __vpiRealVar::vpi_handle(int code) { return real_var_get_handle(code, this); } vpiHandle __vpiRealVar::vpi_iterate(int code) { return real_var_iterate(code, this); } static vpiHandle vpip_make_real_(__vpiScope*scope, const char*name, vvp_net_t*net, bool is_wire) { struct __vpiRealVar*obj = new __vpiRealVar; obj->id.name = name ? vpip_name_string(name) : NULL; obj->is_netarray = 0; obj->is_wire = is_wire; obj->net = net; obj->within.scope = scope; return obj; } vpiHandle vpip_make_real_var(const char*name, vvp_net_t*net) { return vpip_make_real_(vpip_peek_current_scope(), name, net, false); } vpiHandle vpip_make_real_net(__vpiScope*scope, const char*name, vvp_net_t*net) { return vpip_make_real_(scope, name, net, true); } #ifdef CHECK_WITH_VALGRIND void real_delete(vpiHandle item) { struct __vpiRealVar*obj = dynamic_cast<__vpiRealVar*>(item); assert(obj->net->fil); obj->net->fil->clear_all_callbacks(); vvp_net_delete(obj->net); delete obj; } #endif