utility.cc revision 6330
112837Sgabeblack@google.com/*
212837Sgabeblack@google.com * Copyright (c) 2003-2005 The Regents of The University of Michigan
312837Sgabeblack@google.com * All rights reserved.
412837Sgabeblack@google.com *
512837Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
612837Sgabeblack@google.com * modification, are permitted provided that the following conditions are
712837Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
812837Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
912837Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
1012837Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1112837Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1212837Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1312837Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1412837Sgabeblack@google.com * this software without specific prior written permission.
1512837Sgabeblack@google.com *
1612837Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1712837Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1812837Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1912837Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2012837Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2112837Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2212837Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2312837Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2412837Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2512837Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2612837Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2712837Sgabeblack@google.com *
2812837Sgabeblack@google.com * Authors: Nathan Binkert
2912837Sgabeblack@google.com *          Ali Saidi
3012837Sgabeblack@google.com */
3112837Sgabeblack@google.com
3212837Sgabeblack@google.com#include "arch/alpha/ev5.hh"
3312837Sgabeblack@google.com#include "arch/alpha/utility.hh"
3412863Sgabeblack@google.com
3512837Sgabeblack@google.com#if FULL_SYSTEM
3612837Sgabeblack@google.com#include "arch/alpha/vtophys.hh"
3712837Sgabeblack@google.com#include "mem/vport.hh"
3812837Sgabeblack@google.com#endif
3912837Sgabeblack@google.com
4012837Sgabeblack@google.comnamespace AlphaISA {
4112837Sgabeblack@google.com
4212837Sgabeblack@google.comuint64_t
4312837Sgabeblack@google.comgetArgument(ThreadContext *tc, int number, bool fp)
4412837Sgabeblack@google.com{
4512838Sgabeblack@google.com#if FULL_SYSTEM
4612837Sgabeblack@google.com    const int NumArgumentRegs = 6;
4712837Sgabeblack@google.com    if (number < NumArgumentRegs) {
4812839Sgabeblack@google.com        if (fp)
4912837Sgabeblack@google.com            return tc->readFloatRegBits(16 + number);
50        else
51            return tc->readIntReg(16 + number);
52    } else {
53        Addr sp = tc->readIntReg(StackPointerReg);
54        VirtualPort *vp = tc->getVirtPort();
55        uint64_t arg = vp->read<uint64_t>(sp +
56                           (number-NumArgumentRegs) * sizeof(uint64_t));
57        return arg;
58    }
59#else
60    panic("getArgument() is Full system only\n");
61    M5_DUMMY_RETURN;
62#endif
63}
64
65void
66copyRegs(ThreadContext *src, ThreadContext *dest)
67{
68    // First loop through the integer registers.
69    for (int i = 0; i < NumIntRegs; ++i)
70        dest->setIntReg(i, src->readIntReg(i));
71
72    // Then loop through the floating point registers.
73    for (int i = 0; i < NumFloatRegs; ++i)
74        dest->setFloatRegBits(i, src->readFloatRegBits(i));
75
76    // Copy misc. registers
77    copyMiscRegs(src, dest);
78
79    // Lastly copy PC/NPC
80    dest->setPC(src->readPC());
81    dest->setNextPC(src->readNextPC());
82}
83
84void
85copyMiscRegs(ThreadContext *src, ThreadContext *dest)
86{
87    dest->setMiscRegNoEffect(MISCREG_FPCR,
88        src->readMiscRegNoEffect(MISCREG_FPCR));
89    dest->setMiscRegNoEffect(MISCREG_UNIQ,
90        src->readMiscRegNoEffect(MISCREG_UNIQ));
91    dest->setMiscRegNoEffect(MISCREG_LOCKFLAG,
92        src->readMiscRegNoEffect(MISCREG_LOCKFLAG));
93    dest->setMiscRegNoEffect(MISCREG_LOCKADDR,
94        src->readMiscRegNoEffect(MISCREG_LOCKADDR));
95
96    copyIprs(src, dest);
97}
98
99} // namespace AlphaISA
100
101