public inbox for sid-cvs@sourceware.org
help / color / mirror / Atom feed
* src/sid/include ChangeLog sidattrutil.h sidbus ...
@ 2003-10-21 21:38 brolley
0 siblings, 0 replies; 2+ messages in thread
From: brolley @ 2003-10-21 21:38 UTC (permalink / raw)
To: sid-cvs
CVSROOT: /cvs/src
Module name: src
Changes by: brolley@sourceware.org 2003-10-21 21:38:24
Modified files:
sid/include : ChangeLog sidattrutil.h sidbusutil.h
sidcpuutil.h sidmiscutil.h
Log message:
2003-10-07 Dave Brolley <brolley@redhat.com>
* sidbusutil.h (passthrough_bus::target): Now 'protected'.
2003-10-07 Dave Brolley <brolley@redhat.com>
For Stan Cox <scox@redhat.com>
* sidmiscutil.h (logger): New class.
* sidattrutil.h (fixed_attribute_map_with_logging_component): Convert
to use logger.
2003-10-07 Dave Brolley <brolley@redhat.com>
* sidcpuutil.h (set_total_latency): New method of basic_cpu.
2003-10-07 Dave Brolley <brolley@redhat.com>
* sidattrutil.h (SID_LOG_PERSISTENT_BUFFER): New macro.
(SID_LOG_TRANSIENT_MALLOC_BUFFER): New macro.
(buffer_output): New member of
fixed_attribute_map_with_logging_component.
(fixed_attribute_with_logging_component): Add buffer-output attribute.
Use SID_LOG_PERSISTENT_BUFFER.
(~fixed_attribute_with_logging_component): Use
SID_LOG_PERSISTENT_BUFFER.
(log): Buffer output based on buffer_output. Use
SID_LOG_TRANSIENT_MALLOC_BUFFER.
* sidcpuutil.h (get_total_latency): New method of basic_cpu.
2003-10-07 Dave Brolley <brolley@redhat.com>
* sidattrutil.h (log): Don't use STDCTYPE for vsnprint or vasprintf.
2003-10-07 Dave Brolley <brolley@redhat.com>
For Stan Cox <scox@redhat.com>
* sidmiscutil.h (bijection::find): Add typename.
* sidbusutil.h (ro_value_control_register): New ValueType typedef.
(control_register_bus::word_write, control_register_bus::word_read):
Add typename
2003-10-07 Dave Brolley <brolley@redhat.com>
* sidattrutil.h (iostream): #include it.
(log): Use std::cerr and std::endl.
2003-10-07 Dave Brolley <brolley@redhat.com>
* sidattrutil.h (fixed_attribute_map_with_logging_component):
Initialize saved_messages and saved_levels.
(~fixed_attribute_map_with_logging_component): Output saved messages.
Delete buffer if necessary.
(log): Save message for later if output pin not connected. Otherwise
output saved messages before the new message. Use vsnprintf or
vasprintf if possible.
(check_level): New member of fixed_attribute_map_with_logging_component.
(output_saved_messages): Ditto.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/ChangeLog.diff?cvsroot=src&r1=1.48&r2=1.49
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidattrutil.h.diff?cvsroot=src&r1=1.5&r2=1.6
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidbusutil.h.diff?cvsroot=src&r1=1.13&r2=1.14
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidcpuutil.h.diff?cvsroot=src&r1=1.26&r2=1.27
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidmiscutil.h.diff?cvsroot=src&r1=1.6&r2=1.7
^ permalink raw reply [flat|nested] 2+ messages in thread
* src/sid/include ChangeLog sidattrutil.h sidbus ...
@ 2005-05-10 15:48 brolley
0 siblings, 0 replies; 2+ messages in thread
From: brolley @ 2005-05-10 15:48 UTC (permalink / raw)
To: sid-cvs
CVSROOT: /cvs/src
Module name: src
Changes by: brolley@sourceware.org 2005-05-10 15:48:22
Modified files:
sid/include : ChangeLog sidattrutil.h sidbusutil.h sidcomp.h
sidcpuutil.h
Added files:
sid/include : sidblockingutil.h
Log message:
2005-05-10 Dave Brolley <brolley@redhat.com>
* sidcpuutil.h (read_insn_memory): Only call
record_insn_memory_read_latency if --trace-counter or
--final-insn-count are specified.
(write_insn_memory): Ditto.
(read_data_memory): Ditto.
(write_data_memory): Ditto.
2005-05-10 Dave Brolley <brolley@redhat.com>
* sidcpuutil.h (record_insn_memory_read_latency): New virtual method.
(record_insn_memory_write_latency): New virtual method.
(record_data_memory_read_latency): New virtual method.
(record_data_memory_write_latency): New virtual method.
(read_insn_memory): Call record_insn_memory_read_latency.
(write_insn_memory): Call record_insn_memory_write_latency.
(read_data_memory): Call record_data_memory_read_latency.
(write_data_memory): Call record_data_memory_write_latency.
* sidattrutil.h (fixed_attribute_map_with_logging_component::check_level):
now protected and returns bool.
* sidblockingutil.h: Rework ulog levels.
* sidbusutil.h (bus_arbitrator): Rework ulog levels. Return the result
of busy_status instead of bus::busy. New methods: busy_status and
access_latency.
(perform_read): Only call set_route_busy is status is bus::ok.
(perform_write): Only call set_route_busy is status is bus::ok.
2005-05-10 Dave Brolley <brolley@redhat.com>
* sidbusutil.h (bus_arbitrator::input_interface): New class.
(bus_arbitrator::reschedule): Reschedule after the given number of
cycles.
(bus_arbitrator::arbitrate_read): New method.
(bus_arbitrator::arbitrate_write): New method.
(bus_arbitrator::prioritize_request): New virtual method.
(bus_arbitrator::perform_read): Propogate the lock from the upstream
interface to the downstream interface.
(bus_arbitrator::perform_write): Ditto.
(bus_arbitrator::lock_downstream): New virtual method.
2005-05-10 Dave Brolley <brolley@redhat.com>
* sidblockingutil.h (blocking_component): Reimplement using mutexes
for synchronization.
2005-05-10 Dave Brolley <brolley@redhat.com>
* sidcpuutil.h (basic_cpu): Inherit virtually from all base classes.
(basic_cpu::step_pin_handler): Now virtual.
(basic_cpu::{read,write}_{insn,data}_memory): No longer const. Call
handle_{insn,data}_memory_{read,write}_error for bus errors.
(basic_big_endian_cpu::{read,write_{insn,data}_memory*): No longer
const.
(basic_little_endian_cpu): Ditto.
* sidcomp.h (bus::status_t): Add 'busy'.
* sidattrutil.h: Remove unused code.
* sidblockingutil.h: New header.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidblockingutil.h.diff?cvsroot=src&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/ChangeLog.diff?cvsroot=src&r1=1.55&r2=1.56
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidattrutil.h.diff?cvsroot=src&r1=1.6&r2=1.7
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidbusutil.h.diff?cvsroot=src&r1=1.14&r2=1.15
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidcomp.h.diff?cvsroot=src&r1=1.5&r2=1.6
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/sid/include/sidcpuutil.h.diff?cvsroot=src&r1=1.29&r2=1.30
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-05-10 15:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-21 21:38 src/sid/include ChangeLog sidattrutil.h sidbus brolley
2005-05-10 15:48 brolley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).