SE/FS: Remove the last references to FULL_SYSTEM from POWER.

This commit is contained in:
Gabe Black
2011-10-30 03:55:24 -07:00
parent 6dc3cedc4e
commit b144f05b53
2 changed files with 12 additions and 13 deletions

View File

@@ -41,7 +41,10 @@ if env['TARGET_ISA'] == 'power':
Source('insts/condition.cc')
Source('insts/static_inst.cc')
Source('interrupts.cc')
Source('linux/linux.cc')
Source('linux/process.cc')
Source('pagetable.cc')
Source('process.cc')
Source('tlb.cc')
Source('utility.cc')
Source('vtophys.cc')
@@ -51,11 +54,6 @@ if env['TARGET_ISA'] == 'power':
DebugFlag('Power')
if not env['FULL_SYSTEM']:
Source('process.cc')
Source('linux/linux.cc')
Source('linux/process.cc')
# Add in files generated by the ISA description.
isa_desc_files = env.ISADesc('isa/main.isa')

View File

@@ -50,6 +50,7 @@
#include "debug/TLB.hh"
#include "mem/page_table.hh"
#include "params/PowerTLB.hh"
#include "sim/full_system.hh"
#include "sim/process.hh"
using namespace std;
@@ -310,14 +311,14 @@ TLB::translateData(RequestPtr req, ThreadContext *tc, bool write)
Fault
TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode)
{
#if !FULL_SYSTEM
if (mode == Execute)
return translateInst(req, tc);
else
return translateData(req, tc, mode == Write);
#else
fatal("translate atomic not yet implemented\n");
#endif
if (FullSystem) {
fatal("translate atomic not yet implemented in full system mode.\n");
} else {
if (mode == Execute)
return translateInst(req, tc);
else
return translateData(req, tc, mode == Write);
}
}
void