macromem.hh revision 6726
1/* Copyright (c) 2007-2008 The Florida State University
2 * All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in the
10 * documentation and/or other materials provided with the distribution;
11 * neither the name of the copyright holders nor the names of its
12 * contributors may be used to endorse or promote products derived from
13 * this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
27 * Authors: Stephen Hines
28 */
29#ifndef __ARCH_ARM_MACROMEM_HH__
30#define __ARCH_ARM_MACROMEM_HH__
31
32#include "arch/arm/insts/pred_inst.hh"
33
34namespace ArmISA
35{
36
37static inline unsigned int
38number_of_ones(int32_t val)
39{
40    uint32_t ones = 0;
41    for (int i = 0; i < 32; i++ )
42    {
43        if ( val & (1<<i) )
44            ones++;
45    }
46    return ones;
47}
48
49/**
50 * Microops of the form IntRegA = IntRegB op Imm
51 */
52class MicroIntOp : public PredOp
53{
54  protected:
55    RegIndex ura, urb;
56    uint8_t imm;
57
58    MicroIntOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
59               RegIndex _ura, RegIndex _urb, uint8_t _imm)
60            : PredOp(mnem, machInst, __opClass),
61              ura(_ura), urb(_urb), imm(_imm)
62    {
63    }
64};
65
66/**
67 * Memory microops which use IntReg + Imm addressing
68 */
69class MicroMemOp : public MicroIntOp
70{
71  protected:
72    unsigned memAccessFlags;
73
74    MicroMemOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
75               RegIndex _ura, RegIndex _urb, uint8_t _imm)
76            : MicroIntOp(mnem, machInst, __opClass, _ura, _urb, _imm),
77              memAccessFlags(0)
78    {
79    }
80};
81
82/**
83 * Arm Macro Memory operations like LDM/STM
84 */
85class ArmMacroMemoryOp : public PredMacroOp
86{
87  protected:
88    /// Memory request flags.  See mem_req_base.hh.
89    unsigned memAccessFlags;
90
91    uint32_t reglist;
92    uint32_t ones;
93
94    ArmMacroMemoryOp(const char *mnem, ExtMachInst _machInst,
95                     OpClass __opClass)
96            : PredMacroOp(mnem, _machInst, __opClass), memAccessFlags(0),
97              reglist(machInst.regList), ones(0)
98    {
99        ones = number_of_ones(reglist);
100        numMicroops = ones + machInst.puswl.writeback + 1;
101        // Remember that writeback adds a uop
102        microOps = new StaticInstPtr[numMicroops];
103    }
104};
105
106/**
107 * Arm Macro FPA operations to fix ldfd and stfd instructions
108 */
109class ArmMacroFPAOp : public PredMacroOp
110{
111  protected:
112    uint32_t puswl,
113             prepost,
114             up,
115             psruser,
116             writeback,
117             loadop;
118    int32_t disp8;
119
120    ArmMacroFPAOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
121        : PredMacroOp(mnem, _machInst, __opClass),
122                      puswl(machInst.puswl),
123                      prepost(machInst.puswl.prepost),
124                      up(machInst.puswl.up),
125                      psruser(machInst.puswl.psruser),
126                      writeback(machInst.puswl.writeback),
127                      loadop(machInst.puswl.loadOp),
128                      disp8(machInst.immed7_0 << 2)
129    {
130        numMicroops = 3 + writeback;
131        microOps = new StaticInstPtr[numMicroops];
132    }
133};
134
135/**
136 * Arm Macro FM operations to fix lfm and sfm
137 */
138class ArmMacroFMOp : public PredMacroOp
139{
140  protected:
141    uint32_t punwl,
142             prepost,
143             up,
144             n1bit,
145             writeback,
146             loadop,
147             n0bit,
148             count;
149    int32_t disp8;
150
151    ArmMacroFMOp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
152        : PredMacroOp(mnem, _machInst, __opClass),
153                      punwl(machInst.punwl),
154                      prepost(machInst.puswl.prepost),
155                      up(machInst.puswl.up),
156                      n1bit(machInst.opcode22),
157                      writeback(machInst.puswl.writeback),
158                      loadop(machInst.puswl.loadOp),
159                      n0bit(machInst.opcode15),
160                      disp8(machInst.immed7_0 << 2)
161    {
162        // Transfer 1-4 registers based on n1 and n0 bits (with 00 repr. 4)
163        count = (n1bit << 1) | n0bit;
164        if (count == 0)
165            count = 4;
166        numMicroops = (3*count) + writeback;
167        microOps = new StaticInstPtr[numMicroops];
168    }
169};
170}
171
172#endif //__ARCH_ARM_INSTS_MACROMEM_HH__
173