addition.py revision 7087:fb8d5786ff30
14123Sbinkertn@umich.edu# Copyright (c) 2007 The Hewlett-Packard Development Company
24123Sbinkertn@umich.edu# All rights reserved.
34123Sbinkertn@umich.edu#
44123Sbinkertn@umich.edu# The license below extends only to copyright in the software and shall
54123Sbinkertn@umich.edu# not be construed as granting a license to any other intellectual
64123Sbinkertn@umich.edu# property including but not limited to intellectual property relating
74123Sbinkertn@umich.edu# to a hardware implementation of the functionality of the software
84123Sbinkertn@umich.edu# licensed hereunder.  You may use the software subject to the license
94123Sbinkertn@umich.edu# terms below provided that you ensure that this notice is replicated
104123Sbinkertn@umich.edu# unmodified and in its entirety in all distributions of the software,
114123Sbinkertn@umich.edu# modified or unmodified, in source code or in binary form.
124123Sbinkertn@umich.edu#
134123Sbinkertn@umich.edu# Redistribution and use in source and binary forms, with or without
144123Sbinkertn@umich.edu# modification, are permitted provided that the following conditions are
154123Sbinkertn@umich.edu# met: redistributions of source code must retain the above copyright
164123Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer;
174123Sbinkertn@umich.edu# redistributions in binary form must reproduce the above copyright
184123Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer in the
194123Sbinkertn@umich.edu# documentation and/or other materials provided with the distribution;
204123Sbinkertn@umich.edu# neither the name of the copyright holders nor the names of its
214123Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from
224123Sbinkertn@umich.edu# this software without specific prior written permission.
234123Sbinkertn@umich.edu#
244123Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
254123Sbinkertn@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
264123Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
274123Sbinkertn@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
284123Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
294123Sbinkertn@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
304123Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
314123Sbinkertn@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
324167Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
334167Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
344167Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
354123Sbinkertn@umich.edu#
364123Sbinkertn@umich.edu# Authors: Gabe Black
376214Snate@binkert.org
384123Sbinkertn@umich.edumicrocode = '''
394167Sbinkertn@umich.edudef macroop PADDB_XMM_XMM {
407823Ssteve.reinhardt@amd.com    maddi xmml, xmml, xmmlm, size=1, ext=0
417823Ssteve.reinhardt@amd.com    maddi xmmh, xmmh, xmmhm, size=1, ext=0
427823Ssteve.reinhardt@amd.com};
437823Ssteve.reinhardt@amd.com
447823Ssteve.reinhardt@amd.comdef macroop PADDB_XMM_M {
454167Sbinkertn@umich.edu    ldfp ufp1, seg, sib, "DISPLACEMENT", dataSize=8
464167Sbinkertn@umich.edu    ldfp ufp2, seg, sib, "DISPLACEMENT + 8", dataSize=8
477064Snate@binkert.org    maddi xmml, xmml, ufp1, size=1, ext=0
487823Ssteve.reinhardt@amd.com    maddi xmmh, xmmh, ufp2, size=1, ext=0
494167Sbinkertn@umich.edu};
504167Sbinkertn@umich.edu
514167Sbinkertn@umich.edudef macroop PADDB_XMM_P {
524167Sbinkertn@umich.edu    rdip t7
534167Sbinkertn@umich.edu    ldfp ufp1, seg, riprel, "DISPLACEMENT", dataSize=8
544167Sbinkertn@umich.edu    ldfp ufp2, seg, riprel, "DISPLACEMENT + 8", dataSize=8
554167Sbinkertn@umich.edu    maddi xmml, xmml, ufp1, size=1, ext=0
564167Sbinkertn@umich.edu    maddi xmmh, xmmh, ufp2, size=1, ext=0
574167Sbinkertn@umich.edu};
584167Sbinkertn@umich.edu
594167Sbinkertn@umich.edudef macroop PADDW_XMM_XMM {
604167Sbinkertn@umich.edu    maddi xmml, xmml, xmmlm, size=2, ext=0
614167Sbinkertn@umich.edu    maddi xmmh, xmmh, xmmhm, size=2, ext=0
627811Ssteve.reinhardt@amd.com};
634167Sbinkertn@umich.edu
644167Sbinkertn@umich.edudef macroop PADDW_XMM_M {
654167Sbinkertn@umich.edu    ldfp ufp1, seg, sib, "DISPLACEMENT", dataSize=8
664167Sbinkertn@umich.edu    ldfp ufp2, seg, sib, "DISPLACEMENT + 8", dataSize=8
674167Sbinkertn@umich.edu    maddi xmml, xmml, ufp1, size=2, ext=0
684167Sbinkertn@umich.edu    maddi xmmh, xmmh, ufp2, size=2, ext=0
694167Sbinkertn@umich.edu};
707811Ssteve.reinhardt@amd.com
717811Ssteve.reinhardt@amd.comdef macroop PADDW_XMM_P {
724167Sbinkertn@umich.edu    rdip t7
734167Sbinkertn@umich.edu    ldfp ufp1, seg, riprel, "DISPLACEMENT", dataSize=8
744167Sbinkertn@umich.edu    ldfp ufp2, seg, riprel, "DISPLACEMENT + 8", dataSize=8
754123Sbinkertn@umich.edu    maddi xmml, xmml, ufp1, size=2, ext=0
764123Sbinkertn@umich.edu    maddi xmmh, xmmh, ufp2, size=2, ext=0
774167Sbinkertn@umich.edu};
784123Sbinkertn@umich.edu
794123Sbinkertn@umich.edudef macroop PADDD_XMM_XMM {
804167Sbinkertn@umich.edu    maddi xmml, xmml, xmmlm, size=4, ext=0
814167Sbinkertn@umich.edu    maddi xmmh, xmmh, xmmhm, size=4, ext=0
82};
83
84def macroop PADDD_XMM_M {
85    ldfp ufp1, seg, sib, "DISPLACEMENT", dataSize=8
86    ldfp ufp2, seg, sib, "DISPLACEMENT + 8", dataSize=8
87    maddi xmml, xmml, ufp1, size=4, ext=0
88    maddi xmmh, xmmh, ufp2, size=4, ext=0
89};
90
91def macroop PADDD_XMM_P {
92    rdip t7
93    ldfp ufp1, seg, riprel, "DISPLACEMENT", dataSize=8
94    ldfp ufp2, seg, riprel, "DISPLACEMENT + 8", dataSize=8
95    maddi xmml, xmml, ufp1, size=4, ext=0
96    maddi xmmh, xmmh, ufp2, size=4, ext=0
97};
98
99def macroop PADDQ_XMM_XMM {
100    maddi xmml, xmml, xmmlm, size=8, ext=0
101    maddi xmmh, xmmh, xmmhm, size=8, ext=0
102};
103
104def macroop PADDQ_XMM_M {
105    ldfp ufp1, seg, sib, "DISPLACEMENT", dataSize=8
106    ldfp ufp2, seg, sib, "DISPLACEMENT + 8", dataSize=8
107    maddi xmml, xmml, ufp1, size=8, ext=0
108    maddi xmmh, xmmh, ufp2, size=8, ext=0
109};
110
111def macroop PADDQ_XMM_P {
112    rdip t7
113    ldfp ufp1, seg, riprel, "DISPLACEMENT", dataSize=8
114    ldfp ufp2, seg, riprel, "DISPLACEMENT + 8", dataSize=8
115    maddi xmml, xmml, ufp1, size=8, ext=0
116    maddi xmmh, xmmh, ufp2, size=8, ext=0
117};
118
119def macroop PADDSB_XMM_XMM {
120    maddi xmml, xmml, xmmlm, size=1, ext = "2 |" + Signed
121    maddi xmmh, xmmh, xmmhm, size=1, ext = "2 |" + Signed
122};
123
124def macroop PADDSB_XMM_M {
125    ldfp ufp1, seg, sib, "DISPLACEMENT", dataSize=8
126    ldfp ufp2, seg, sib, "DISPLACEMENT + 8", dataSize=8
127    maddi xmml, xmml, ufp1, size=1, ext = "2 |" + Signed
128    maddi xmmh, xmmh, ufp2, size=1, ext = "2 |" + Signed
129};
130
131def macroop PADDSB_XMM_P {
132    rdip t7
133    ldfp ufp1, seg, riprel, "DISPLACEMENT", dataSize=8
134    ldfp ufp2, seg, riprel, "DISPLACEMENT + 8", dataSize=8
135    maddi xmml, xmml, ufp1, size=1, ext = "2 |" + Signed
136    maddi xmmh, xmmh, ufp2, size=1, ext = "2 |" + Signed
137};
138
139def macroop PADDSW_XMM_XMM {
140    maddi xmml, xmml, xmmlm, size=2, ext = "2 |" + Signed
141    maddi xmmh, xmmh, xmmhm, size=2, ext = "2 |" + Signed
142};
143
144def macroop PADDSW_XMM_M {
145    ldfp ufp1, seg, sib, "DISPLACEMENT", dataSize=8
146    ldfp ufp2, seg, sib, "DISPLACEMENT + 8", dataSize=8
147    maddi xmml, xmml, ufp1, size=2, ext = "2 |" + Signed
148    maddi xmmh, xmmh, ufp2, size=2, ext = "2 |" + Signed
149};
150
151def macroop PADDSW_XMM_P {
152    rdip t7
153    ldfp ufp1, seg, riprel, "DISPLACEMENT", dataSize=8
154    ldfp ufp2, seg, riprel, "DISPLACEMENT + 8", dataSize=8
155    maddi xmml, xmml, ufp1, size=2, ext = "2 |" + Signed
156    maddi xmmh, xmmh, ufp2, size=2, ext = "2 |" + Signed
157};
158
159def macroop PADDUSB_XMM_XMM {
160    maddi xmml, xmml, xmmlm, size=1, ext=2
161    maddi xmmh, xmmh, xmmhm, size=1, ext=2
162};
163
164def macroop PADDUSB_XMM_M {
165    ldfp ufp1, seg, sib, "DISPLACEMENT", dataSize=8
166    ldfp ufp2, seg, sib, "DISPLACEMENT + 8", dataSize=8
167    maddi xmml, xmml, ufp1, size=1, ext=2
168    maddi xmmh, xmmh, ufp2, size=1, ext=2
169};
170
171def macroop PADDUSB_XMM_P {
172    rdip t7
173    ldfp ufp1, seg, riprel, "DISPLACEMENT", dataSize=8
174    ldfp ufp2, seg, riprel, "DISPLACEMENT + 8", dataSize=8
175    maddi xmml, xmml, ufp1, size=1, ext=2
176    maddi xmmh, xmmh, ufp2, size=1, ext=2
177};
178
179def macroop PADDUSW_XMM_XMM {
180    maddi xmml, xmml, xmmlm, size=2, ext=2
181    maddi xmmh, xmmh, xmmhm, size=2, ext=2
182};
183
184def macroop PADDUSW_XMM_M {
185    ldfp ufp1, seg, sib, "DISPLACEMENT", dataSize=8
186    ldfp ufp2, seg, sib, "DISPLACEMENT + 8", dataSize=8
187    maddi xmml, xmml, ufp1, size=2, ext=2
188    maddi xmmh, xmmh, ufp2, size=2, ext=2
189};
190
191def macroop PADDUSW_XMM_P {
192    rdip t7
193    ldfp ufp1, seg, riprel, "DISPLACEMENT", dataSize=8
194    ldfp ufp2, seg, riprel, "DISPLACEMENT + 8", dataSize=8
195    maddi xmml, xmml, ufp1, size=2, ext=2
196    maddi xmmh, xmmh, ufp2, size=2, ext=2
197};
198'''
199