gem5  v22.1.0.0
decoder.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 Google
3  * Copyright (c) The University of Virginia
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer;
10  * redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution;
13  * neither the name of the copyright holders nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #include "arch/riscv/decoder.hh"
31 #include "arch/riscv/types.hh"
32 #include "base/bitfield.hh"
33 #include "debug/Decode.hh"
34 
35 namespace gem5
36 {
37 
38 namespace RiscvISA
39 {
40 
42 {
43  aligned = true;
44  mid = false;
45  emi = 0;
46 }
47 
48 void
50 {
51  // The MSB of the upper and lower halves of a machine instruction.
52  constexpr size_t max_bit = sizeof(machInst) * 8 - 1;
53  constexpr size_t mid_bit = sizeof(machInst) * 4 - 1;
54 
55  auto inst = letoh(machInst);
56  DPRINTF(Decode, "Requesting bytes 0x%08x from address %#x\n", inst,
57  fetchPC);
58 
59  bool aligned = pc.instAddr() % sizeof(machInst) == 0;
60  if (aligned) {
61  emi = inst;
62  if (compressed(emi))
63  emi = bits(emi, mid_bit, 0);
65  instDone = true;
66  } else {
67  if (mid) {
68  assert(bits(emi, max_bit, mid_bit + 1) == 0);
69  replaceBits(emi, max_bit, mid_bit + 1, inst);
70  mid = false;
71  outOfBytes = false;
72  instDone = true;
73  } else {
74  emi = bits(inst, max_bit, mid_bit + 1);
75  mid = !compressed(emi);
76  outOfBytes = true;
78  }
79  }
80 }
81 
84 {
85  DPRINTF(Decode, "Decoding instruction 0x%08x at address %#x\n",
86  mach_inst, addr);
87 
88  StaticInstPtr &si = instMap[mach_inst];
89  if (!si)
90  si = decodeInst(mach_inst);
91 
92  DPRINTF(Decode, "Decode: Decoded %s instruction: %#x\n",
93  si->getName(), mach_inst);
94  return si;
95 }
96 
99 {
100  if (!instDone)
101  return nullptr;
102  instDone = false;
103 
104  auto &next_pc = _next_pc.as<PCState>();
105 
106  if (compressed(emi)) {
107  next_pc.npc(next_pc.instAddr() + sizeof(machInst) / 2);
108  next_pc.compressed(true);
109  } else {
110  next_pc.npc(next_pc.instAddr() + sizeof(machInst));
111  next_pc.compressed(false);
112  }
113 
114  return decode(emi, next_pc.instAddr());
115 }
116 
117 } // namespace RiscvISA
118 } // namespace gem5
#define DPRINTF(x,...)
Definition: trace.hh:186
Target & as()
Definition: pcstate.hh:72
StaticInstPtr decodeInst(ExtMachInst mach_inst)
void moreBytes(const PCStateBase &pc, Addr fetchPC) override
Feed data to the decoder.
Definition: decoder.cc:49
void reset() override
Definition: decoder.cc:41
StaticInstPtr decode(ExtMachInst mach_inst, Addr addr)
Decode a machine instruction.
Definition: decoder.cc:83
decode_cache::InstMap< ExtMachInst > instMap
Definition: decoder.hh:53
bool compressed(ExtMachInst inst)
Definition: decoder.hh:77
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:76
constexpr void replaceBits(T &val, unsigned first, unsigned last, B bit_val)
A convenience function to replace bits first to last of val with bit_val in place.
Definition: bitfield.hh:197
Bitfield< 6 > si
Definition: misc_types.hh:831
uint64_t ExtMachInst
Definition: types.hh:54
Bitfield< 4 > pc
Bitfield< 3 > addr
Definition: types.hh:84
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
T letoh(T value)
Definition: byteswap.hh:173
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147

Generated on Wed Dec 21 2022 10:22:16 for gem5 by doxygen 1.9.1