vtophys.hh (2984:797622d7b311) vtophys.hh (4070:74449a198a44)
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;

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

42namespace AlphaISA {
43
44 PageTableEntry
45 kernel_pte_lookup(FunctionalPort *mem, Addr ptbr, AlphaISA::VAddr vaddr);
46
47 Addr vtophys(Addr vaddr);
48 Addr vtophys(ThreadContext *tc, Addr vaddr);
49
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;

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

42namespace AlphaISA {
43
44 PageTableEntry
45 kernel_pte_lookup(FunctionalPort *mem, Addr ptbr, AlphaISA::VAddr vaddr);
46
47 Addr vtophys(Addr vaddr);
48 Addr vtophys(ThreadContext *tc, Addr vaddr);
49
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);
54
55};
56#endif // __ARCH_ALPHA_VTOPHYS_H__
57
50};
51#endif // __ARCH_ALPHA_VTOPHYS_H__
52