2 * Copyright (c) 2012 Google
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.
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.
31 #ifndef __ARCH_SPARC_DECODER_HH__
32 #define __ARCH_SPARC_DECODER_HH__
34 #include "arch/generic/decode_cache.hh"
35 #include "arch/sparc/registers.hh"
36 #include "arch/types.hh"
37 #include "cpu/static_inst.hh"
46 // The extended machine instruction being generated
52 Decoder(ISA* isa = nullptr) : instDone(false), asi(0)
63 // Use this to give data to the predecoder. This should be used
64 // when there is control flow.
66 moreBytes(const PCState &pc, Addr fetchPC, MachInst inst)
69 // The I bit, bit 13, is used to figure out where the ASI
70 // should come from. Use that in the ExtMachInst. This is
71 // slightly redundant, but it removes the need to put a condition
72 // into all the execute functions
73 if (inst & (1 << 13)) {
74 emi |= (static_cast<ExtMachInst>(
75 asi << (sizeof(MachInst) * 8)));
77 emi |= (static_cast<ExtMachInst>(bits(inst, 12, 5))
78 << (sizeof(MachInst) * 8));
96 setContext(MiscReg _asi)
101 void takeOverFrom(Decoder *old) {}
104 /// A cache of decoded instruction objects.
105 static GenericISA::BasicDecodeCache defaultCache;
108 StaticInstPtr decodeInst(ExtMachInst mach_inst);
110 /// Decode a machine instruction.
111 /// @param mach_inst The binary instruction to decode.
112 /// @retval A pointer to the corresponding StaticInst object.
114 decode(ExtMachInst mach_inst, Addr addr)
116 return defaultCache.decode(this, mach_inst, addr);
120 decode(SparcISA::PCState &nextPC)
125 return decode(emi, nextPC.instAddr());
129 } // namespace SparcISA
131 #endif // __ARCH_SPARC_DECODER_HH__