]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/ARShiftU64.c
Updated to support compiler intrinsics properly. I had to comment out some of the...
[mirror_edk2.git] / MdePkg / Library / BaseLib / ARShiftU64.c
1 /** @file
2 Math worker functions.
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 //
16 // Include common header file for this module.
17 //
18 #include "CommonHeader.h"
19
20 #include "BaseLibInternals.h"
21
22 /**
23 Shifts a 64-bit integer right between 0 and 63 bits. The high bits are filled
24 with original integer's bit 63. The shifted value is returned.
25
26 This function shifts the 64-bit value Operand to the right by Count bits. The
27 high Count bits are set to bit 63 of Operand. The shifted value is returned.
28
29 If Count is greater than 63, then ASSERT().
30
31 @param Operand The 64-bit operand to shift right.
32 @param Count The number of bits to shift right.
33
34 @return Operand arithmetically shifted right by Count
35
36 **/
37 UINT64
38 EFIAPI
39 ARShiftU64 (
40 IN UINT64 Operand,
41 IN UINTN Count
42 )
43 {
44 ASSERT (Count < sizeof (Operand) * 8);
45 return InternalMathARShiftU64 (Operand, Count);
46 }