2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause */
|
2015-08-04 18:33:56 +00:00
|
|
|
/*
|
|
|
|
* crt0-efi-x86_64.S - x86_64 EFI startup code.
|
|
|
|
* Copyright (C) 1999 Hewlett-Packard Co.
|
|
|
|
* Contributed by David Mosberger <davidm@hpl.hp.com>.
|
2018-06-14 00:27:39 +00:00
|
|
|
* Copyright (C) 2005 Intel Corporation
|
2015-08-04 18:33:56 +00:00
|
|
|
* Contributed by Fenghua Yu <fenghua.yu@intel.com>.
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
.text
|
|
|
|
.align 4
|
|
|
|
|
|
|
|
.globl _start
|
|
|
|
_start:
|
|
|
|
subq $8, %rsp
|
2018-06-14 00:27:39 +00:00
|
|
|
|
2015-08-04 18:33:56 +00:00
|
|
|
pushq %rcx
|
|
|
|
pushq %rdx
|
|
|
|
|
2018-06-14 00:27:39 +00:00
|
|
|
lea image_base(%rip), %rcx
|
|
|
|
lea _DYNAMIC(%rip), %rdx
|
2015-08-04 18:33:56 +00:00
|
|
|
|
|
|
|
call _relocate
|
|
|
|
|
2018-06-14 00:27:39 +00:00
|
|
|
popq %rdx
|
|
|
|
popq %rcx
|
|
|
|
|
|
|
|
testq %rax, %rax
|
|
|
|
jnz .exit
|
2015-08-04 18:33:56 +00:00
|
|
|
|
|
|
|
call efi_main
|
2018-06-14 00:27:39 +00:00
|
|
|
.exit:
|
2015-08-04 18:33:56 +00:00
|
|
|
addq $8, %rsp
|
|
|
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hand-craft a dummy .reloc section so EFI knows it's a relocatable
|
|
|
|
* executable:
|
|
|
|
*/
|
|
|
|
.data
|
|
|
|
dummy: .long 0
|
|
|
|
|
|
|
|
#define IMAGE_REL_ABSOLUTE 0
|
|
|
|
.section .reloc, "a"
|
|
|
|
label1:
|
|
|
|
.long dummy-label1 /* Page RVA */
|
|
|
|
.long 10 /* Block Size (2*4+2) */
|
|
|
|
.word (IMAGE_REL_ABSOLUTE << 12) + 0 /* reloc for dummy */
|