vtophys.hh (5568:d14250d688d2) vtophys.hh (5569:baeee670d4ce)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

36#include "arch/alpha/pagetable.hh"
37#include "arch/alpha/utility.hh"
38
39class ThreadContext;
40class FunctionalPort;
41
42namespace AlphaISA {
43
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

36#include "arch/alpha/pagetable.hh"
37#include "arch/alpha/utility.hh"
38
39class ThreadContext;
40class FunctionalPort;
41
42namespace AlphaISA {
43
44 PageTableEntry
45 kernel_pte_lookup(FunctionalPort *mem, Addr ptbr, VAddr vaddr);
44PageTableEntry kernel_pte_lookup(FunctionalPort *mem, Addr ptbr,
45 VAddr vaddr);
46
46
47 Addr vtophys(Addr vaddr);
48 Addr vtophys(ThreadContext *tc, Addr vaddr);
47Addr vtophys(Addr vaddr);
48Addr vtophys(ThreadContext *tc, Addr vaddr);
49
49
50};
50} // namespace AlphaISA
51
51#endif // __ARCH_ALPHA_VTOPHYS_H__
52
52#endif // __ARCH_ALPHA_VTOPHYS_H__
53