generic-tracing: manual supply of start/stop address

This change allows to use the generic-tracing experiment with a
manually specified start/stop address.  This is necessary to use it
with more complex systems that aren't booted from a single ELF file,
such as Fiasco.OC.

Change-Id: Iafc59f56a25a1949174724fa9ae32a1eafc5922a
This commit is contained in:
Tony Demann
2014-05-19 16:46:21 +02:00
committed by Horst Schirmeier
parent 85d1f91b0e
commit 1e9da8f4e6
2 changed files with 38 additions and 16 deletions

View File

@ -12,6 +12,9 @@ class GenericTracing : public fail::ExperimentFlow {
std::string start_symbol;
std::string stop_symbol;
fail::guest_address_t start_address;
fail::guest_address_t stop_address;
std::string state_file;
std::string trace_file;
std::string elf_file;