gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
decoder.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 Google
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: Gabe Black
29  */
30 
31 #ifndef __ARCH_MIPS_DECODER_HH__
32 #define __ARCH_MIPS_DECODER_HH__
33 
35 #include "arch/mips/types.hh"
36 #include "base/misc.hh"
37 #include "base/types.hh"
38 #include "cpu/static_inst.hh"
39 
40 namespace MipsISA
41 {
42 
43 class ISA;
44 class Decoder
45 {
46  protected:
47  //The extended machine instruction being generated
49  bool instDone;
50 
51  public:
52  Decoder(ISA* isa = nullptr) : instDone(false)
53  {}
54 
55  void
57  {
58  }
59 
60  void
62  {
63  instDone = false;
64  }
65 
66  //Use this to give data to the decoder. This should be used
67  //when there is control flow.
68  void
69  moreBytes(const PCState &pc, Addr fetchPC, MachInst inst)
70  {
71  emi = inst;
72  instDone = true;
73  }
74 
75  bool
77  {
78  return true;
79  }
80 
81  bool
83  {
84  return instDone;
85  }
86 
87  void takeOverFrom(Decoder *old) {}
88 
89  protected:
92 
93  public:
95 
101  {
102  return defaultCache.decode(this, mach_inst, addr);
103  }
104 
107  {
108  if (!instDone)
109  return NULL;
110  instDone = false;
111  return decode(emi, nextPC.instAddr());
112  }
113 };
114 
115 } // namespace MipsISA
116 
117 #endif // __ARCH_MIPS_DECODER_HH__
void takeOverFrom(Decoder *old)
Definition: decoder.hh:87
void process()
Definition: decoder.hh:56
uint64_t ExtMachInst
Definition: types.hh:41
StaticInstPtr decode(MipsISA::PCState &nextPC)
Definition: decoder.hh:106
ExtMachInst emi
Definition: decoder.hh:48
ip6_addr_t addr
Definition: inet.hh:335
bool instReady()
Definition: decoder.hh:82
uint32_t MachInst
Definition: types.hh:40
Addr instAddr() const
Returns the memory address the bytes of this instruction came from.
Definition: types.hh:60
StaticInstPtr decodeInst(ExtMachInst mach_inst)
Bitfield< 4 > pc
void reset()
Definition: decoder.hh:61
static GenericISA::BasicDecodeCache defaultCache
A cache of decoded instruction objects.
Definition: decoder.hh:91
StaticInstPtr decode(ExtMachInst mach_inst, Addr addr)
Decode a machine instruction.
Definition: decoder.hh:100
StaticInstPtr decode(TheISA::Decoder *const decoder, TheISA::ExtMachInst mach_inst, Addr addr)
Decode a machine instruction.
Definition: decode_cache.cc:42
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
bool needMoreBytes()
Definition: decoder.hh:76
void moreBytes(const PCState &pc, Addr fetchPC, MachInst inst)
Definition: decoder.hh:69
Decoder(ISA *isa=nullptr)
Definition: decoder.hh:52

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