62d61
< #include "base/hashmap.hh"
68,77d66
< namespace __hash_namespace {
< template<>
< struct hash<X86ISA::ExtMachInst> {
< size_t operator()(const X86ISA::ExtMachInst &emi) const {
< //Because these are all the same, return 0
< return 0;
< };
< };
< }
<
85a75,79
> inline ExtMachInst
> makeExtMI(MachInst inst, ThreadContext * xc) {
> return inst;
> }
>
134a129,133
>
> inline void startupCPU(ThreadContext *tc, int cpuId)
> {
> tc->activate(0);
> }