2 x64 Specific relocation fixups.
4 Copyright (c) 2005 - 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
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.
16 // Include common header file for this module.
18 #include "CommonHeader.h"
21 Performs an x64 specific relocation fixup.
23 @param Reloc Pointer to the relocation record
24 @param Fixup Pointer to the address to fix up
25 @param FixupData Pointer to a buffer to log the fixups
26 @param Adjust The offset to adjust the fixup
28 @retval RETURN_SUCCESS Success to perform relocation
29 @retval RETURN_UNSUPPORTED Unsupported.
32 PeCoffLoaderRelocateImageEx (
35 IN OUT CHAR8
**FixupData
,
39 return RETURN_UNSUPPORTED
;
43 Returns TRUE if the machine type of PE/COFF image is supported. Supported
44 does not mean the image can be executed it means the PE/COFF loader supports
45 loading and relocating of the image type. It's up to the caller to support
48 This function implies the basic PE/COFF loader/relocator supports IA32, EBC,
49 & X64 images. Calling the entry point in a correct mannor is up to the
50 consumer of this library.
52 @param Machine Machine type from the PE Header.
54 @return TRUE if this PE/COFF loader can load the image
58 PeCoffLoaderImageFormatSupported (
62 if ((Machine
== EFI_IMAGE_MACHINE_IA32
) || (Machine
== EFI_IMAGE_MACHINE_X64
) ||
63 (Machine
== EFI_IMAGE_MACHINE_EBC
)) {
72 Performs an X64 specific re-relocation fixup and is a no-op on other
73 instruction sets. This is used to re-relocated the image into the EFI virtual
74 space for runtime calls.
76 @param Reloc Pointer to the relocation record.
77 @param Fixup Pointer to the address to fix up.
78 @param FixupData Pointer to a buffer to log the fixups.
79 @param Adjust The offset to adjust the fixup.
85 PeHotRelocateImageEx (
88 IN OUT CHAR8
**FixupData
,
92 return RETURN_UNSUPPORTED
;