gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
static_inst.cc
Go to the documentation of this file.
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  * Authors: Steve Reinhardt
29  * Nathan Binkert
30  */
31 
32 #include "cpu/static_inst.hh"
33 
34 #include <iostream>
35 
36 #include "sim/core.hh"
37 
39 
40 using namespace std;
41 
43 {
44  if (cachedDisassembly)
45  delete cachedDisassembly;
46 }
47 
48 bool
50  TheISA::PCState &tgt) const
51 {
52  if (isDirectCtrl()) {
53  tgt = branchTarget(pc);
54  return true;
55  }
56 
57  if (isIndirectCtrl()) {
58  tgt = branchTarget(tc);
59  return true;
60  }
61 
62  return false;
63 }
64 
67 {
68  panic("StaticInst::fetchMicroop() called on instruction "
69  "that is not microcoded.");
70 }
71 
74 {
75  panic("StaticInst::branchTarget() called on instruction "
76  "that is not a PC-relative branch.");
77  M5_DUMMY_RETURN;
78 }
79 
82 {
83  panic("StaticInst::branchTarget() called on instruction "
84  "that is not an indirect branch.");
85  M5_DUMMY_RETURN;
86 }
87 
88 const string &
90 {
91  if (!cachedDisassembly)
92  cachedDisassembly = new string(generateDisassembly(pc, symtab));
93 
94  return *cachedDisassembly;
95 }
96 
97 void
98 StaticInst::printFlags(std::ostream &outs,
99  const std::string &separator) const
100 {
101  bool printed_a_flag = false;
102 
103  for (unsigned int flag = IsNop; flag < Num_Flags; flag++) {
104  if (flags[flag]) {
105  if (printed_a_flag)
106  outs << separator;
107 
108  outs << FlagsStrings[flag];
109  printed_a_flag = true;
110  }
111  }
112 }
#define panic(...)
Definition: misc.hh:153
virtual const std::string & disassemble(Addr pc, const SymbolTable *symtab=0) const
Return string representation of disassembled instruction.
Definition: static_inst.cc:89
bool hasBranchTarget(const TheISA::PCState &pc, ThreadContext *tc, TheISA::PCState &tgt) const
Return true if the instruction is a control transfer, and if so, return the target address as well...
Definition: static_inst.cc:49
virtual StaticInstPtr fetchMicroop(MicroPC upc) const
Return the microop that goes with a particular micropc.
Definition: static_inst.cc:66
virtual ~StaticInst()
Definition: static_inst.cc:42
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void printFlags(std::ostream &outs, const std::string &separator) const
Print a separator separated list of this instruction's set flag names on the given stream...
Definition: static_inst.cc:98
uint16_t MicroPC
Definition: types.hh:144
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
GenericISA::SimplePCState< MachInst > PCState
Definition: types.hh:43
IntReg pc
Definition: remote_gdb.hh:91
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
Definition: static_inst.hh:197
virtual TheISA::PCState branchTarget(const TheISA::PCState &pc) const
Return the target address for a PC-relative branch.
Definition: static_inst.cc:73

Generated on Fri Jun 9 2017 13:03:38 for gem5 by doxygen 1.8.6