utility.hh revision 6246:5744fafb5072
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Authors: Korey Sewell
30 *          Stephen Hines
31 */
32
33#ifndef __ARCH_ARM_UTILITY_HH__
34#define __ARCH_ARM_UTILITY_HH__
35
36#include "arch/arm/miscregs.hh"
37#include "arch/arm/types.hh"
38#include "base/types.hh"
39#include "cpu/thread_context.hh"
40
41namespace ArmISA {
42
43    inline bool
44    testPredicate(CPSR cpsr, ConditionCode code)
45    {
46        switch (code)
47        {
48            case COND_EQ: return  cpsr.z;
49            case COND_NE: return !cpsr.z;
50            case COND_CS: return  cpsr.c;
51            case COND_CC: return !cpsr.c;
52            case COND_MI: return  cpsr.n;
53            case COND_PL: return !cpsr.n;
54            case COND_VS: return  cpsr.v;
55            case COND_VC: return !cpsr.v;
56            case COND_HI: return  (cpsr.c && !cpsr.z);
57            case COND_LS: return !(cpsr.c && !cpsr.z);
58            case COND_GE: return !(cpsr.n ^ cpsr.v);
59            case COND_LT: return  (cpsr.n ^ cpsr.v);
60            case COND_GT: return !(cpsr.n ^ cpsr.v || cpsr.z);
61            case COND_LE: return  (cpsr.n ^ cpsr.v || cpsr.z);
62            case COND_AL: return true;
63            case COND_NV: return false;
64            default:
65                panic("Unhandled predicate condition: %d\n", code);
66        }
67    }
68
69    /**
70     * Function to insure ISA semantics about 0 registers.
71     * @param tc The thread context.
72     */
73    template <class TC>
74    void zeroRegisters(TC *tc);
75
76    // Instruction address compression hooks
77    static inline Addr realPCToFetchPC(const Addr &addr) {
78        return addr;
79    }
80
81    static inline Addr fetchPCToRealPC(const Addr &addr) {
82        return addr;
83    }
84
85    // the size of "fetched" instructions
86    static inline size_t fetchInstSize() {
87        return sizeof(MachInst);
88    }
89
90    static inline MachInst makeRegisterCopy(int dest, int src) {
91        panic("makeRegisterCopy not implemented");
92        return 0;
93    }
94
95    inline void startupCPU(ThreadContext *tc, int cpuId)
96    {
97        tc->activate(0);
98    }
99
100    template <class XC>
101    Fault
102    checkFpEnableFault(XC *xc)
103    {
104        return NoFault;
105    }
106};
107
108
109#endif
110