Jump to content

Serialize TLM generic payload extensions


Recommended Posts

am looking for a way to serialize / de-serialize tlm_generic_payload objects,
particularly tlm_generic_payload extensions (TLM 2.0) without using uvm_objects

Example of setting the generic payload extension:

class my_extension : public tlm::tlm_extension<my_extension>{    
  ... // class implementation (including copy_from and clone, has operator <<)
}
  
tlm_generic_payload* gp = new tlm_generic_payload;
trans->set_extension(&my_extension);

Desired serialization example (just an example, anything that serializes will do):
 

cout <<  *trans.get_extension(0);

 

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...