iverilog/vvp/file_line.cc

94 lines
2.6 KiB
C++
Raw Normal View History

2011-03-02 18:43:20 +01:00
/*
* Copyright (C) 2011-2012 Cary R. (cygcary@yahoo.com)
2011-03-02 18:43:20 +01:00
*
* This program is free software; you can redistribute it and/or modify
* it 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"
struct __vpiFileLine : public __vpiHandle {
__vpiFileLine();
int get_type_code(void) const;
int vpi_get(int code);
char* vpi_get_str(int code);
2011-03-02 18:43:20 +01:00
const char *description;
unsigned file_idx;
unsigned lineno;
};
bool show_file_line = false;
bool code_is_instrumented = false;
2011-03-02 18:43:20 +01:00
static int file_line_get(int type, vpiHandle ref)
{
struct __vpiFileLine*rfp = dynamic_cast<__vpiFileLine*>(ref);
assert(rfp);
2011-03-02 18:43:20 +01:00
switch (type) {
case vpiLineNo:
return rfp->lineno;
default:
return vpiUndefined;
}
}
static char *file_line_get_str(int type, vpiHandle ref)
{
struct __vpiFileLine*rfp = dynamic_cast<__vpiFileLine*>(ref);
assert(rfp);
2011-03-02 18:43:20 +01:00
switch (type) {
case vpiFile:
assert(rfp->file_idx < file_names.size());
return simple_set_rbuf_str(file_names[rfp->file_idx]);
case _vpiDescription:
if (rfp->description) return simple_set_rbuf_str(rfp->description);
else return simple_set_rbuf_str("Procedural tracing.");
default:
return 0;
}
}
inline __vpiFileLine::__vpiFileLine()
{ }
int __vpiFileLine::get_type_code(void) const
{ return _vpiFileLine; }
int __vpiFileLine::vpi_get(int code)
{ return file_line_get(code, this); }
char* __vpiFileLine::vpi_get_str(int code)
{ return file_line_get_str(code, this); }
2011-03-02 18:43:20 +01:00
vpiHandle vpip_build_file_line(char*description, long file_idx, long lineno)
{
struct __vpiFileLine*obj = new struct __vpiFileLine;
/* Turn on the diagnostic output when we find a %file_line. */
show_file_line = true;
code_is_instrumented = true;
2011-03-02 18:43:20 +01:00
if (description) obj->description = vpip_name_string(description);
else obj->description = 0;
obj->file_idx = (unsigned) file_idx;
obj->lineno = (unsigned) lineno;
return obj;
2011-03-02 18:43:20 +01:00
}