You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can directly write to a compressed file using gzwrite in QEMU. When dynamorio read it, it will be using gzread. This will save the space of the output, but may slowdown the write speed due to compression overhead. I am not sure about the trade off is not yet clear, so we need some testing on that.
We can directly write to a compressed file using
gzwrite
in QEMU. When dynamorio read it, it will be usinggzread
. This will save the space of the output, but may slowdown the write speed due to compression overhead. I am not sure about the trade off is not yet clear, so we need some testing on that.Where qemu performs write: https://github.com/xlab-uiuc/qemu_ECPT/blob/de63a5a4f6025cebef8d4de53e18b47ab8fefff8/tests/plugin/execlog.c#L223C12-L223C18
where dynamorio performs read: https://github.com/xlab-uiuc/dynamorio/blob/b08d8603b4350fc47ba38810f208dd852db01498/clients/drcachesim/reader/qemu_file_reader.cpp#L283
The text was updated successfully, but these errors were encountered: