File size: 7,754 Bytes
cb65407 | 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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | /******************************************************************************
* Copyright (c) 2015/16 Potential Ventures Ltd
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Potential Ventures Ltd
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL POTENTIAL VENTURES LTD BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
******************************************************************************/
#include <limits>
#include "FliImpl.h"
#include "_vendor/fli/mti.h"
#include "_vendor/tcl/tcl.h"
/**
* @name cleanup callback
* @brief Called while unwinding after a GPI callback
*
* We keep the process but desensitize it
*
* NB: need a way to determine if should leave it sensitized...
*
*/
int FliProcessCbHdl::cleanup_callback() {
switch (get_call_state()) {
case GPI_PRIMED:
case GPI_CALL:
mti_Desensitize(m_proc_hdl);
set_call_state(GPI_DELETE);
break;
case GPI_DELETE:
case GPI_FREE:
break;
}
return 0;
}
FliTimedCbHdl::FliTimedCbHdl(GpiImplInterface* impl, uint64_t time)
: GpiCbHdl(impl),
FliProcessCbHdl(impl),
GpiCommonCbHdl(impl),
m_time(time) {
m_proc_hdl = mti_CreateProcessWithPriority(NULL, handle_fli_callback,
(void*)this, MTI_PROC_IMMEDIATE);
}
int FliTimedCbHdl::arm_callback() {
#if defined(__LP64__) || defined(_WIN64)
mti_ScheduleWakeup64(m_proc_hdl, static_cast<mtiTime64T>(m_time));
#else
mtiTime64T m_time_union_ps;
MTI_TIME64_ASGN(m_time_union_ps, (mtiInt32T)((m_time) >> 32),
(mtiUInt32T)(m_time));
mti_ScheduleWakeup64(m_proc_hdl, m_time_union_ps);
#endif
set_call_state(GPI_PRIMED);
return 0;
}
int FliTimedCbHdl::cleanup_callback() {
switch (get_call_state()) {
case GPI_PRIMED:
/* Issue #188: Work around for modelsim that is harmless to othes
too, we tag the time as delete, let it fire then do not pass up
*/
LOG_DEBUG("Not removing PRIMED timer %p", m_time);
set_call_state(GPI_DELETE);
return 0;
case GPI_CALL:
LOG_DEBUG("Not removing CALL timer yet %p", m_time);
set_call_state(GPI_DELETE);
return 0;
case GPI_DELETE:
LOG_DEBUG("Removing Postponed DELETE timer %p", m_time);
break;
default:
break;
}
FliProcessCbHdl::cleanup_callback();
// put Timer back on cache instead of deleting
FliImpl* impl = (FliImpl*)m_impl;
impl->cache.put_timer(this);
return 0;
}
int FliSignalCbHdl::arm_callback() {
if (NULL == m_proc_hdl) {
LOG_DEBUG("Creating a new process to sensitise to signal %s",
mti_GetSignalName(m_sig_hdl));
m_proc_hdl = mti_CreateProcess(NULL, handle_fli_callback, (void*)this);
}
if (get_call_state() != GPI_PRIMED) {
mti_Sensitize(m_proc_hdl, m_sig_hdl, MTI_EVENT);
set_call_state(GPI_PRIMED);
}
return 0;
}
int FliSimPhaseCbHdl::arm_callback() {
if (NULL == m_proc_hdl) {
LOG_DEBUG("Creating a new process to sensitise with priority %d",
m_priority);
m_proc_hdl = mti_CreateProcessWithPriority(NULL, handle_fli_callback,
(void*)this, m_priority);
}
if (get_call_state() != GPI_PRIMED) {
mti_ScheduleWakeup(m_proc_hdl, 0);
set_call_state(GPI_PRIMED);
}
return 0;
}
FliSignalCbHdl::FliSignalCbHdl(GpiImplInterface* impl, FliSignalObjHdl* sig_hdl,
int edge)
: GpiCbHdl(impl),
GpiCommonCbHdl(impl),
FliProcessCbHdl(impl),
GpiValueCbHdl(impl, sig_hdl, edge) {
m_sig_hdl = m_signal->get_handle<mtiSignalIdT>();
}
int FliStartupCbHdl::arm_callback() {
mti_AddLoadDoneCB(handle_fli_callback, (void*)this);
set_call_state(GPI_PRIMED);
return 0;
}
static std::vector<std::string> get_argv() {
/* Necessary to implement PLUSARGS
There is no function available on the FLI to obtain argc+argv directly
from the simulator. To work around this we use the TCL interpreter that
ships with Questa, some TCL commands, and the TCL variable `argv` to
obtain the simulator argc+argv.
*/
std::vector<std::string> argv;
// obtain a reference to TCL interpreter
Tcl_Interp* interp = reinterpret_cast<Tcl_Interp*>(mti_Interp());
// get argv TCL variable
if (mti_Cmd("return -level 0 $argv") != TCL_OK) {
const char* errmsg = Tcl_GetStringResult(interp);
LOG_WARN("Failed to get reference to argv: %s", errmsg);
Tcl_ResetResult(interp);
return argv;
}
Tcl_Obj* result = Tcl_GetObjResult(interp);
Tcl_IncrRefCount(result);
Tcl_ResetResult(interp);
// split TCL list into length and element array
int argc;
Tcl_Obj** tcl_argv;
if (Tcl_ListObjGetElements(interp, result, &argc, &tcl_argv) != TCL_OK) {
const char* errmsg = Tcl_GetStringResult(interp);
LOG_WARN("Failed to get argv elements: %s", errmsg);
Tcl_DecrRefCount(result);
Tcl_ResetResult(interp);
return argv;
}
Tcl_ResetResult(interp);
// get each argv arg and copy into internal storage
for (int i = 0; i < argc; i++) {
const char* arg = Tcl_GetString(tcl_argv[i]);
argv.push_back(arg);
}
Tcl_DecrRefCount(result);
return argv;
}
int FliStartupCbHdl::run_callback() {
std::vector<std::string> const argv_storage = get_argv();
std::vector<const char*> argv_cstr;
for (const auto& arg : argv_storage) {
argv_cstr.push_back(arg.c_str());
}
int argc = static_cast<int>(argv_storage.size());
const char** argv = argv_cstr.data();
gpi_embed_init(argc, argv);
return 0;
}
int FliStartupCbHdl::cleanup_callback() {
mti_RemoveLoadDoneCB(handle_fli_callback, (void*)this);
set_call_state(GPI_DELETE);
return 0;
}
int FliShutdownCbHdl::arm_callback() {
mti_AddQuitCB(handle_fli_callback, (void*)this);
set_call_state(GPI_PRIMED);
return 0;
}
int FliShutdownCbHdl::run_callback() {
gpi_embed_end();
return 0;
}
int FliShutdownCbHdl::cleanup_callback() {
mti_RemoveQuitCB(handle_fli_callback, (void*)this);
set_call_state(GPI_DELETE);
return 0;
}
|