Deleted Added
sdiff udiff text old ( 8730:0a742249f76b ) new ( 8758:8c9bd68c5a55 )
full compact
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#ifndef __ARCH_MIPS_VTOPHYS_H__
35#define __ARCH_MIPS_VTOPHYS_H__
36
37#include "arch/mips/isa_traits.hh"
38#include "arch/mips/utility.hh"
39
40class ThreadContext;
41class FunctionalPort;
42
43namespace MipsISA {
44 Addr vtophys(Addr vaddr);
45 Addr vtophys(ThreadContext *tc, Addr vaddr);
46
47};
48#endif // __ARCH_MIPS_VTOPHYS_H__
49