SE/FS: Remove the last references to FULL_SYSTEM from POWER.
This commit is contained in:
@@ -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')
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user