summaryrefslogtreecommitdiff
path: root/src/systemc/core
AgeCommit message (Expand)Author
2018-10-03systemc: Report an error if n <= 0 in wait(int n).Gabe Black
2018-10-03systemc: Toggle off clumping methods together in the ready list.Gabe Black
2018-10-03systemc: Store timed notifications in a list instead of a set.Gabe Black
2018-10-03systemc: Add a "changeStamp" value to the scheduler.Gabe Black
2018-10-03systemc: Raise an error when SC_METHOD, etc. is used after starting.Gabe Black
2018-10-03systemc: Keep track of more cases when we should be ready after resume.Gabe Black
2018-10-03systemc: When sensitive to an event finder, find on all interfaces.Gabe Black
2018-10-03systemc: Make Process track whether it's dynamic on its own.Gabe Black
2018-10-03systemc: Track the module who's end_of_elaboration callback we're in.Gabe Black
2018-10-03systemc: sc_spawn can create static or dynamic processes.Gabe Black
2018-10-03systemc: Improve handling of empty process handles.Gabe Black
2018-10-03systemc: Ensure all objects and events have unique names.Gabe Black
2018-10-03systemc: Make sure children of processes are recorded as such.Gabe Black
2018-10-03systemc: Clamp the time of events to the present.Gabe Black
2018-10-03systemc: Implement support for the default time unit.Gabe Black
2018-09-26systemc: Report errors when proc ctrl funcs are called during elab.Gabe Black
2018-09-26systemc: Handle sc_stop called from sc_main correctly.Gabe Black
2018-09-26systemc: Fix some issues with starvation checks.Gabe Black
2018-09-26systemc: When sc_start-ing with zero time, ensure the ready event runs.Gabe Black
2018-09-26systemc: Fix where we checked if sc_stop was called durig elaboration.Gabe Black
2018-09-26systemc: Make sure methods aren't restarted by yield.Gabe Black
2018-09-26systemc: When a thread completes, yield to the scheduler.Gabe Black
2018-09-26systemc: Implement positional binding.Gabe Black
2018-09-26systemc: Get rid of the unused warning function in sc_event_finder_t.Gabe Black
2018-09-26systemc: Use the eq pointer directly less often in the scheduler.Gabe Black
2018-09-26systemc: Make sc_process_b less hokey, and make WAIT* work.Gabe Black
2018-09-25systemc: Handle null and omitted event names.Gabe Black
2018-09-25systemc: Handle null sc_object names.Gabe Black
2018-09-25systemc: Check for time overflow in sc_start.Gabe Black
2018-09-25systemc: Handle sc_time_stamp before any sc_time is constructed.Gabe Black
2018-09-25systemc: Keep track of how sc_main completes and expose that to python.Gabe Black
2018-09-25systemc: If no sc_module_name was used, throw an error.Gabe Black
2018-09-25systemc: If an event is a delta notification, checked if it's timed.Gabe Black
2018-09-25systemc: If sc_main returns, don't do any more systemc stuff.Gabe Black
2018-09-25systemc: Clear out the scheduler more agressively and with common code.Gabe Black
2018-09-25systemc: Override notifyWork for timeout/event_and_list sensitivities.Gabe Black
2018-09-25systemc: Make sure no delta cycles are scheduled when stopping.Gabe Black
2018-09-25systemc: Make sure an immediate notification overrides a delayed one.Gabe Black
2018-09-25systemc: Improve scheduler cleanup.Gabe Black
2018-09-25systemc: Generalize gem5 style event scheduling.Gabe Black
2018-09-25systemc: Make sure sc_start waits for simulation even when starving.Gabe Black
2018-09-25systemc: Rework the init phase for the new way delta notes are handled.Gabe Black
2018-09-25systemc: Don't run the ready event inline when unpausing.Gabe Black
2018-09-25systemc: Rework how delta and timed notifications/timeouts are tracked.Gabe Black
2018-09-20systemc: When sc_start is told to run zero time, do one delta cycle.Gabe Black
2018-09-20systemc: Don't run clocked thread processes during the init phase.Gabe Black
2018-09-20systemc: Track exports and prim channels, and call their callbacks.Gabe Black
2018-09-20systemc: Fix the priority of the maximum time event.Gabe Black
2018-09-20systemc: Implement a little more of sc_time.Gabe Black
2018-09-20systemc: Implement port binding except positional binding.Gabe Black