Jump to content

DPI C++ Exported functions


Recommended Posts

Hi all,

I've been practicing with the DPI calls and was able to take full advantage of the DPI Import call. However, the DPI export does not seem to work for me. My code essentially looks like this:

// in SV

package my_dpi_pkg;

task get_value(input int idx, output longint data);

data = a[idx];

endtask : get_value

export "DPI-C" task get_value;

...

endpackage

// in C++, my_model.h

extern void get_value(int idx, long long *data)

....

// in C++, my_model.cc

void my_model::do_something() {

...

get_value(0, data);

}

However, when the C++ files compile to .o files, I get the error message, "undefined reference to get_value(..."

Any ideas on why I am seeing this error?

Thanks!!!

Billy

Link to comment
Share on other sites

For C++, you need to do

extern "C" get_value(
    int idx,
    int64_t* data);
If you you are using Questa, you should generate this header file from your SV code directly using the switch -dpiheader file.h. That way you can be sure at compile time that your arguments across the DPI match up.

One other tip about using DPI exports, make sure you use only SV tasks when your call might consume time, otherwise use stick with SV functions. There is some extra work to deal with process control if your process gets terminated.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...