]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/LShiftU64.c
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / LShiftU64.c
1 /** @file
2 64-bit left shift function for IA-32.
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 Shifts a 64-bit integer left between 0 and 63 bits. The low bits
14 are filled with zeros. The shifted value is returned.
15
16 This function shifts the 64-bit value Operand to the left by Count bits. The
17 low Count bits are set to zero. The shifted value is returned.
18
19 @param Operand The 64-bit operand to shift left.
20 @param Count The number of bits to shift left.
21
22 @return Operand << Count
23
24 **/
25 UINT64
26 EFIAPI
27 InternalMathLShiftU64 (
28 IN UINT64 Operand,
29 IN UINTN Count
30 )
31 {
32 _asm {
33 mov cl, byte ptr [Count]
34 xor eax, eax
35 mov edx, dword ptr [Operand + 0]
36 test cl, 32 // Count >= 32?
37 jnz L0
38 mov eax, edx
39 mov edx, dword ptr [Operand + 4]
40 L0:
41 shld edx, eax, cl
42 shl eax, cl
43 }
44 }
45