gem5  v21.2.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) 2013 ARM Limited
3  * Copyright (c) 2014-2015 Sven Karlsson
4  * Copyright (c) 2018 TU Dresden
5  * Copyright (c) 2020 Barkhausen Institut
6  * All rights reserved
7  *
8  * The license below extends only to copyright in the software and shall
9  * not be construed as granting a license to any other intellectual
10  * property including but not limited to intellectual property relating
11  * to a hardware implementation of the functionality of the software
12  * licensed hereunder. You may use the software subject to the license
13  * terms below provided that you ensure that this notice is replicated
14  * unmodified and in its entirety in all distributions of the software,
15  * modified or unmodified, in source code or in binary form.
16  *
17  * Copyright (c) 2016-2017 The University of Virginia
18  * All rights reserved.
19  *
20  * Redistribution and use in source and binary forms, with or without
21  * modification, are permitted provided that the following conditions are
22  * met: redistributions of source code must retain the above copyright
23  * notice, this list of conditions and the following disclaimer;
24  * redistributions in binary form must reproduce the above copyright
25  * notice, this list of conditions and the following disclaimer in the
26  * documentation and/or other materials provided with the distribution;
27  * neither the name of the copyright holders nor the names of its
28  * contributors may be used to endorse or promote products derived from
29  * this software without specific prior written permission.
30  *
31  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42  */
43 
44 #ifndef __ARCH_RISCV_UTILITY_HH__
45 #define __ARCH_RISCV_UTILITY_HH__
46 
47 #include <cmath>
48 #include <cstdint>
49 #include <sstream>
50 #include <string>
51 
52 #include "arch/riscv/regs/float.hh"
53 #include "arch/riscv/regs/int.hh"
54 #include "base/types.hh"
55 #include "cpu/reg_class.hh"
56 #include "cpu/static_inst.hh"
57 #include "cpu/thread_context.hh"
58 
59 namespace gem5
60 {
61 
62 namespace RiscvISA
63 {
64 
65 template<typename T> inline bool
67 {
68  return false;
69 }
70 
71 template<> inline bool
73 {
74  return std::isnan(val)
75  && (reinterpret_cast<uint32_t&>(val)&0x00400000);
76 }
77 
78 template<> inline bool
80 {
81  return std::isnan(val)
82  && (reinterpret_cast<uint64_t&>(val)&0x0008000000000000ULL);
83 }
84 
85 template<typename T> inline bool
87 {
88  return false;
89 }
90 
91 template<> inline bool
93 {
94  return std::isnan(val)
95  && (reinterpret_cast<uint32_t&>(val)&0x00200000);
96 }
97 
98 template<> inline bool
100 {
101  return std::isnan(val)
102  && (reinterpret_cast<uint64_t&>(val)&0x0004000000000000ULL);
103 }
104 
105 inline std::string
107 {
108  if (reg.is(IntRegClass)) {
109  if (reg.index() >= NumIntArchRegs) {
110  /*
111  * This should only happen if a instruction is being speculatively
112  * executed along a not-taken branch, and if that instruction's
113  * width was incorrectly predecoded (i.e., it was predecoded as a
114  * full instruction rather than a compressed one or vice versa).
115  * It also should only happen if a debug flag is on that prints
116  * disassembly information, so rather than panic the incorrect
117  * value is printed for debugging help.
118  */
119  std::stringstream str;
120  str << "?? (x" << reg.index() << ')';
121  return str.str();
122  }
123  return IntRegNames[reg.index()];
124  } else {
125  if (reg.index() >= NumFloatRegs) {
126  std::stringstream str;
127  str << "?? (f" << reg.index() << ')';
128  return str.str();
129  }
130  return FloatRegNames[reg.index()];
131  }
132 }
133 
134 } // namespace RiscvISA
135 } // namespace gem5
136 
137 #endif // __ARCH_RISCV_UTILITY_HH__
gem5::RiscvISA::IntRegNames
const std::vector< std::string > IntRegNames
Definition: int.hh:72
gem5::RiscvISA::NumFloatRegs
const int NumFloatRegs
Definition: float.hh:93
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:775
float.hh
gem5::RiscvISA::issignalingnan< double >
bool issignalingnan< double >(double val)
Definition: utility.hh:99
gem5::RiscvISA::isquietnan< double >
bool isquietnan< double >(double val)
Definition: utility.hh:79
gem5::RiscvISA::isquietnan
bool isquietnan(T val)
Definition: utility.hh:66
gem5::RiscvISA::registerName
std::string registerName(RegId reg)
Definition: utility.hh:106
gem5::RiscvISA::isquietnan< float >
bool isquietnan< float >(float val)
Definition: utility.hh:72
gem5::RiscvISA::issignalingnan< float >
bool issignalingnan< float >(float val)
Definition: utility.hh:92
gem5::RiscvISA::NumIntArchRegs
const int NumIntArchRegs
Definition: int.hh:58
static_inst.hh
gem5::RiscvISA::issignalingnan
bool issignalingnan(T val)
Definition: utility.hh:86
gem5::X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:92
gem5::IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:58
gem5::RiscvISA::FloatRegNames
const std::vector< std::string > FloatRegNames
Definition: float.hh:95
types.hh
reg_class.hh
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: tlb.cc:60
int.hh
thread_context.hh
gem5::RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:113

Generated on Tue Feb 8 2022 11:46:59 for gem5 by doxygen 1.8.17