gem5/base
Nathan Binkert b881408ed7 Clean up the Range class and associated usages. The code was
never clear about whether the end of the range was inclusive
or exclusive.  Make it inclusive, but also provide a RangeSize()
function that will generate a Range based on a start and a size.
This, in combination with using the comparison operators, makes
almost all usages of the range not care how it is stored.

base/range.cc:
    Make the end of the range inclusive.

    start/end -> first/last
    (end seems too much like end() in stl)
base/range.hh:
    Make the end of the range inclusive.

    Fix all comparison operators so that they work correctly with
    an inclusive range.  Also, when comparing one range to another
    with <, <=, >, >=, we only look at the beginning of the range
    beacuse x <= y should be the same as x < y || x == y.  (This wasn't
    the case before.)

    Add a few functions for making a range:
    RangeSize is start and size
    RangeEx is start and end where end is exclusive
    RangeIn is start and end where end is inclusive

    start/end -> first/last
    (end seems too much like end() in stl)
dev/alpha_console.cc:
dev/baddev.cc:
dev/ide_ctrl.cc:
dev/ns_gige.cc:
dev/pciconfigall.cc:
dev/pcidev.cc:
dev/tsunami_cchip.cc:
dev/tsunami_io.cc:
dev/tsunami_pchip.cc:
dev/uart.cc:
    Use the RangeSize function to create a range.

--HG--
extra : convert_revision : 29a7eb7fce745680f1c77fefff456c2144bc3994
2004-10-22 01:34:40 -04:00
..
compression Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
loader allow the use of old console code and update elf_object not to rely on EM_ALPHA value. 2004-06-27 14:33:55 -04:00
stats fix compile 2004-08-02 15:42:25 -04:00
bitfield.hh Import changeset 2003-10-07 10:41:54 -04:00
callback.hh Fixes for bigendian platforms 2004-10-16 19:10:51 -05:00
circlebuf.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
circlebuf.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
cprintf.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
cprintf.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
cprintf_formats.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
crc.cc Clean up network header stuff and make it more generic. Use 2004-09-20 10:43:53 -04:00
crc.hh Clean up network header stuff and make it more generic. Use 2004-09-20 10:43:53 -04:00
date.cc Import changeset 2003-10-07 10:41:54 -04:00
dbl_list.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
endian.hh Import changeset 2003-10-07 10:41:54 -04:00
fast_alloc.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
fast_alloc.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
fifo_buffer.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
fifo_buffer.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
hashmap.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
hostinfo.cc Add support for getting the hostname 2003-12-15 18:24:02 -05:00
hostinfo.hh Add support for getting the hostname 2003-12-15 18:24:02 -05:00
hybrid_pred.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
hybrid_pred.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
inet.cc fix some bugs in the headers and fix checksumming. 2004-10-01 19:48:33 -04:00
inet.hh fix some bugs in the headers and fix checksumming. 2004-10-01 19:48:33 -04:00
inifile.cc Integrate Python configuration script parsing into m5 itself. 2004-08-05 02:03:47 -07:00
inifile.hh Integrate Python configuration script parsing into m5 itself. 2004-08-05 02:03:47 -07:00
intmath.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
intmath.hh Fixes for bigendian platforms 2004-10-16 19:10:51 -05:00
kgdb.h Remote debugging cleanup and internal debugging support 2004-02-03 10:50:04 -05:00
match.cc Move all of the object matching code to a shared file so it can 2004-07-30 10:47:53 -04:00
match.hh Move all of the object matching code to a shared file so it can 2004-07-30 10:47:53 -04:00
misc.cc pull from head before pushing linux tree 2004-06-22 13:48:49 -04:00
misc.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
mod_num.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
mysql.cc Move the query function to the cc file and make trace stuff work 2004-07-26 13:03:27 -04:00
mysql.hh Move the query function to the cc file and make trace stuff work 2004-07-26 13:03:27 -04:00
pollevent.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
pollevent.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
predictor.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
random.cc Make include paths explicit and update makefile accordingly. 2003-10-10 11:09:00 -07:00
random.hh Make include paths explicit and update makefile accordingly. 2003-10-10 11:09:00 -07:00
range.cc Clean up the Range class and associated usages. The code was 2004-10-22 01:34:40 -04:00
range.hh Clean up the Range class and associated usages. The code was 2004-10-22 01:34:40 -04:00
refcnt.hh Clean up network header stuff and make it more generic. Use 2004-09-20 10:43:53 -04:00
remote_gdb.cc Fixes for detailed boot, made cttz and ctlz instructions more compact, 2004-06-10 13:30:58 -04:00
remote_gdb.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
res_list.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
sat_counter.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
sat_counter.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
sched_list.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
socket.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
socket.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
statistics.cc more initial checking of stats 2004-07-22 21:31:35 -04:00
statistics.hh Make binning work with stuff other than FS_MEASURE 2004-07-06 19:22:39 -04:00
str.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
str.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
time.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
time.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
trace.cc Move all of the object matching code to a shared file so it can 2004-07-30 10:47:53 -04:00
trace.hh - Clean up and factor out all of the binning code into a 2004-08-20 11:35:31 -04:00
traceflags.py Added code using VPtr to be able to extract info from linux thread 2004-08-18 23:06:51 -04:00
userinfo.cc Function for getting username 2004-05-04 12:23:57 -04:00
userinfo.hh Function for getting username 2004-05-04 12:23:57 -04:00