From 16882b04838c33e7de5456937b8b069547827b2a Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 7 Aug 2011 09:21:48 -0700 Subject: Translation: Use a pointer type as the template argument. This allows regular pointers and reference counted pointers without having to use any shim structures or other tricks. --- src/cpu/base_dyn_inst.hh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/cpu/base_dyn_inst.hh') diff --git a/src/cpu/base_dyn_inst.hh b/src/cpu/base_dyn_inst.hh index 18a178c4a..cb9294481 100644 --- a/src/cpu/base_dyn_inst.hh +++ b/src/cpu/base_dyn_inst.hh @@ -91,6 +91,7 @@ class BaseDynInst : public FastAlloc, public RefCounted // The DynInstPtr type. typedef typename Impl::DynInstPtr DynInstPtr; + typedef RefCountingPtr > BaseDynInstPtr; // The list of instructions iterator type. typedef typename std::list::iterator ListIt; @@ -950,8 +951,8 @@ BaseDynInst::initiateTranslation(RequestPtr req, RequestPtr sreqLow, new WholeTranslationState(req, NULL, res, mode); // One translation if the request isn't split. - DataTranslation > *trans = - new DataTranslation >(this, state); + DataTranslation *trans = + new DataTranslation(this, state); cpu->dtb->translateTiming(req, thread->getTC(), trans, mode); if (!translationCompleted) { // Save memory requests. @@ -964,10 +965,10 @@ BaseDynInst::initiateTranslation(RequestPtr req, RequestPtr sreqLow, new WholeTranslationState(req, sreqLow, sreqHigh, NULL, res, mode); // Two translations when the request is split. - DataTranslation > *stransLow = - new DataTranslation >(this, state, 0); - DataTranslation > *stransHigh = - new DataTranslation >(this, state, 1); + DataTranslation *stransLow = + new DataTranslation(this, state, 0); + DataTranslation *stransHigh = + new DataTranslation(this, state, 1); cpu->dtb->translateTiming(sreqLow, thread->getTC(), stransLow, mode); cpu->dtb->translateTiming(sreqHigh, thread->getTC(), stransHigh, mode); -- cgit v1.2.3