vtophys.hh (2680:246e7104f744) vtophys.hh (2984:797622d7b311)
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;

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

28 * Authors: Nathan Binkert
29 * Steve Reinhardt
30 */
31
32#ifndef __ARCH_ALPHA_VTOPHYS_H__
33#define __ARCH_ALPHA_VTOPHYS_H__
34
35#include "arch/alpha/isa_traits.hh"
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;

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

28 * Authors: Nathan Binkert
29 * Steve Reinhardt
30 */
31
32#ifndef __ARCH_ALPHA_VTOPHYS_H__
33#define __ARCH_ALPHA_VTOPHYS_H__
34
35#include "arch/alpha/isa_traits.hh"
36#include "arch/alpha/pagetable.hh"
37#include "arch/alpha/utility.hh"
36
37class ThreadContext;
38class FunctionalPort;
39
40namespace AlphaISA {
41
38
39class ThreadContext;
40class FunctionalPort;
41
42namespace AlphaISA {
43
42PageTableEntry
43kernel_pte_lookup(FunctionalPort *mem, Addr ptbr, AlphaISA::VAddr vaddr);
44 PageTableEntry
45 kernel_pte_lookup(FunctionalPort *mem, Addr ptbr, AlphaISA::VAddr vaddr);
44
46
45Addr vtophys(Addr vaddr);
46Addr vtophys(ThreadContext *tc, Addr vaddr);
47 Addr vtophys(Addr vaddr);
48 Addr vtophys(ThreadContext *tc, Addr vaddr);
47
49
48void CopyOut(ThreadContext *tc, void *dst, Addr src, size_t len);
49void CopyIn(ThreadContext *tc, Addr dst, void *src, size_t len);
50void CopyStringOut(ThreadContext *tc, char *dst, Addr vaddr, size_t maxlen);
51void CopyStringIn(ThreadContext *tc, char *src, Addr vaddr);
50 void CopyOut(ThreadContext *tc, void *dst, Addr src, size_t len);
51 void CopyIn(ThreadContext *tc, Addr dst, void *src, size_t len);
52 void CopyStringOut(ThreadContext *tc, char *dst, Addr vaddr, size_t maxlen);
53 void CopyStringIn(ThreadContext *tc, char *src, Addr vaddr);
52
53};
54#endif // __ARCH_ALPHA_VTOPHYS_H__
55
54
55};
56#endif // __ARCH_ALPHA_VTOPHYS_H__
57