140,157d139
<
< if (params()->bin_int) {
< intStartEvent = addPalFuncEvent<InterruptStartEvent>("sys_int_21");
< if (!intStartEvent)
< panic("could not find symbol: sys_int_21\n");
<
< intEndEvent = addPalFuncEvent<InterruptEndEvent>("rti_to_kern");
< if (!intEndEvent)
< panic("could not find symbol: rti_to_kern\n");
<
< intEndEvent2 = addPalFuncEvent<InterruptEndEvent>("rti_to_user");
< if (!intEndEvent2)
< panic("could not find symbol: rti_to_user\n");
<
< intEndEvent3 = addKernelFuncEvent<InterruptEndEvent>("do_softirq");
< if (!intEndEvent3)
< panic("could not find symbol: do_softirq\n");
< }
227,230d208
< Param<bool> bin;
< VectorParam<string> binned_fns;
< Param<bool> bin_int;
<
245,248c223
< INIT_PARAM_DFLT(system_rev, "Revision of system we are emulating", 1<<10),
< INIT_PARAM_DFLT(bin, "is this system to be binned", false),
< INIT_PARAM(binned_fns, "functions to be broken down and binned"),
< INIT_PARAM_DFLT(bin_int, "is interrupt code binned seperately?", true)
---
> INIT_PARAM_DFLT(system_rev, "Revision of system we are emulating", 1<<10)
266,268d240
< p->bin = bin;
< p->binned_fns = binned_fns;
< p->bin_int = bin_int;