utility.hh revision 2972:f84c6c5309ce
15664Sgblack@eecs.umich.edu/*
25664Sgblack@eecs.umich.edu * Copyright (c) 2003-2005 The Regents of The University of Michigan
35664Sgblack@eecs.umich.edu * All rights reserved.
45664Sgblack@eecs.umich.edu *
55664Sgblack@eecs.umich.edu * Redistribution and use in source and binary forms, with or without
65664Sgblack@eecs.umich.edu * modification, are permitted provided that the following conditions are
75664Sgblack@eecs.umich.edu * met: redistributions of source code must retain the above copyright
85664Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer;
95664Sgblack@eecs.umich.edu * redistributions in binary form must reproduce the above copyright
105664Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the
115664Sgblack@eecs.umich.edu * documentation and/or other materials provided with the distribution;
125664Sgblack@eecs.umich.edu * neither the name of the copyright holders nor the names of its
135664Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
145664Sgblack@eecs.umich.edu * this software without specific prior written permission.
155664Sgblack@eecs.umich.edu *
165664Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
175664Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
185664Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
195664Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
205664Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
215664Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
225664Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
235664Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
245664Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
255664Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
265664Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
275664Sgblack@eecs.umich.edu *
285664Sgblack@eecs.umich.edu * Authors: Nathan Binkert
295664Sgblack@eecs.umich.edu *          Steve Reinhardt
305664Sgblack@eecs.umich.edu */
315664Sgblack@eecs.umich.edu
325664Sgblack@eecs.umich.edu#ifndef __ARCH_ALPHA_UTILITY_HH__
335664Sgblack@eecs.umich.edu#define __ARCH_ALPHA_UTILITY_HH__
345664Sgblack@eecs.umich.edu
355664Sgblack@eecs.umich.edu#include "config/full_system.hh"
365664Sgblack@eecs.umich.edu#include "arch/alpha/types.hh"
375664Sgblack@eecs.umich.edu#include "arch/alpha/isa_traits.hh"
385664Sgblack@eecs.umich.edu#include "arch/alpha/regfile.hh"
395664Sgblack@eecs.umich.edu#include "base/misc.hh"
405664Sgblack@eecs.umich.edu
415664Sgblack@eecs.umich.edunamespace AlphaISA
425664Sgblack@eecs.umich.edu{
435664Sgblack@eecs.umich.edu
445664Sgblack@eecs.umich.edu    static inline ExtMachInst
455664Sgblack@eecs.umich.edu    makeExtMI(MachInst inst, const uint64_t &pc) {
465664Sgblack@eecs.umich.edu#if FULL_SYSTEM
475664Sgblack@eecs.umich.edu        ExtMachInst ext_inst = inst;
485664Sgblack@eecs.umich.edu        if (pc && 0x1)
495664Sgblack@eecs.umich.edu            return ext_inst|=(static_cast<ExtMachInst>(pc & 0x1) << 32);
505664Sgblack@eecs.umich.edu        else
515664Sgblack@eecs.umich.edu            return ext_inst;
525664Sgblack@eecs.umich.edu#else
53        return ExtMachInst(inst);
54#endif
55    }
56
57    inline bool isCallerSaveIntegerRegister(unsigned int reg) {
58        panic("register classification not implemented");
59        return (reg >= 1 && reg <= 8 || reg >= 22 && reg <= 25 || reg == 27);
60    }
61
62    inline bool isCalleeSaveIntegerRegister(unsigned int reg) {
63        panic("register classification not implemented");
64        return (reg >= 9 && reg <= 15);
65    }
66
67    inline bool isCallerSaveFloatRegister(unsigned int reg) {
68        panic("register classification not implemented");
69        return false;
70    }
71
72    inline bool isCalleeSaveFloatRegister(unsigned int reg) {
73        panic("register classification not implemented");
74        return false;
75    }
76
77    inline Addr alignAddress(const Addr &addr,
78                                         unsigned int nbytes) {
79        return (addr & ~(nbytes - 1));
80    }
81
82    // Instruction address compression hooks
83    inline Addr realPCToFetchPC(const Addr &addr) {
84        return addr;
85    }
86
87    inline Addr fetchPCToRealPC(const Addr &addr) {
88        return addr;
89    }
90
91    // the size of "fetched" instructions (not necessarily the size
92    // of real instructions for PISA)
93    inline size_t fetchInstSize() {
94        return sizeof(MachInst);
95    }
96
97    inline MachInst makeRegisterCopy(int dest, int src) {
98        panic("makeRegisterCopy not implemented");
99        return 0;
100    }
101
102    // Machine operations
103
104    void saveMachineReg(AnyReg &savereg, const RegFile &reg_file,
105                               int regnum);
106
107    void restoreMachineReg(RegFile &regs, const AnyReg &reg,
108                                  int regnum);
109
110    /**
111     * Function to insure ISA semantics about 0 registers.
112     * @param tc The thread context.
113     */
114    template <class TC>
115    void zeroRegisters(TC *tc);
116
117#if FULL_SYSTEM
118    // Alpha IPR register accessors
119    inline bool PcPAL(Addr addr) { return addr & 0x1; }
120
121    ////////////////////////////////////////////////////////////////////////
122    //
123    //  Translation stuff
124    //
125
126    inline Addr PteAddr(Addr a) { return (a & PteMask) << PteShift; }
127
128    // User Virtual
129    inline bool IsUSeg(Addr a) { return USegBase <= a && a <= USegEnd; }
130
131    // Kernel Direct Mapped
132    inline bool IsK0Seg(Addr a) { return K0SegBase <= a && a <= K0SegEnd; }
133    inline Addr K0Seg2Phys(Addr addr) { return addr & ~K0SegBase; }
134
135    // Kernel Virtual
136    inline bool IsK1Seg(Addr a) { return K1SegBase <= a && a <= K1SegEnd; }
137
138    inline Addr
139    TruncPage(Addr addr)
140    { return addr & ~(PageBytes - 1); }
141
142    inline Addr
143    RoundPage(Addr addr)
144    { return (addr + PageBytes - 1) & ~(PageBytes - 1); }
145
146    void initCPU(ThreadContext *tc, int cpuId);
147    void initIPRs(ThreadContext *tc, int cpuId);
148
149    /**
150     * Function to check for and process any interrupts.
151     * @param tc The thread context.
152     */
153    template <class TC>
154    void processInterrupts(TC *tc);
155#endif
156
157} // namespace AlphaISA
158
159#endif
160