]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Core/DxeIplPeim/Ia32/ImageRead.c
Replace .globl with ASM_GLOBAL
[mirror_edk2.git] / MdeModulePkg / Core / DxeIplPeim / Ia32 / ImageRead.c
... / ...
CommitLineData
1/** @file\r
2 This module loads an image to memory for IA32 Cpu architecture.\r
3\r
4Copyright (c) 2006 - 2009, Intel Corporation. <BR>\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "DxeIpl.h"\r
16\r
17/**\r
18 Support routine for the PE/COFF Loader that reads a buffer from a PE/COFF file\r
19\r
20 @param FileHandle The handle to the PE/COFF file \r
21 @param FileOffset The offset, in bytes, into the file to read \r
22 @param ReadSize The number of bytes to read from the file starting at \r
23 FileOffset \r
24 @param Buffer A pointer to the buffer to read the data into. \r
25\r
26 @retval EFI_SUCCESS ReadSize bytes of data were read into Buffer from the \r
27 PE/COFF file starting at FileOffset\r
28\r
29**/\r
30EFI_STATUS\r
31EFIAPI\r
32PeiImageRead (\r
33 IN VOID *FileHandle,\r
34 IN UINTN FileOffset,\r
35 IN OUT UINTN *ReadSize,\r
36 OUT VOID *Buffer\r
37 )\r
38{\r
39 UINT8 *Destination32;\r
40 UINT8 *Source32;\r
41 UINTN Length;\r
42\r
43 \r
44 Destination32 = Buffer;\r
45 Source32 = (UINT8 *) ((UINTN) FileHandle + FileOffset);\r
46\r
47 //\r
48 // This function assumes 32-bit alignment to increase performance\r
49 //\r
50\r
51 Length = *ReadSize;\r
52 while (Length-- != 0) {\r
53 *(Destination32++) = *(Source32++);\r
54 }\r
55\r
56 return EFI_SUCCESS;\r
57}\r