microldstop.hh (10467:dcf27c8220ac) microldstop.hh (11329:82bb3ee706b3)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * Copyright (c) 2015 Advanced Micro Devices, Inc.
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are
16 * met: redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer;
18 * redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution;
21 * neither the name of the copyright holders nor the names of its
22 * contributors may be used to endorse or promote products derived from
23 * this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Gabe Black
38 */
39
40#ifndef __ARCH_X86_INSTS_MICROLDSTOP_HH__
41#define __ARCH_X86_INSTS_MICROLDSTOP_HH__
42
43#include "arch/x86/insts/microop.hh"
44#include "arch/x86/ldstflags.hh"
45#include "mem/packet.hh"
46#include "mem/request.hh"
47#include "sim/faults.hh"
48
49namespace X86ISA
50{
51 /**
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
44#include "arch/x86/insts/microop.hh"
45#include "arch/x86/ldstflags.hh"
46#include "mem/packet.hh"
47#include "mem/request.hh"
48#include "sim/faults.hh"
49
50namespace X86ISA
51{
52 /**
52 * Base class for load and store ops
53 * Base class for memory ops
53 */
54 */
54 class LdStOp : public X86MicroopBase
55 class MemOp : public X86MicroopBase
55 {
56 protected:
57 const uint8_t scale;
58 const RegIndex index;
59 const RegIndex base;
60 const uint64_t disp;
61 const uint8_t segment;
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;
62 const RegIndex data;
63 const uint8_t dataSize;
64 const uint8_t addressSize;
65 const Request::FlagsType memFlags;
66 RegIndex foldOBit, foldABit;
67
68 //Constructor
63 const uint8_t dataSize;
64 const uint8_t addressSize;
65 const Request::FlagsType memFlags;
66 RegIndex foldOBit, foldABit;
67
68 //Constructor
69 LdStOp(ExtMachInst _machInst,
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,
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 InstRegIndex _data,
75 uint8_t _dataSize, uint8_t _addressSize,
76 Request::FlagsType _memFlags,
77 OpClass __opClass) :
78 X86MicroopBase(_machInst, mnem, _instMnem, setFlags, __opClass),
79 scale(_scale), index(_index.idx), base(_base.idx),
80 disp(_disp), segment(_segment.idx),
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),
81 data(_data.idx),
82 dataSize(_dataSize), addressSize(_addressSize),
83 memFlags(_memFlags | _segment.idx)
84 {
85 assert(_segment.idx < NUM_SEGMENTREGS);
80 dataSize(_dataSize), addressSize(_addressSize),
81 memFlags(_memFlags | _segment.idx)
82 {
83 assert(_segment.idx < NUM_SEGMENTREGS);
86 foldOBit = (dataSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
84 foldOBit =
85 (dataSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
87 foldABit =
88 (addressSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
89 }
86 foldABit =
87 (addressSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
88 }
89 };
90
90
91 /**
92 * Base class for load and store ops using one register
93 */
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
91 std::string generateDisassembly(Addr pc,
92 const SymbolTable *symtab) const;
93 };
117 std::string generateDisassembly(Addr pc,
118 const SymbolTable *symtab) const;
119 };
120
121 /**
122 * Base class for load and store ops using two registers, we will
123 * call them split ops for this reason. These are mainly used to
124 * implement cmpxchg8b and cmpxchg16b.
125 */
126 class LdStSplitOp : public MemOp
127 {
128 protected:
129 const RegIndex dataLow;
130 const RegIndex dataHi;
131
132 //Constructor
133 LdStSplitOp(ExtMachInst _machInst,
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 };
94}
95
96#endif //__ARCH_X86_INSTS_MICROLDSTOP_HH__
154}
155
156#endif //__ARCH_X86_INSTS_MICROLDSTOP_HH__