-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update all DSC files, update null lib, update comments
- Loading branch information
1 parent
7ddeddc
commit db58249
Showing
22 changed files
with
127 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
;------------------------------------------------------------------------------ | ||
; StackCheckFunctionsGcc.nasm | ||
;------------------------------------------------------------------------------ | ||
DEFAULT REL | ||
SECTION .text | ||
|
||
; Called when a stack cookie check fails. | ||
global ASM_PFX(__stack_chk_fail) | ||
ASM_PFX(__stack_chk_fail): | ||
ret |
44 changes: 0 additions & 44 deletions
44
MdePkg/Library/StackCheckLibNull/StackCheckFunctionsMsvc.asm
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
MdePkg/Library/StackCheckLibNull/StackCheckFunctionsMsvc.nasm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
;------------------------------------------------------------------------------ | ||
; StackCheckFunctionsMsvc.nasm | ||
;------------------------------------------------------------------------------ | ||
DEFAULT REL | ||
SECTION .text | ||
|
||
; Called when a buffer check fails. This functionality is dependent on MSVC | ||
; C runtime libraries and so is unsupported in UEFI. | ||
global ASM_PFX(__report_rangecheckfailure) | ||
ASM_PFX(__report_rangecheckfailure): | ||
ret | ||
|
||
; The GS handler is for checking the stack cookie during SEH or | ||
; EH exceptions and is unsupported in UEFI. | ||
global ASM_PFX(__GSHandlerCheck) | ||
ASM_PFX(__GSHandlerCheck): | ||
ret | ||
|
||
;------------------------------------------------------------------------------ | ||
; Checks the stack cookie value against __security_cookie and calls the | ||
; stack cookie failure handler if there is a mismatch. | ||
; | ||
; VOID | ||
; EFIAPI | ||
; __security_check_cookie ( | ||
; IN UINTN CheckValue); | ||
;------------------------------------------------------------------------------ | ||
global ASM_PFX(__security_check_cookie) | ||
ASM_PFX(__security_check_cookie): | ||
ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.