gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
standard.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 RISC-V Foundation
3  * Copyright (c) 2017 The University of Virginia
4  * Copyright (c) 2020 Barkhausen Institut
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met: redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer;
11  * redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution;
14  * neither the name of the copyright holders nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
32 
33 #include <sstream>
34 #include <string>
35 
37 #include "arch/riscv/utility.hh"
38 #include "cpu/static_inst.hh"
39 
40 namespace RiscvISA
41 {
42 
43 std::string
45 {
46  std::stringstream ss;
47  ss << mnemonic << ' ' << registerName(destRegIdx(0)) << ", " <<
49  if (_numSrcRegs >= 2)
50  ss << ", " << registerName(srcRegIdx(1));
51  if (_numSrcRegs >= 3)
52  ss << ", " << registerName(srcRegIdx(2));
53  return ss.str();
54 }
55 
56 std::string
58 {
59  std::stringstream ss;
60  ss << mnemonic << ' ' << registerName(destRegIdx(0)) << ", ";
61  auto data = CSRData.find(csr);
62  if (data != CSRData.end())
63  ss << data->second.name;
64  else
65  ss << "?? (" << std::hex << "0x" << csr << std::dec << ")";
66  if (_numSrcRegs > 0)
67  ss << ", " << registerName(srcRegIdx(0));
68  else
69  ss << uimm;
70  return ss.str();
71 }
72 
73 std::string
75 {
76  if (strcmp(mnemonic, "fence_vma") == 0) {
77  std::stringstream ss;
78  ss << mnemonic << ' ' << registerName(srcRegIdx(0)) << ", " <<
80  return ss.str();
81  }
82 
83  return mnemonic;
84 }
85 
86 }
StaticInst::destRegIdx
const RegId & destRegIdx(int i) const
Return logical index (architectural reg num) of i'th destination reg.
Definition: static_inst.hh:234
data
const char data[]
Definition: circlebuf.test.cc:47
RiscvISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
RiscvISA::CSROp::generateDisassembly
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: standard.cc:57
RiscvISA::SystemOp::generateDisassembly
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: standard.cc:74
Loader::SymbolTable
Definition: symtab.hh:58
RiscvISA
Definition: fs_workload.cc:37
standard.hh
StaticInst::mnemonic
const char * mnemonic
Base mnemonic (e.g., "add").
Definition: static_inst.hh:284
static_inst.hh
StaticInst::srcRegIdx
const RegId & srcRegIdx(int i) const
Return logical index (architectural reg num) of i'th source reg.
Definition: static_inst.hh:244
static_inst.hh
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
RiscvISA::RegOp::generateDisassembly
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: standard.cc:44
RiscvISA::CSROp::uimm
uint64_t uimm
Definition: standard.hh:89
RiscvISA::registerName
std::string registerName(RegId reg)
Definition: utility.hh:126
StaticInst::_numSrcRegs
int8_t _numSrcRegs
See numSrcRegs().
Definition: static_inst.hh:106
utility.hh
RiscvISA::CSROp::csr
uint64_t csr
Definition: standard.hh:88
RiscvISA::ss
Bitfield< 11, 8 > ss
Definition: pra_constants.hh:254
RiscvISA::CSRData
const std::map< int, CSRMetadata > CSRData
Definition: registers.hh:455

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