vtophys.hh (2665:a124942bacb8) vtophys.hh (2680:246e7104f744)
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;

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

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
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;

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

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
37class ExecContext;
37class ThreadContext;
38class FunctionalPort;
39
40namespace AlphaISA {
41
42PageTableEntry
43kernel_pte_lookup(FunctionalPort *mem, Addr ptbr, AlphaISA::VAddr vaddr);
44
45Addr vtophys(Addr vaddr);
38class FunctionalPort;
39
40namespace AlphaISA {
41
42PageTableEntry
43kernel_pte_lookup(FunctionalPort *mem, Addr ptbr, AlphaISA::VAddr vaddr);
44
45Addr vtophys(Addr vaddr);
46Addr vtophys(ExecContext *xc, Addr vaddr);
46Addr vtophys(ThreadContext *tc, Addr vaddr);
47
47
48void CopyOut(ExecContext *xc, void *dst, Addr src, size_t len);
49void CopyIn(ExecContext *xc, Addr dst, void *src, size_t len);
50void CopyStringOut(ExecContext *xc, char *dst, Addr vaddr, size_t maxlen);
51void CopyStringIn(ExecContext *xc, char *src, Addr vaddr);
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);
52
53};
54#endif // __ARCH_ALPHA_VTOPHYS_H__
55
52
53};
54#endif // __ARCH_ALPHA_VTOPHYS_H__
55