4 * Copyright (c) 2015 Chen Gang
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see
18 * <http://www.gnu.org/licenses/lgpl-2.1.html>
22 #include "qemu-common.h"
23 #include "exec/helper-proto.h"
26 uint64_t helper_v1shl(uint64_t a
, uint64_t b
)
31 m
= 0x0101010101010101ULL
* (0xff >> b
);
35 uint64_t helper_v1shru(uint64_t a
, uint64_t b
)
40 m
= 0x0101010101010101ULL
* ((0xff << b
) & 0xff);
44 uint64_t helper_v1shrs(uint64_t a
, uint64_t b
)
50 for (i
= 0; i
< 64; i
+= 8) {
51 int64_t ae
= (int8_t)(a
>> i
);
52 r
|= ((ae
>> b
) & 0xff) << i
;