gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
microldstop.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007 The Hewlett-Packard Development Company
3  * Copyright (c) 2015 Advanced Micro Devices, Inc.
4  * All rights reserved.
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions are
17  * met: redistributions of source code must retain the above copyright
18  * notice, this list of conditions and the following disclaimer;
19  * redistributions in binary form must reproduce the above copyright
20  * notice, this list of conditions and the following disclaimer in the
21  * documentation and/or other materials provided with the distribution;
22  * neither the name of the copyright holders nor the names of its
23  * contributors may be used to endorse or promote products derived from
24  * this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37  *
38  * Authors: Gabe Black
39  */
40 
41 #ifndef __ARCH_X86_INSTS_MICROLDSTOP_HH__
42 #define __ARCH_X86_INSTS_MICROLDSTOP_HH__
43 
45 #include "arch/x86/ldstflags.hh"
46 #include "mem/packet.hh"
47 #include "mem/request.hh"
48 #include "sim/faults.hh"
49 
50 namespace X86ISA
51 {
55  class MemOp : public X86MicroopBase
56  {
57  protected:
58  const uint8_t scale;
59  const RegIndex index;
60  const RegIndex base;
61  const uint64_t disp;
62  const uint8_t segment;
63  const uint8_t dataSize;
64  const uint8_t addressSize;
67 
68  //Constructor
69  MemOp(ExtMachInst _machInst,
70  const char * mnem, const char * _instMnem,
71  uint64_t setFlags,
72  uint8_t _scale, InstRegIndex _index, InstRegIndex _base,
73  uint64_t _disp, InstRegIndex _segment,
74  uint8_t _dataSize, uint8_t _addressSize,
75  Request::FlagsType _memFlags,
76  OpClass __opClass) :
77  X86MicroopBase(_machInst, mnem, _instMnem, setFlags, __opClass),
78  scale(_scale), index(_index.idx), base(_base.idx),
79  disp(_disp), segment(_segment.idx),
80  dataSize(_dataSize), addressSize(_addressSize),
81  memFlags(_memFlags | _segment.idx)
82  {
83  assert(_segment.idx < NUM_SEGMENTREGS);
84  foldOBit =
85  (dataSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
86  foldABit =
87  (addressSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
88  }
89  };
90 
94  class LdStOp : public MemOp
95  {
96  protected:
97  const RegIndex data;
98 
99  //Constructor
100  LdStOp(ExtMachInst _machInst,
101  const char * mnem, const char * _instMnem,
102  uint64_t setFlags,
103  uint8_t _scale, InstRegIndex _index, InstRegIndex _base,
104  uint64_t _disp, InstRegIndex _segment,
105  InstRegIndex _data,
106  uint8_t _dataSize, uint8_t _addressSize,
107  Request::FlagsType _memFlags,
108  OpClass __opClass) :
109  MemOp(_machInst, mnem, _instMnem, setFlags,
110  _scale, _index, _base, _disp, _segment,
111  _dataSize, _addressSize, _memFlags,
112  __opClass),
113  data(_data.idx)
114  {
115  }
116 
117  std::string generateDisassembly(Addr pc,
118  const SymbolTable *symtab) const;
119  };
120 
126  class LdStSplitOp : public MemOp
127  {
128  protected:
131 
132  //Constructor
134  const char * mnem, const char * _instMnem,
135  uint64_t setFlags,
136  uint8_t _scale, InstRegIndex _index, InstRegIndex _base,
137  uint64_t _disp, InstRegIndex _segment,
138  InstRegIndex _dataLow, InstRegIndex _dataHi,
139  uint8_t _dataSize, uint8_t _addressSize,
140  Request::FlagsType _memFlags,
141  OpClass __opClass) :
142  MemOp(_machInst, mnem, _instMnem, setFlags,
143  _scale, _index, _base, _disp, _segment,
144  _dataSize, _addressSize, _memFlags,
145  __opClass),
146  dataLow(_dataLow.idx),
147  dataHi(_dataHi.idx)
148  {
149  }
150 
151  std::string generateDisassembly(Addr pc,
152  const SymbolTable *symtab) const;
153  };
154 }
155 
156 #endif //__ARCH_X86_INSTS_MICROLDSTOP_HH__
const Request::FlagsType memFlags
Definition: microldstop.hh:65
Class for register indices passed to instruction constructors.
Definition: static_inst.hh:54
const RegIndex dataLow
Definition: microldstop.hh:129
uint32_t FlagsType
Definition: request.hh:90
const uint8_t segment
Definition: microldstop.hh:62
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
RegIndex foldABit
Definition: microldstop.hh:66
Bitfield< 19 > pc
Definition: misc.hh:806
uint16_t RegIndex
Definition: registers.hh:108
LdStOp(ExtMachInst _machInst, const char *mnem, const char *_instMnem, uint64_t setFlags, uint8_t _scale, InstRegIndex _index, InstRegIndex _base, uint64_t _disp, InstRegIndex _segment, InstRegIndex _data, uint8_t _dataSize, uint8_t _addressSize, Request::FlagsType _memFlags, OpClass __opClass)
Definition: microldstop.hh:100
RegIndex foldOBit
Definition: microldstop.hh:66
const RegIndex index
Definition: microldstop.hh:59
const uint8_t scale
Definition: microldstop.hh:58
const RegIndex data
Definition: microldstop.hh:97
LdStSplitOp(ExtMachInst _machInst, const char *mnem, const char *_instMnem, uint64_t setFlags, uint8_t _scale, InstRegIndex _index, InstRegIndex _base, uint64_t _disp, InstRegIndex _segment, InstRegIndex _dataLow, InstRegIndex _dataHi, uint8_t _dataSize, uint8_t _addressSize, Request::FlagsType _memFlags, OpClass __opClass)
Definition: microldstop.hh:133
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: microldstop.cc:63
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
const uint8_t dataSize
Definition: microldstop.hh:63
Base class for load and store ops using two registers, we will call them split ops for this reason...
Definition: microldstop.hh:126
Base class for memory ops.
Definition: microldstop.hh:55
const RegIndex dataHi
Definition: microldstop.hh:130
const RegIndex base
Definition: microldstop.hh:60
Declaration of the Packet class.
Base class for load and store ops using one register.
Definition: microldstop.hh:94
const uint8_t addressSize
Definition: microldstop.hh:64
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
Definition: static_inst.hh:72
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: microldstop.cc:47
MemOp(ExtMachInst _machInst, const char *mnem, const char *_instMnem, uint64_t setFlags, uint8_t _scale, InstRegIndex _index, InstRegIndex _base, uint64_t _disp, InstRegIndex _segment, uint8_t _dataSize, uint8_t _addressSize, Request::FlagsType _memFlags, OpClass __opClass)
Definition: microldstop.hh:69
const uint64_t disp
Definition: microldstop.hh:61

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