isa_traits.hh revision 2754:e3d023bc752c
1/*
2 * Copyright (c) 2003-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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Gabe Black
29 *          Korey Sewell
30 */
31
32#ifndef __ARCH_MIPS_ISA_TRAITS_HH__
33#define __ARCH_MIPS_ISA_TRAITS_HH__
34
35#include "arch/mips/constants.hh"
36#include "arch/mips/types.hh"
37#include "arch/mips/regfile/regfile.hh"
38#include "arch/mips/faults.hh"
39#include "arch/mips/utility.hh"
40#include "base/misc.hh"
41#include "config/full_system.hh"
42#include "sim/byteswap.hh"
43#include "sim/host.hh"
44#include "sim/faults.hh"
45
46#include <vector>
47
48class FastCPU;
49class FullCPU;
50class Checkpoint;
51class ThreadContext;
52
53namespace LittleEndianGuest {};
54
55#define TARGET_MIPS
56
57class StaticInst;
58class StaticInstPtr;
59
60class SyscallReturn {
61        public:
62           template <class T>
63           SyscallReturn(T v, bool s)
64           {
65               retval = (uint32_t)v;
66               success = s;
67           }
68
69           template <class T>
70           SyscallReturn(T v)
71           {
72               success = (v >= 0);
73               retval = (uint32_t)v;
74           }
75
76           ~SyscallReturn() {}
77
78           SyscallReturn& operator=(const SyscallReturn& s) {
79               retval = s.retval;
80               success = s.success;
81               return *this;
82           }
83
84           bool successful() { return success; }
85           uint64_t value() { return retval; }
86
87
88       private:
89           uint64_t retval;
90           bool success;
91};
92
93namespace MipsISA
94{
95    using namespace LittleEndianGuest;
96
97    static inline void setSyscallReturn(SyscallReturn return_value, RegFile *regs)
98    {
99        if (return_value.successful()) {
100            // no error
101            regs->setIntReg(SyscallSuccessReg, 0);
102            regs->setIntReg(ReturnValueReg1, return_value.value());
103        } else {
104            // got an error, return details
105            regs->setIntReg(SyscallSuccessReg, (IntReg) -1);
106            regs->setIntReg(ReturnValueReg1, -return_value.value());
107        }
108    }
109
110    StaticInstPtr decodeInst(ExtMachInst);
111
112    static inline ExtMachInst
113    makeExtMI(MachInst inst, const uint64_t &pc) {
114#if FULL_SYSTEM
115        ExtMachInst ext_inst = inst;
116        if (pc && 0x1)
117            return ext_inst|=(static_cast<ExtMachInst>(pc & 0x1) << 32);
118        else
119            return ext_inst;
120#else
121        return ExtMachInst(inst);
122#endif
123    }
124
125    /**
126     * Function to insure ISA semantics about 0 registers.
127     * @param tc The thread context.
128     */
129    template <class TC>
130    void zeroRegisters(TC *tc);
131
132    const Addr MaxAddr = (Addr)-1;
133
134    void copyRegs(ThreadContext *src, ThreadContext *dest);
135
136    // Machine operations
137
138    void saveMachineReg(AnyReg &savereg, const RegFile &reg_file,
139                               int regnum);
140
141    void restoreMachineReg(RegFile &regs, const AnyReg &reg,
142                                  int regnum);
143
144#if 0
145    static void serializeSpecialRegs(const Serializable::Proxy &proxy,
146                                     const RegFile &regs);
147
148    static void unserializeSpecialRegs(const IniFile *db,
149                                       const std::string &category,
150                                       ConfigNode *node,
151                                       RegFile &regs);
152#endif
153
154    static inline Addr alignAddress(const Addr &addr,
155                                         unsigned int nbytes) {
156        return (addr & ~(nbytes - 1));
157    }
158
159    // Instruction address compression hooks
160    static inline Addr realPCToFetchPC(const Addr &addr) {
161        return addr;
162    }
163
164    static inline Addr fetchPCToRealPC(const Addr &addr) {
165        return addr;
166    }
167
168    // the size of "fetched" instructions (not necessarily the size
169    // of real instructions for PISA)
170    static inline size_t fetchInstSize() {
171        return sizeof(MachInst);
172    }
173
174    static inline MachInst makeRegisterCopy(int dest, int src) {
175        panic("makeRegisterCopy not implemented");
176        return 0;
177    }
178
179};
180
181using namespace MipsISA;
182
183#endif // __ARCH_MIPS_ISA_TRAITS_HH__
184