cpu: Delete authors lists from the cpu directory.
[gem5.git] / src / cpu / static_inst.cc
1 /*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 #include "cpu/static_inst.hh"
30
31 #include <iostream>
32
33 #include "sim/core.hh"
34
35 namespace {
36
37 static TheISA::ExtMachInst nopMachInst;
38
39 class NopStaticInst : public StaticInst
40 {
41 public:
42 NopStaticInst() : StaticInst("gem5 nop", nopMachInst, No_OpClass)
43 {}
44
45 Fault
46 execute(ExecContext *xc, Trace::InstRecord *traceData) const override
47 {
48 return NoFault;
49 }
50
51 void
52 advancePC(TheISA::PCState &pcState) const override
53 {
54 pcState.advance();
55 }
56
57 std::string
58 generateDisassembly(Addr pc, const SymbolTable *symtab) const override
59 {
60 return mnemonic;
61 }
62
63 private:
64 };
65
66 }
67
68 StaticInstPtr StaticInst::nullStaticInstPtr;
69 StaticInstPtr StaticInst::nopStaticInstPtr = new NopStaticInst;
70
71 using namespace std;
72
73 StaticInst::~StaticInst()
74 {
75 if (cachedDisassembly)
76 delete cachedDisassembly;
77 }
78
79 bool
80 StaticInst::hasBranchTarget(const TheISA::PCState &pc, ThreadContext *tc,
81 TheISA::PCState &tgt) const
82 {
83 if (isDirectCtrl()) {
84 tgt = branchTarget(pc);
85 return true;
86 }
87
88 if (isIndirectCtrl()) {
89 tgt = branchTarget(tc);
90 return true;
91 }
92
93 return false;
94 }
95
96 StaticInstPtr
97 StaticInst::fetchMicroop(MicroPC upc) const
98 {
99 panic("StaticInst::fetchMicroop() called on instruction "
100 "that is not microcoded.");
101 }
102
103 TheISA::PCState
104 StaticInst::branchTarget(const TheISA::PCState &pc) const
105 {
106 panic("StaticInst::branchTarget() called on instruction "
107 "that is not a PC-relative branch.");
108 M5_DUMMY_RETURN;
109 }
110
111 TheISA::PCState
112 StaticInst::branchTarget(ThreadContext *tc) const
113 {
114 panic("StaticInst::branchTarget() called on instruction "
115 "that is not an indirect branch.");
116 M5_DUMMY_RETURN;
117 }
118
119 const string &
120 StaticInst::disassemble(Addr pc, const SymbolTable *symtab) const
121 {
122 if (!cachedDisassembly)
123 cachedDisassembly = new string(generateDisassembly(pc, symtab));
124
125 return *cachedDisassembly;
126 }
127
128 void
129 StaticInst::printFlags(std::ostream &outs,
130 const std::string &separator) const
131 {
132 bool printed_a_flag = false;
133
134 for (unsigned int flag = IsNop; flag < Num_Flags; flag++) {
135 if (flags[flag]) {
136 if (printed_a_flag)
137 outs << separator;
138
139 outs << FlagsStrings[flag];
140 printed_a_flag = true;
141 }
142 }
143 }