Deleted Added
sdiff udiff text old ( 6095:c36f932461d9 ) new ( 6096:72f1239a1583 )
full compact
1# Copyright (c) 2008 The Regents of The University of Michigan
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

--- 140 unchanged lines hidden (view full) ---

149 limm t4, 1
150 roli t4, t4, imm
151 ldst t1, seg, riprel, disp
152 sexti t0, t1, imm, flags=(CF,)
153 xor t1, t1, t4
154 st t1, seg, riprel, disp
155};
156
157def macroop BTC_R_R {
158 sext t0, reg, regm, flags=(CF,)
159 limm t1, 1
160 rol t1, t1, regm
161 xor reg, reg, t1
162};
163
164def macroop BTC_M_R {

--- 16 unchanged lines hidden (view full) ---

181 limm t4, 1
182 rol t4, t4, reg
183 ldst t1, seg, [1, t2, t7], disp
184 sext t0, t1, reg, flags=(CF,)
185 xor t1, t1, t4
186 st t1, seg, [1, t2, t7], disp
187};
188
189def macroop BTR_R_I {
190 sexti t0, reg, imm, flags=(CF,)
191 limm t1, "(uint64_t(-(2ULL)))"
192 roli t1, t1, imm
193 and reg, reg, t1
194};
195
196def macroop BTR_M_I {

--- 204 unchanged lines hidden ---