changeset 2df9c3856989 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=2df9c3856989
description:
ruby: declare variables to be unsigned in Address.hh
diffstat:
src/mem/ruby/common/Address.hh | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
diffs (73 lines):
diff -r 1aa497ac86b2 -r 2df9c3856989 src/mem/ruby/common/Address.hh
--- a/src/mem/ruby/common/Address.hh Fri Dec 20 20:34:03 2013 -0600
+++ b/src/mem/ruby/common/Address.hh Fri Dec 20 20:34:03 2013 -0600
@@ -60,11 +60,11 @@
void setAddress(physical_address_t address) { m_address = address; }
physical_address_t getAddress() const {return m_address;}
// selects bits inclusive
- physical_address_t bitSelect(int small, int big) const;
- physical_address_t bitRemove(int small, int big) const;
- physical_address_t maskLowOrderBits(int number) const;
- physical_address_t maskHighOrderBits(int number) const;
- physical_address_t shiftLowOrderBits(int number) const;
+ physical_address_t bitSelect(unsigned int small, unsigned int big) const;
+ physical_address_t bitRemove(unsigned int small, unsigned int big) const;
+ physical_address_t maskLowOrderBits(unsigned int number) const;
+ physical_address_t maskHighOrderBits(unsigned int number) const;
+ physical_address_t shiftLowOrderBits(unsigned int number) const;
physical_address_t getLineAddress() const;
physical_address_t getOffset() const;
@@ -126,10 +126,10 @@
// rips bits inclusive
inline physical_address_t
-Address::bitSelect(int small, int big) const
+Address::bitSelect(unsigned int small, unsigned int big) const
{
physical_address_t mask;
- assert((unsigned)big >= (unsigned)small);
+ assert(big >= small);
if (big >= ADDRESS_WIDTH - 1) {
return (m_address >> small);
@@ -143,10 +143,10 @@
// removes bits inclusive
inline physical_address_t
-Address::bitRemove(int small, int big) const
+Address::bitRemove(unsigned int small, unsigned int big) const
{
physical_address_t mask;
- assert((unsigned)big >= (unsigned)small);
+ assert(big >= small);
if (small >= ADDRESS_WIDTH - 1) {
return m_address;
@@ -169,7 +169,7 @@
}
inline physical_address_t
-Address::maskLowOrderBits(int number) const
+Address::maskLowOrderBits(unsigned int number) const
{
physical_address_t mask;
@@ -182,7 +182,7 @@
}
inline physical_address_t
-Address::maskHighOrderBits(int number) const
+Address::maskHighOrderBits(unsigned int number) const
{
physical_address_t mask;
@@ -195,7 +195,7 @@
}
inline physical_address_t
-Address::shiftLowOrderBits(int number) const
+Address::shiftLowOrderBits(unsigned int number) const
{
return (m_address >> number);
}
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev