vtophys.cc (8758:8c9bd68c5a55) vtophys.cc (8799:dac1e33e07b0)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 24 unchanged lines hidden (view full) ---

33
34#include <string>
35
36#include "arch/mips/vtophys.hh"
37#include "base/chunk_generator.hh"
38#include "base/trace.hh"
39#include "cpu/thread_context.hh"
40#include "debug/VtoPhys.hh"
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 24 unchanged lines hidden (view full) ---

33
34#include <string>
35
36#include "arch/mips/vtophys.hh"
37#include "base/chunk_generator.hh"
38#include "base/trace.hh"
39#include "cpu/thread_context.hh"
40#include "debug/VtoPhys.hh"
41#include "mem/vport.hh"
42
43using namespace std;
44using namespace MipsISA;
45
46Addr
47MipsISA::vtophys(Addr vaddr)
48{
49 fatal("VTOPHYS: Unimplemented on MIPS\n");
50 return 0;
51}
52
53Addr
54MipsISA::vtophys(ThreadContext *tc, Addr addr)
55{
56 fatal("VTOPHYS: Unimplemented on MIPS\n");
57}
58
41
42using namespace std;
43using namespace MipsISA;
44
45Addr
46MipsISA::vtophys(Addr vaddr)
47{
48 fatal("VTOPHYS: Unimplemented on MIPS\n");
49 return 0;
50}
51
52Addr
53MipsISA::vtophys(ThreadContext *tc, Addr addr)
54{
55 fatal("VTOPHYS: Unimplemented on MIPS\n");
56}
57