diff options
author | Erik Hallnor <ehallnor@umich.edu> | 2004-03-04 14:57:57 -0500 |
---|---|---|
committer | Erik Hallnor <ehallnor@umich.edu> | 2004-03-04 14:57:57 -0500 |
commit | 7c089b2001afb93fe51b1a89456b15fd0d00c794 (patch) | |
tree | c5186e7fec84e54a093337fc96e72400a0faf6b5 /cpu/simple_cpu/simple_cpu.hh | |
parent | cfb6f8fd01e19dbd0b3ce5cfa28d6f78f617e954 (diff) | |
download | gem5-7c089b2001afb93fe51b1a89456b15fd0d00c794.tar.xz |
Copy implementations
arch/alpha/isa_desc:
Need to return fault for copy operations.
cpu/exec_context.hh:
Add temporary storage to pass source address from copy load to copy store
cpu/simple_cpu/simple_cpu.cc:
Implement copy functions.
cpu/simple_cpu/simple_cpu.hh:
Return fault
--HG--
extra : convert_revision : 98e5ce563449d6057ba45c70eece9235f1649a90
Diffstat (limited to 'cpu/simple_cpu/simple_cpu.hh')
-rw-r--r-- | cpu/simple_cpu/simple_cpu.hh | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/cpu/simple_cpu/simple_cpu.hh b/cpu/simple_cpu/simple_cpu.hh index 4bdc69ad1..9edd66ab4 100644 --- a/cpu/simple_cpu/simple_cpu.hh +++ b/cpu/simple_cpu/simple_cpu.hh @@ -247,16 +247,9 @@ class SimpleCPU : public BaseCPU // need to do this... } - void copySrcTranslate(Addr src) - { - panic("Haven't implemented Copy Src translate yet in SimpleCPU\n"); - } - - void copy(Addr dest) - { - panic("Haven't implemented Copy yet in SimpleCPU\n"); - } + Fault copySrcTranslate(Addr src); + Fault copy(Addr dest); }; #endif // __SIMPLE_CPU_HH__ |