gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
utility.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2003-2005 The Regents of The University of Michigan
3  * Copyright (c) 2007 MIPS Technologies, Inc.
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 
30 #ifndef __ARCH_MIPS_UTILITY_HH__
31 #define __ARCH_MIPS_UTILITY_HH__
32 #include "arch/mips/isa_traits.hh"
33 #include "arch/mips/types.hh"
34 #include "base/logging.hh"
35 #include "base/types.hh"
36 #include "cpu/static_inst.hh"
37 #include "cpu/thread_context.hh"
38 
39 class ThreadContext;
40 
41 namespace MipsISA {
42 
43 inline PCState
44 buildRetPC(const PCState &curPC, const PCState &callPC)
45 {
46  PCState ret = callPC;
47  ret.advance();
48  ret.pc(curPC.npc());
49  return ret;
50 }
51 
53 //
54 // Floating Point Utility Functions
55 //
56 uint64_t fpConvert(ConvertType cvt_type, double fp_val);
57 double roundFP(double val, int digits);
58 double truncFP(double val);
59 
60 bool getCondCode(uint32_t fcsr, int cc);
61 uint32_t genCCVector(uint32_t fcsr, int num, uint32_t cc_val);
62 uint32_t genInvalidVector(uint32_t fcsr);
63 
64 bool isNan(void *val_ptr, int size);
65 bool isQnan(void *val_ptr, int size);
66 bool isSnan(void *val_ptr, int size);
67 
69 //
70 // Translation stuff
71 //
72 inline Addr
74 {
75  return addr & ~(PageBytes - 1);
76 }
77 
78 inline Addr
80 {
81  return (addr + PageBytes - 1) & ~(PageBytes - 1);
82 }
83 
84 void copyRegs(ThreadContext *src, ThreadContext *dest);
85 void copyMiscRegs(ThreadContext *src, ThreadContext *dest);
86 
87 inline void
89 {
90  pc.advance();
91 }
92 
93 };
94 
95 
96 #endif
MipsISA::genCCVector
uint32_t genCCVector(uint32_t fcsr, int cc_num, uint32_t cc_val)
Definition: utility.cc:116
MipsISA::truncFP
double truncFP(double val)
Definition: utility.cc:101
types.hh
MipsISA::roundFP
double roundFP(double val, int digits)
Definition: utility.cc:90
MipsISA
Definition: decoder.cc:31
MipsISA::TruncPage
Addr TruncPage(Addr addr)
Definition: utility.hh:73
GenericISA::SimplePCState::npc
Addr npc() const
Definition: types.hh:161
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
MipsISA::fpConvert
uint64_t fpConvert(ConvertType cvt_type, double fp_val)
Definition: utility.cc:46
MipsISA::advancePC
void advancePC(PCState &pc, const StaticInstPtr &inst)
Definition: utility.hh:88
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
MipsISA::RoundPage
Addr RoundPage(Addr addr)
Definition: utility.hh:79
MipsISA::isNan
bool isNan(void *val_ptr, int size)
Definition: utility.cc:142
static_inst.hh
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
GenericISA::DelaySlotPCState
Definition: types.hh:312
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
MipsISA::ConvertType
ConvertType
Definition: types.hh:44
MipsISA::PCState
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
types.hh
MipsISA::getCondCode
bool getCondCode(uint32_t fcsr, int cc_idx)
Definition: utility.cc:108
GenericISA::DelaySlotPCState::advance
void advance()
Definition: types.hh:344
MipsISA::copyMiscRegs
void copyMiscRegs(ThreadContext *src, ThreadContext *dest)
Definition: utility.cc:231
MipsISA::copyRegs
void copyRegs(ThreadContext *src, ThreadContext *dest)
Definition: utility.cc:209
MipsISA::PageBytes
const Addr PageBytes
Definition: isa_traits.hh:42
logging.hh
isa_traits.hh
GenericISA::SimplePCState::pc
Addr pc() const
Definition: types.hh:158
RefCountingPtr< StaticInst >
MipsISA::isQnan
bool isQnan(void *val_ptr, int size)
Definition: utility.cc:165
MipsISA::isSnan
bool isSnan(void *val_ptr, int size)
Definition: utility.cc:187
MipsISA::buildRetPC
PCState buildRetPC(const PCState &curPC, const PCState &callPC)
Definition: utility.hh:44
thread_context.hh
MipsISA::genInvalidVector
uint32_t genInvalidVector(uint32_t fcsr_bits)
Definition: utility.cc:128

Generated on Tue Jun 22 2021 15:28:21 for gem5 by doxygen 1.8.17