diff --git a/arch/alpha/alpha_memory.cc b/arch/alpha/alpha_memory.cc index 0f9ad2cfc..00e97250f 100644 --- a/arch/alpha/alpha_memory.cc +++ b/arch/alpha/alpha_memory.cc @@ -90,8 +90,17 @@ AlphaTlb::checkCacheability(MemReqPtr &req) if (req->paddr & PA_UNCACHED_BIT) { if (PA_IPR_SPACE(req->paddr)) { // IPR memory space not implemented - if (!req->xc->misspeculating()) - panic("IPR memory space not implemented! PA=%x\n", req->paddr); + if (!req->xc->misspeculating()) { + switch (req->paddr) { + case 0xFFFFF00188: + req->data = 0; + break; + + default: + panic("IPR memory space not implemented! PA=%x\n", + req->paddr); + } + } } else { // mark request as uncacheable req->flags |= UNCACHEABLE; diff --git a/base/range.hh b/base/range.hh index 34bd34136..d72aa9755 100644 --- a/base/range.hh +++ b/base/range.hh @@ -62,6 +62,10 @@ struct Range invalidate(); } + Range(T first, T second) + : start(first), end(second) + {} + template Range(const Range &r) : start(r.start), end(r.end) @@ -100,11 +104,18 @@ struct Range } void invalidate() { start = 0; end = 0; } - bool size() const { return end - start; } + T size() const { return end - start; } bool valid() const { return start < end; } }; -template +template +inline Range +make_range(T start, T end) +{ + return Range(start, end); +} + +template inline std::ostream & operator<<(std::ostream &o, const Range &r) { @@ -124,7 +135,7 @@ operator<<(std::ostream &o, const Range &r) * @param range2 is a range. * @return if range1 and range2 are identical. */ -template +template inline bool operator==(const Range &range1, const Range &range2) { @@ -137,7 +148,7 @@ operator==(const Range &range1, const Range &range2) * @param range2 is a range. * @return if range1 and range2 are not identical. */ -template +template inline bool operator!=(const Range &range1, const Range &range2) { @@ -150,7 +161,7 @@ operator!=(const Range &range1, const Range &range2) * @param range2 is a range. * @return if range1 is less than range2 and does not overlap range1. */ -template +template inline bool operator<(const Range &range1, const Range &range2) { @@ -164,7 +175,7 @@ operator<(const Range &range1, const Range &range2) * @return if range1 is less than range2. range1 may overlap range2, * but not extend beyond the end of range2. */ -template +template inline bool operator<=(const Range &range1, const Range &range2) { @@ -177,7 +188,7 @@ operator<=(const Range &range1, const Range &range2) * @param range2 is a range. * @return if range1 is greater than range2 and does not overlap range2. */ -template +template inline bool operator>(const Range &range1, const Range &range2) { @@ -191,7 +202,7 @@ operator>(const Range &range1, const Range &range2) * @return if range1 is greater than range2. range1 may overlap range2, * but not extend beyond the beginning of range2. */ -template +template inline bool operator>=(const Range &range1, const Range &range2) { @@ -209,7 +220,7 @@ operator>=(const Range &range1, const Range &range2) * @param range range compared against. * @return indicates that position pos is within the range. */ -template +template inline bool operator==(const T &pos, const Range &range) { @@ -222,7 +233,7 @@ operator==(const T &pos, const Range &range) * @param range range compared against. * @return indicates that position pos is not within the range. */ -template +template inline bool operator!=(const T &pos, const Range &range) { @@ -235,7 +246,7 @@ operator!=(const T &pos, const Range &range) * @param range range compared against. * @return indicates that position pos is below the range. */ -template +template inline bool operator<(const T &pos, const Range &range) { @@ -248,7 +259,7 @@ operator<(const T &pos, const Range &range) * @param range range compared against. * @return indicates that position pos is below or in the range. */ -template +template inline bool operator<=(const T &pos, const Range &range) { @@ -261,7 +272,7 @@ operator<=(const T &pos, const Range &range) * @param range range compared against. * @return indicates that position pos is above the range. */ -template +template inline bool operator>(const T &pos, const Range &range) { @@ -274,7 +285,7 @@ operator>(const T &pos, const Range &range) * @param range range compared against. * @return indicates that position pos is above or in the range. */ -template +template inline bool operator>=(const T &pos, const Range &range) { @@ -292,7 +303,7 @@ operator>=(const T &pos, const Range &range) * @param pos position compared to the range. * @return indicates that position pos is within the range. */ -template +template inline bool operator==(const Range &range, const U &pos) { @@ -305,7 +316,7 @@ operator==(const Range &range, const U &pos) * @param pos position compared to the range. * @return indicates that position pos is not within the range. */ -template +template inline bool operator!=(const Range &range, const U &pos) { @@ -318,7 +329,7 @@ operator!=(const Range &range, const U &pos) * @param pos position compared to the range. * @return indicates that position pos is above the range. */ -template +template inline bool operator<(const Range &range, const U &pos) { @@ -331,7 +342,7 @@ operator<(const Range &range, const U &pos) * @param pos position compared to the range. * @return indicates that position pos is above or in the range. */ -template +template inline bool operator<=(const Range &range, const U &pos) { @@ -344,7 +355,7 @@ operator<=(const Range &range, const U &pos) * @param pos position compared to the range. * 'range > pos' indicates that position pos is below the range. */ -template +template inline bool operator>(const Range &range, const U &pos) { @@ -357,7 +368,7 @@ operator>(const Range &range, const U &pos) * @param pos position compared to the range. * 'range >= pos' indicates that position pos is below or in the range. */ -template +template inline bool operator>=(const Range &range, const U &pos) {