2012-04-13 01:08:20 +00:00
|
|
|
|
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
2009-12-03 11:55:29 +00:00
|
|
|
|
//*************************************************************************
|
|
|
|
|
//
|
2016-01-07 01:36:41 +00:00
|
|
|
|
// Copyright 2009-2016 by Wilson Snyder. This program is free software; you can
|
2009-12-03 11:55:29 +00:00
|
|
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
|
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License.
|
|
|
|
|
// Version 2.0.
|
|
|
|
|
//
|
|
|
|
|
// Verilator 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.
|
|
|
|
|
//
|
|
|
|
|
//=========================================================================
|
|
|
|
|
///
|
|
|
|
|
/// \file
|
|
|
|
|
/// \brief Verilator: DPI implementation code
|
|
|
|
|
///
|
|
|
|
|
/// This file must be compiled and linked against all objects
|
|
|
|
|
/// created from Verilator or called by Verilator that use the DPI.
|
|
|
|
|
///
|
|
|
|
|
/// Code available from: http://www.veripool.org/verilator
|
|
|
|
|
///
|
|
|
|
|
//=========================================================================
|
|
|
|
|
|
2010-01-24 13:38:17 +00:00
|
|
|
|
#define _VERILATED_DPI_CPP_
|
2009-12-03 11:55:29 +00:00
|
|
|
|
#include "verilatedos.h"
|
2011-05-21 01:33:31 +00:00
|
|
|
|
#include "verilated_dpi.h"
|
2010-01-24 13:38:17 +00:00
|
|
|
|
#include "verilated_imp.h"
|
2010-01-24 11:20:10 +00:00
|
|
|
|
|
|
|
|
|
// On MSVC++ we need svdpi.h to declare exports, not imports
|
|
|
|
|
#define DPI_PROTOTYPES
|
|
|
|
|
#define XXTERN DPI_EXTERN DPI_DLLESPEC
|
|
|
|
|
#define EETERN DPI_EXTERN DPI_DLLESPEC
|
|
|
|
|
|
2010-02-02 02:39:50 +00:00
|
|
|
|
#include "vltstd/svdpi.h"
|
2009-12-03 11:55:29 +00:00
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
// Internal macros
|
|
|
|
|
|
2009-12-05 15:38:49 +00:00
|
|
|
|
// Not supported yet
|
|
|
|
|
#define _VL_SVDPI_UNIMP() \
|
2010-02-04 00:19:18 +00:00
|
|
|
|
vl_fatal(__FILE__,__LINE__,"",(string("%%Error: Unsupported DPI function: ")+VL_FUNC).c_str())
|
2009-12-03 11:55:29 +00:00
|
|
|
|
|
|
|
|
|
// Function requires a "context" in the import declaration
|
2009-12-05 15:38:49 +00:00
|
|
|
|
#define _VL_SVDPI_CONTEXT_WARN() \
|
|
|
|
|
VL_PRINTF("%%Warning: DPI C Function called by Verilog DPI import with missing 'context' keyword.\n");
|
2009-12-03 11:55:29 +00:00
|
|
|
|
|
|
|
|
|
//======================================================================
|
2009-12-05 15:38:49 +00:00
|
|
|
|
//======================================================================
|
|
|
|
|
//======================================================================
|
|
|
|
|
// DPI ROUTINES
|
|
|
|
|
|
2009-12-03 11:55:29 +00:00
|
|
|
|
const char* svDpiVersion() {
|
2010-01-22 03:17:43 +00:00
|
|
|
|
return "1800-2005";
|
2009-12-03 11:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
// Bit-select utility functions.
|
|
|
|
|
|
|
|
|
|
svBit svGetBitselBit(const svBitVecVal* s, int i) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
svLogic svGetBitselLogic(const svLogicVecVal* s, int i) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void svPutBitselBit(svBitVecVal* d, int i, svBit s) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutBitselLogic(svLogicVecVal* d, int i, svLogic s) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void svGetPartselBit(svBitVecVal* d, const svBitVecVal* s, int i, int w) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svGetPartselLogic(svLogicVecVal* d, const svLogicVecVal* s, int i, int w) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void svPutPartselBit(svBitVecVal* d, const svBitVecVal s, int i, int w) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
2015-02-10 02:05:27 +00:00
|
|
|
|
void svPutPartselLogic(svLogicVecVal* d, const svLogicVecVal* s, int i, int w) {
|
2009-12-03 11:55:29 +00:00
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
// Open array querying functions
|
|
|
|
|
|
|
|
|
|
int svLeft(const svOpenArrayHandle h, int d) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
int svRight(const svOpenArrayHandle h, int d) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
int svLow(const svOpenArrayHandle h, int d) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
int svHigh(const svOpenArrayHandle h, int d) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
int svIncrement(const svOpenArrayHandle h, int d) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
int svDimensions(const svOpenArrayHandle h) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *svGetArrayPtr(const svOpenArrayHandle) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int svSizeOfArray(const svOpenArrayHandle) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *svGetArrElemPtr(const svOpenArrayHandle, int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return NULL;
|
|
|
|
|
}
|
|
|
|
|
void *svGetArrElemPtr1(const svOpenArrayHandle, int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return NULL;
|
|
|
|
|
}
|
|
|
|
|
void *svGetArrElemPtr2(const svOpenArrayHandle, int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return NULL;
|
|
|
|
|
}
|
|
|
|
|
void *svGetArrElemPtr3(const svOpenArrayHandle, int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
// s=source, d=destination
|
|
|
|
|
// From user space into simulator storage
|
|
|
|
|
|
|
|
|
|
void svPutBitArrElemVecVal(const svOpenArrayHandle d, const svBitVecVal* s,
|
|
|
|
|
int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutBitArrElem1VecVal(const svOpenArrayHandle d, const svBitVecVal* s,
|
|
|
|
|
int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutBitArrElem2VecVal(const svOpenArrayHandle d, const svBitVecVal* s,
|
|
|
|
|
int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutBitArrElem3VecVal(const svOpenArrayHandle d, const svBitVecVal* s,
|
|
|
|
|
int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutLogicArrElemVecVal(const svOpenArrayHandle d, const svLogicVecVal* s,
|
|
|
|
|
int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutLogicArrElem1VecVal(const svOpenArrayHandle d, const svLogicVecVal* s,
|
|
|
|
|
int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutLogicArrElem2VecVal(const svOpenArrayHandle d, const svLogicVecVal* s,
|
|
|
|
|
int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutLogicArrElem3VecVal(const svOpenArrayHandle d, const svLogicVecVal* s,
|
|
|
|
|
int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
// From simulator storage into user space
|
|
|
|
|
|
|
|
|
|
void svGetBitArrElemVecVal(svBitVecVal* d, const svOpenArrayHandle s,
|
|
|
|
|
int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svGetBitArrElem1VecVal(svBitVecVal* d, const svOpenArrayHandle s,
|
|
|
|
|
int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svGetBitArrElem2VecVal(svBitVecVal* d, const svOpenArrayHandle s,
|
|
|
|
|
int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svGetBitArrElem3VecVal(svBitVecVal* d, const svOpenArrayHandle s,
|
|
|
|
|
int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svGetLogicArrElemVecVal(svLogicVecVal* d, const svOpenArrayHandle s,
|
|
|
|
|
int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svGetLogicArrElem1VecVal(svLogicVecVal* d, const svOpenArrayHandle s,
|
|
|
|
|
int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svGetLogicArrElem2VecVal(svLogicVecVal* d, const svOpenArrayHandle s,
|
|
|
|
|
int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svGetLogicArrElem3VecVal(svLogicVecVal* d, const svOpenArrayHandle s,
|
|
|
|
|
int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
svBit svGetBitArrElem(const svOpenArrayHandle s, int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
svBit svGetBitArrElem1(const svOpenArrayHandle s, int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
svBit svGetBitArrElem2(const svOpenArrayHandle s, int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
svBit svGetBitArrElem3(const svOpenArrayHandle s, int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return 0;
|
|
|
|
|
}
|
|
|
|
|
svLogic svGetLogicArrElem(const svOpenArrayHandle s, int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return sv_x;
|
|
|
|
|
}
|
|
|
|
|
svLogic svGetLogicArrElem1(const svOpenArrayHandle s, int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return sv_x;
|
|
|
|
|
}
|
|
|
|
|
svLogic svGetLogicArrElem2(const svOpenArrayHandle s, int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return sv_x;
|
|
|
|
|
}
|
|
|
|
|
svLogic svGetLogicArrElem3(const svOpenArrayHandle s, int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP(); return sv_x;
|
|
|
|
|
}
|
|
|
|
|
void svPutLogicArrElem(const svOpenArrayHandle d, svLogic value, int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutLogicArrElem1(const svOpenArrayHandle d, svLogic value, int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutLogicArrElem2(const svOpenArrayHandle d, svLogic value, int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutLogicArrElem3(const svOpenArrayHandle d, svLogic value, int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutBitArrElem(const svOpenArrayHandle d, svBit value, int indx1, ...) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutBitArrElem1(const svOpenArrayHandle d, svBit value, int indx1) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutBitArrElem2(const svOpenArrayHandle d, svBit value, int indx1, int indx2) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
void svPutBitArrElem3(const svOpenArrayHandle d, svBit value, int indx1, int indx2, int indx3) {
|
|
|
|
|
_VL_SVDPI_UNIMP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
// Functions for working with DPI context
|
|
|
|
|
|
|
|
|
|
svScope svGetScope() {
|
2009-12-05 15:38:49 +00:00
|
|
|
|
if (VL_UNLIKELY(!Verilated::dpiInContext())) { _VL_SVDPI_CONTEXT_WARN(); return NULL; }
|
|
|
|
|
return (svScope)Verilated::dpiScope();
|
2009-12-03 11:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
svScope svSetScope(const svScope scope) {
|
2009-12-09 02:35:15 +00:00
|
|
|
|
const VerilatedScope* prevScopep = Verilated::dpiScope();
|
2009-12-05 15:38:49 +00:00
|
|
|
|
const VerilatedScope* vscopep = (const VerilatedScope*)(scope);
|
|
|
|
|
Verilated::dpiScope(vscopep);
|
2009-12-09 02:35:15 +00:00
|
|
|
|
return (svScope)prevScopep;
|
2009-12-03 11:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-12-05 15:38:49 +00:00
|
|
|
|
const char* svGetNameFromScope(const svScope scope) {
|
|
|
|
|
const VerilatedScope* vscopep = (const VerilatedScope*)(scope);
|
|
|
|
|
return vscopep->name();
|
2009-12-03 11:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
svScope svGetScopeFromName(const char* scopeName) {
|
2009-12-05 15:38:49 +00:00
|
|
|
|
return (svScope)VerilatedImp::scopeFind(scopeName);
|
2009-12-03 11:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int svPutUserData(const svScope scope, void *userKey, void* userData) {
|
2009-12-05 15:38:49 +00:00
|
|
|
|
VerilatedImp::userInsert(scope,userKey,userData);
|
|
|
|
|
return 0;
|
2009-12-03 11:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void* svGetUserData(const svScope scope, void* userKey) {
|
2009-12-05 15:38:49 +00:00
|
|
|
|
return VerilatedImp::userFind(scope,userKey);
|
2009-12-03 11:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int svGetCallerInfo(const char** fileNamepp, int *lineNumberp) {
|
2009-12-05 15:38:49 +00:00
|
|
|
|
if (VL_UNLIKELY(!Verilated::dpiInContext())) { _VL_SVDPI_CONTEXT_WARN(); return false; }
|
|
|
|
|
if (VL_LIKELY(fileNamepp)) *fileNamepp = Verilated::dpiFilenamep(); // thread local
|
|
|
|
|
if (VL_LIKELY(lineNumberp)) *lineNumberp = Verilated::dpiLineno(); // thread local
|
|
|
|
|
return true;
|
2009-12-03 11:55:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
|
// Disables
|
|
|
|
|
|
|
|
|
|
int svIsDisabledState() {
|
|
|
|
|
return 0; // Disables not implemented
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void svAckDisabledState() {
|
|
|
|
|
// Disables not implemented
|
|
|
|
|
}
|