mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
22 lines
580 B
NASM
22 lines
580 B
NASM
|
|
;------------------------------------------------------------------------------
|
||
|
|
; X64/StackCheckFunctionsMsvc.nasm
|
||
|
|
;
|
||
|
|
; Copyright (c) Microsoft Corporation.
|
||
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
;------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
DEFAULT REL
|
||
|
|
SECTION .text
|
||
|
|
|
||
|
|
global ASM_PFX(__report_rangecheckfailure)
|
||
|
|
ASM_PFX(__report_rangecheckfailure):
|
||
|
|
ret
|
||
|
|
|
||
|
|
global ASM_PFX(__GSHandlerCheck)
|
||
|
|
ASM_PFX(__GSHandlerCheck):
|
||
|
|
ret
|
||
|
|
|
||
|
|
global ASM_PFX(__security_check_cookie)
|
||
|
|
ASM_PFX(__security_check_cookie):
|
||
|
|
ret
|