Skip to content

Commit

Permalink
fix: enable more log
Browse files Browse the repository at this point in the history
  • Loading branch information
branylagaffe committed Sep 9, 2024
1 parent 4a85a0b commit 4fef4f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions components/uArch/CoreModel/cycle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ CoreImpl::cycle(eExceptionType aPendingInterrupt)
++theIdleCycleCount;
} else {
theIdleCycleCount = 0;
// CORE_DBG(theName << " Non-Idle" );
CORE_DBG(theName << " Non-Idle" );
}
theIdleThisCycle = true;

Expand Down Expand Up @@ -867,19 +867,19 @@ CoreImpl::currentEL()
void
CoreImpl::invalidateCache(eCacheType aType, eShareableDomain aDomain, eCachePoint aPoint)
{
// TODO
DBG_Assert(false);
}

void
CoreImpl::invalidateCache(eCacheType aType, VirtualMemoryAddress anAddress, eCachePoint aPoint)
{
// TODO
DBG_Assert(false);
}

void
CoreImpl::invalidateCache(eCacheType aType, VirtualMemoryAddress anAddress, uint32_t aSize, eCachePoint aPoint)
{
// TODO
DBG_Assert(false);
}

eAccessResult
Expand Down Expand Up @@ -938,6 +938,7 @@ CoreImpl::SystemRegisterTrap(uint8_t target_el,
// else
// AArch64.TakeException(target_el, exception,
// preferred_exception_return, vect_offset);
DBG_Assert(false);
}

std::ostream&
Expand Down
1 change: 1 addition & 0 deletions components/uArch/CoreModel/memreply.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ CoreImpl::processReply(MemOp const& anOperation)
std::set<boost::intrusive_ptr<Instruction>>::iterator iter, end;
PhysicalMemoryAddress addr(static_cast<uint64_t>(anOperation.thePAddr) & ~(theCoherenceUnit - 1));

DBG_(Dev, (<< "Processing reply for " << anOperation.theOperation << " at " << anOperation.thePAddr));
switch (anOperation.theOperation) {
case kRMWReply:
case kCASReply:
Expand Down

0 comments on commit 4fef4f3

Please sign in to comment.