]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/LRotU64.c
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / LRotU64.c
1 /** @file
2 64-bit left rotation for Ia32
3
4 Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9
10
11
12 /**
13 Rotates a 64-bit integer left between 0 and 63 bits, filling
14 the low bits with the high bits that were rotated.
15
16 This function rotates the 64-bit value Operand to the left by Count bits. The
17 low Count bits are fill with the high Count bits of Operand. The rotated
18 value is returned.
19
20 @param Operand The 64-bit operand to rotate left.
21 @param Count The number of bits to rotate left.
22
23 @return Operand <<< Count
24
25 **/
26 UINT64
27 EFIAPI
28 InternalMathLRotU64 (
29 IN UINT64 Operand,
30 IN UINTN Count
31 )
32 {
33 _asm {
34 mov cl, byte ptr [Count]
35 mov edx, dword ptr [Operand + 4]
36 mov eax, dword ptr [Operand + 0]
37 shld ebx, edx, cl
38 shld edx, eax, cl
39 ror ebx, cl
40 shld eax, ebx, cl
41 test cl, 32 ; Count >= 32?
42 jz L0
43 mov ecx, eax
44 mov eax, edx
45 mov edx, ecx
46 L0:
47 }
48 }
49