audk/MdePkg/Library/BaseLib/Ia32
M1cha 2117989c26 MdePkg/BaseLib: add attribute 'RETURNS_TWICE' to SetJump
When compiling with any ARM toolchain and Os, registers can get
trashed when returning for the second time from SetJump because GCC
only handles this correctly when using standard names like 'setjmp' or
'getcontext'. When different names are used you have to use the
attribute 'returns_twice' to tell gcc to be extra careful.

example:
extern int  FN_NAME(void*);

void jmp_buf_set(void *jmpb, void (*f)(void))
{
  if (!FN_NAME(jmpb))
    f();
}

this code produces this wrong code with Os:
00000000 <jmp_buf_set>:
   0: e92d4010 push {r4, lr}
   4: e1a04001 mov r4, r1
   8: ebfffffe bl 0 <nonstandard_setjmp>
   c: e3500000 cmp r0, #0
  10: 01a03004 moveq r3, r4
  14: 08bd4010 popeq {r4, lr}
  18: 012fff13 bxeq r3
  1c: e8bd4010 pop {r4, lr}
  20: e12fff1e bx lr

The generated code pushes backups of r4 and lr to the stack and then
saves all registers using nonstandard_setjmp.
Then it pops the stack and jumps to the function in r3 which is the
main problem because now the function can overwrite our register
backups on the stack.
When we return a second time from the call to nonstandard_setjmp, the
stack pointer has it's original(pushed) position and when the code
pops r4 and lr from the stack the values are not guaranteed to be the
same.

When using a standard name like setjmp or getcontext or adding
'__attribute__((returns_twice))' to nonstandard_setjmp's declaration
the code looks different:

00000000 <jmp_buf_set>:
   0: e92d4007 push {r0, r1, r2, lr}
   4: e58d1004 str r1, [sp, #4]
   8: ebfffffe bl 0 <setjmp>
   c: e3500000 cmp r0, #0
  10: 059d3004 ldreq r3, [sp, #4]
  14: 01a0e00f moveq lr, pc
  18: 012fff13 bxeq r3
  1c: e28dd00c add sp, sp, #12
  20: e49de004 pop {lr} ; (ldr lr, [sp], #4)
  24: e12fff1e bx lr

Here the problem is being solved by restoring r3 from the stack
without popping it.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael Zimmermann <sigmaepsilon92@gmail.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
2018-01-10 11:42:17 +08:00
..
ARShiftU64.S MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
ARShiftU64.asm MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
ARShiftU64.c MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
ARShiftU64.nasm MdePkg BaseLib: Convert Ia32/ARShiftU64.asm to NASM 2016-06-28 09:49:24 +08:00
CpuBreakpoint.asm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
CpuBreakpoint.c MdePkg: Fix MSFT C4255 warning 2017-11-14 18:18:48 +08:00
CpuBreakpoint.nasm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
CpuId.S Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
CpuId.asm MdePkg BaseLib Ia32 assembly: Specify DWORD sizes 2016-06-28 09:48:22 +08:00
CpuId.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
CpuId.nasm MdePkg BaseLib: Convert Ia32/CpuId.asm to NASM 2016-06-28 09:49:22 +08:00
CpuIdEx.S MdePkg: Fix Clang build failure 2014-08-11 07:05:49 +00:00
CpuIdEx.asm MdePkg BaseLib Ia32 assembly: Specify DWORD sizes 2016-06-28 09:48:22 +08:00
CpuIdEx.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
CpuIdEx.nasm MdePkg BaseLib: Convert Ia32/CpuIdEx.asm to NASM 2016-06-28 09:49:21 +08:00
CpuPause.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
CpuPause.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
CpuPause.nasm MdePkg BaseLib: Convert Ia32/CpuPause.asm to NASM 2016-06-28 09:49:21 +08:00
DisableCache.S Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DisableCache.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DisableCache.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DisableCache.nasm MdePkg BaseLib: Convert Ia32/DisableCache.asm to NASM 2016-06-28 09:49:25 +08:00
DisableInterrupts.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DisableInterrupts.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DisableInterrupts.nasm MdePkg BaseLib: Convert Ia32/DisableInterrupts.asm to NASM 2016-06-28 09:49:20 +08:00
DisablePaging32.S Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DisablePaging32.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DisablePaging32.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DisablePaging32.nasm MdePkg BaseLib: Convert Ia32/DisablePaging32.asm to NASM 2016-06-28 09:51:52 +08:00
DivS64x64Remainder.c Refine code. 2010-08-13 02:47:22 +00:00
DivU64x32.S Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DivU64x32.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DivU64x32.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DivU64x32.nasm MdePkg BaseLib: Convert Ia32/DivU64x32.asm to NASM 2016-06-28 09:49:19 +08:00
DivU64x32Remainder.S Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DivU64x32Remainder.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DivU64x32Remainder.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
DivU64x32Remainder.nasm MdePkg BaseLib: Convert Ia32/DivU64x32Remainder.asm to NASM 2016-06-28 09:49:18 +08:00
DivU64x64Remainder.S MdePkg: Fix Clang build failure 2014-08-11 07:05:49 +00:00
DivU64x64Remainder.asm MdePkg BaseLib Ia32/DivU64x64Remainder: Make _@DivRemU64x64 private 2016-06-28 09:48:23 +08:00
DivU64x64Remainder.nasm MdePkg BaseLib: Convert Ia32/DivU64x64Remainder.asm to NASM 2016-06-28 09:48:25 +08:00
EnableCache.S Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnableCache.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnableCache.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnableCache.nasm MdePkg BaseLib: Convert Ia32/EnableCache.asm to NASM 2016-06-28 09:49:24 +08:00
EnableDisableInterrupts.S Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnableDisableInterrupts.asm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
EnableDisableInterrupts.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnableDisableInterrupts.nasm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
EnableInterrupts.asm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
EnableInterrupts.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnableInterrupts.nasm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
EnablePaging32.S Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnablePaging32.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnablePaging32.c Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
EnablePaging32.nasm MdePkg BaseLib: Convert Ia32/EnablePaging32.asm to NASM 2016-06-28 09:49:16 +08:00
EnablePaging64.S MdePkg: Fix Clang build failure 2014-08-11 07:05:49 +00:00
EnablePaging64.asm MdePkg BaseLib Ia32 assembly: Specify DWORD sizes 2016-06-28 09:48:22 +08:00
EnablePaging64.nasm MdePkg BaseLib: Convert Ia32/EnablePaging64.asm to NASM 2016-06-28 09:48:26 +08:00
FlushCacheLine.asm MdePkg/BaseLib: Preserve EBX register and fix stack offset to LinearAddress in AsmFlushCacheLine() 2015-04-30 07:25:07 +00:00
FlushCacheLine.c MdePkg/BaseLib: Preserve EBX register and fix stack offset to LinearAddress in AsmFlushCacheLine() 2015-04-30 07:25:07 +00:00
FlushCacheLine.nasm MdePkg BaseLib: Convert Ia32/FlushCacheLine.asm to NASM 2016-06-28 09:49:16 +08:00
FxRestore.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
FxRestore.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-25 21:56:02 +00:00
FxRestore.nasm MdePkg BaseLib: Convert Ia32/FxRestore.asm to NASM 2016-06-28 09:49:14 +08:00
FxSave.asm Minor grammatical work--mostly adding periods. Sending separately a list of files missing Doxygen @param and @return information. 2010-06-11 00:02:51 +00:00
FxSave.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-25 21:56:02 +00:00
FxSave.nasm MdePkg BaseLib: Convert Ia32/FxSave.asm to NASM 2016-06-28 09:49:15 +08:00
GccInline.c MdePkg/BaseLib: Support IA32 processors without CLFLUSH 2015-04-27 19:37:15 +00:00
InternalSwitchStack.S Minor copyright format update 2011-09-13 07:48:35 +00:00
InternalSwitchStack.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
InternalSwitchStack.nasm MdePkg BaseLib: Add the missing nasm source file InternalSwitchStack.nasm 2016-07-20 13:24:30 +08:00
Invd.asm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
Invd.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Invd.nasm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
LRotU64.S MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
LRotU64.asm MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
LRotU64.c MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
LRotU64.nasm MdePkg BaseLib: Convert Ia32/LRotU64.asm to NASM 2016-06-28 09:49:13 +08:00
LShiftU64.S MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
LShiftU64.asm MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
LShiftU64.c MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
LShiftU64.nasm MdePkg BaseLib: Convert Ia32/LShiftU64.asm to NASM 2016-06-28 09:49:12 +08:00
LongJump.S Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
LongJump.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
LongJump.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
LongJump.nasm MdePkg BaseLib: Convert Ia32/LongJump.asm to NASM 2016-06-28 09:49:13 +08:00
ModU64x32.S Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ModU64x32.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ModU64x32.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ModU64x32.nasm MdePkg BaseLib: Convert Ia32/ModU64x32.asm to NASM 2016-06-28 09:49:10 +08:00
Monitor.S Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Monitor.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Monitor.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Monitor.nasm MdePkg BaseLib: Convert Ia32/Monitor.asm to NASM 2016-06-28 09:49:10 +08:00
MultU64x32.S MdePkg: Fix Clang build failure 2014-08-11 07:05:49 +00:00
MultU64x32.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-25 21:56:02 +00:00
MultU64x32.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
MultU64x32.nasm MdePkg BaseLib: Convert Ia32/MultU64x32.asm to NASM 2016-06-28 09:49:11 +08:00
MultU64x64.S Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
MultU64x64.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
MultU64x64.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
MultU64x64.nasm MdePkg BaseLib: Convert Ia32/MultU64x64.asm to NASM 2016-06-28 09:49:11 +08:00
Mwait.S Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Mwait.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Mwait.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Mwait.nasm MdePkg BaseLib: Convert Ia32/Mwait.asm to NASM 2016-06-28 09:49:09 +08:00
Non-existing.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
RRotU64.S MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
RRotU64.asm MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
RRotU64.c MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
RRotU64.nasm MdePkg BaseLib: Convert Ia32/RRotU64.asm to NASM 2016-06-28 09:48:46 +08:00
RShiftU64.S MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
RShiftU64.asm MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
RShiftU64.c MdePkg/BaseLib: Support IA32 processors without CMOVx 2015-04-27 19:38:39 +00:00
RShiftU64.nasm MdePkg BaseLib: Convert Ia32/RShiftU64.asm to NASM 2016-06-28 09:48:46 +08:00
RdRand.S MdePkg/BaseLib: Add one wrapper on RdRand access for parameter check. 2016-11-16 16:49:10 +08:00
RdRand.asm MdePkg/BaseLib: Add one wrapper on RdRand access for parameter check. 2016-11-16 16:49:10 +08:00
RdRand.nasm MdePkg/BaseLib: Add one wrapper on RdRand access for parameter check. 2016-11-16 16:49:10 +08:00
ReadCr0.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCr0.c Correct comment typo in AsmReadCr0() function. 2014-06-24 02:22:47 +00:00
ReadCr0.nasm MdePkg BaseLib: Convert Ia32/ReadCr0.asm to NASM 2016-06-28 09:49:08 +08:00
ReadCr2.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCr2.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCr2.nasm MdePkg BaseLib: Convert Ia32/ReadCr2.asm to NASM 2016-06-28 09:49:07 +08:00
ReadCr3.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCr3.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCr3.nasm MdePkg BaseLib: Convert Ia32/ReadCr3.asm to NASM 2016-06-28 09:49:07 +08:00
ReadCr4.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCr4.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCr4.nasm MdePkg BaseLib: Convert Ia32/ReadCr4.asm to NASM 2016-06-28 09:49:06 +08:00
ReadCs.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCs.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadCs.nasm MdePkg BaseLib: Convert Ia32/ReadCs.asm to NASM 2016-06-28 09:48:54 +08:00
ReadDr0.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr0.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr0.nasm MdePkg BaseLib: Convert Ia32/ReadDr0.asm to NASM 2016-06-28 09:49:05 +08:00
ReadDr1.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr1.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr1.nasm MdePkg BaseLib: Convert Ia32/ReadDr1.asm to NASM 2016-06-28 09:49:05 +08:00
ReadDr2.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr2.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr2.nasm MdePkg BaseLib: Convert Ia32/ReadDr2.asm to NASM 2016-06-28 09:49:04 +08:00
ReadDr3.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr3.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr3.nasm MdePkg BaseLib: Convert Ia32/ReadDr3.asm to NASM 2016-06-28 09:49:03 +08:00
ReadDr4.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr4.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr4.nasm MdePkg BaseLib: Convert Ia32/ReadDr4.asm to NASM 2016-06-28 09:49:03 +08:00
ReadDr5.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr5.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr5.nasm MdePkg BaseLib: Convert Ia32/ReadDr5.asm to NASM 2016-06-28 09:49:02 +08:00
ReadDr6.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr6.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr6.nasm MdePkg BaseLib: Convert Ia32/ReadDr6.asm to NASM 2016-06-28 09:49:02 +08:00
ReadDr7.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr7.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDr7.nasm MdePkg BaseLib: Convert Ia32/ReadDr7.asm to NASM 2016-06-28 09:49:01 +08:00
ReadDs.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDs.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadDs.nasm MdePkg BaseLib: Convert Ia32/ReadDs.asm to NASM 2016-06-28 09:48:53 +08:00
ReadEflags.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadEflags.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadEflags.nasm MdePkg BaseLib: Convert Ia32/ReadEflags.asm to NASM 2016-06-28 09:49:00 +08:00
ReadEs.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadEs.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadEs.nasm MdePkg BaseLib: Convert Ia32/ReadEs.asm to NASM 2016-06-28 09:48:52 +08:00
ReadFs.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadFs.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadFs.nasm MdePkg BaseLib: Convert Ia32/ReadFs.asm to NASM 2016-06-28 09:48:52 +08:00
ReadGdtr.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadGdtr.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-25 21:56:02 +00:00
ReadGdtr.nasm MdePkg BaseLib: Convert Ia32/ReadGdtr.asm to NASM 2016-06-28 09:48:49 +08:00
ReadGs.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadGs.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadGs.nasm MdePkg BaseLib: Convert Ia32/ReadGs.asm to NASM 2016-06-28 09:48:51 +08:00
ReadIdtr.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadIdtr.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-25 21:56:02 +00:00
ReadIdtr.nasm MdePkg BaseLib: Convert Ia32/ReadIdtr.asm to NASM 2016-06-28 09:48:49 +08:00
ReadLdtr.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadLdtr.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadLdtr.nasm MdePkg BaseLib: Convert Ia32/ReadLdtr.asm to NASM 2016-06-28 09:48:48 +08:00
ReadMm0.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm0.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm0.nasm MdePkg BaseLib: Convert Ia32/ReadMm0.asm to NASM 2016-06-28 09:49:00 +08:00
ReadMm1.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm1.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm1.nasm MdePkg BaseLib: Convert Ia32/ReadMm1.asm to NASM 2016-06-28 09:48:59 +08:00
ReadMm2.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm2.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm2.nasm MdePkg BaseLib: Convert Ia32/ReadMm2.asm to NASM 2016-06-28 09:48:58 +08:00
ReadMm3.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm3.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm3.nasm MdePkg BaseLib: Convert Ia32/ReadMm3.asm to NASM 2016-06-28 09:48:58 +08:00
ReadMm4.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm4.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm4.nasm MdePkg BaseLib: Convert Ia32/ReadMm4.asm to NASM 2016-06-28 09:48:57 +08:00
ReadMm5.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm5.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-25 21:56:02 +00:00
ReadMm5.nasm MdePkg BaseLib: Convert Ia32/ReadMm5.asm to NASM 2016-06-28 09:48:56 +08:00
ReadMm6.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm6.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm6.nasm MdePkg BaseLib: Convert Ia32/ReadMm6.asm to NASM 2016-06-28 09:48:56 +08:00
ReadMm7.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm7.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMm7.nasm MdePkg BaseLib: Convert Ia32/ReadMm7.asm to NASM 2016-06-28 09:48:55 +08:00
ReadMsr64.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMsr64.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadMsr64.nasm MdePkg BaseLib: Convert Ia32/ReadMsr64.asm to NASM 2016-06-28 09:48:54 +08:00
ReadPmc.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadPmc.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadPmc.nasm MdePkg BaseLib: Convert Ia32/ReadPmc.asm to NASM 2016-06-28 09:48:47 +08:00
ReadSs.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadSs.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadSs.nasm MdePkg BaseLib: Convert Ia32/ReadSs.asm to NASM 2016-06-28 09:48:51 +08:00
ReadTr.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadTr.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadTr.nasm MdePkg BaseLib: Convert Ia32/ReadTr.asm to NASM 2016-06-28 09:48:50 +08:00
ReadTsc.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadTsc.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
ReadTsc.nasm MdePkg BaseLib: Convert Ia32/ReadTsc.asm to NASM 2016-06-28 09:48:47 +08:00
SetJump.S Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
SetJump.asm MdePkg BaseLib Ia32 assembly: Specify DWORD sizes 2016-06-28 09:48:22 +08:00
SetJump.c MdePkg/BaseLib: add attribute 'RETURNS_TWICE' to SetJump 2018-01-10 11:42:17 +08:00
SetJump.nasm MdePkg BaseLib: Convert Ia32/SetJump.asm to NASM 2016-06-28 09:48:45 +08:00
SwapBytes64.S Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
SwapBytes64.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
SwapBytes64.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
SwapBytes64.nasm MdePkg BaseLib: Convert Ia32/SwapBytes64.asm to NASM 2016-06-28 09:48:44 +08:00
Thunk16.S MdePkg: First instruction after clearing CR0.PE must be a far jmp. 2013-12-30 01:14:13 +00:00
Thunk16.asm MdePkg: First instruction after clearing CR0.PE must be a far jmp. 2013-12-30 01:14:13 +00:00
Thunk16.nasm MdePkg NASM Thunk16: Add missing ASM_PFX for InternalAsmThunk16 2014-09-04 15:17:57 +00:00
Wbinvd.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Wbinvd.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
Wbinvd.nasm MdePkg BaseLib: Convert Ia32/Wbinvd.asm to NASM 2016-06-28 09:48:28 +08:00
WriteCr0.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteCr0.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteCr0.nasm MdePkg BaseLib: Convert Ia32/WriteCr0.asm to NASM 2016-06-28 09:48:43 +08:00
WriteCr2.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteCr2.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteCr2.nasm MdePkg BaseLib: Convert Ia32/WriteCr2.asm to NASM 2016-06-28 09:48:42 +08:00
WriteCr3.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteCr3.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteCr3.nasm MdePkg BaseLib: Convert Ia32/WriteCr3.asm to NASM 2016-06-28 09:48:41 +08:00
WriteCr4.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteCr4.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteCr4.nasm MdePkg BaseLib: Convert Ia32/WriteCr4.asm to NASM 2016-06-28 09:48:41 +08:00
WriteDr0.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr0.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr0.nasm MdePkg BaseLib: Convert Ia32/WriteDr0.asm to NASM 2016-06-28 09:48:40 +08:00
WriteDr1.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr1.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr1.nasm MdePkg BaseLib: Convert Ia32/WriteDr1.asm to NASM 2016-06-28 09:48:39 +08:00
WriteDr2.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr2.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr2.nasm MdePkg BaseLib: Convert Ia32/WriteDr2.asm to NASM 2016-06-28 09:48:39 +08:00
WriteDr3.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr3.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr3.nasm MdePkg BaseLib: Convert Ia32/WriteDr3.asm to NASM 2016-06-28 09:48:38 +08:00
WriteDr4.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr4.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr4.nasm MdePkg BaseLib: Convert Ia32/WriteDr4.asm to NASM 2016-06-28 09:48:38 +08:00
WriteDr5.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr5.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr5.nasm MdePkg BaseLib: Convert Ia32/WriteDr5.asm to NASM 2016-06-28 09:48:37 +08:00
WriteDr6.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr6.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr6.nasm MdePkg BaseLib: Convert Ia32/WriteDr6.asm to NASM 2016-06-28 09:48:36 +08:00
WriteDr7.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr7.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteDr7.nasm MdePkg BaseLib: Convert Ia32/WriteDr7.asm to NASM 2016-06-28 09:48:36 +08:00
WriteGdtr.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteGdtr.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-25 21:56:02 +00:00
WriteGdtr.nasm MdePkg BaseLib: Convert Ia32/WriteGdtr.asm to NASM 2016-06-28 09:48:35 +08:00
WriteIdtr.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteIdtr.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-25 21:56:02 +00:00
WriteIdtr.nasm MdePkg BaseLib: Convert Ia32/WriteIdtr.asm to NASM 2016-06-28 09:48:34 +08:00
WriteLdtr.asm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
WriteLdtr.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteLdtr.nasm MdePkg/BaseLib: Remove the unnecessary '_' before library APIs in ASM/NASM 2016-10-18 20:12:39 +08:00
WriteMm0.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm0.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm0.nasm MdePkg BaseLib: Convert Ia32/WriteMm0.asm to NASM 2016-06-28 09:48:33 +08:00
WriteMm1.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm1.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm1.nasm MdePkg BaseLib: Convert Ia32/WriteMm1.asm to NASM 2016-06-28 09:48:32 +08:00
WriteMm2.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm2.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm2.nasm MdePkg BaseLib: Convert Ia32/WriteMm2.asm to NASM 2016-06-28 09:48:31 +08:00
WriteMm3.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm3.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm3.nasm MdePkg BaseLib: Convert Ia32/WriteMm3.asm to NASM 2016-06-28 09:48:31 +08:00
WriteMm4.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm4.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm4.nasm MdePkg BaseLib: Convert Ia32/WriteMm4.asm to NASM 2016-06-28 09:48:30 +08:00
WriteMm5.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm5.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm5.nasm MdePkg BaseLib: Convert Ia32/WriteMm5.asm to NASM 2016-06-28 09:48:29 +08:00
WriteMm6.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm6.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm6.nasm MdePkg BaseLib: Convert Ia32/WriteMm6.asm to NASM 2016-06-28 09:48:29 +08:00
WriteMm7.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm7.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMm7.nasm MdePkg BaseLib: Convert Ia32/WriteMm7.asm to NASM 2016-06-28 09:48:28 +08:00
WriteMsr64.asm Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMsr64.c Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING) 2010-06-22 22:59:38 +00:00
WriteMsr64.nasm MdePkg BaseLib: Convert Ia32/WriteMsr64.asm to NASM 2016-06-28 09:48:43 +08:00
WriteTr.nasm MdePkg/BaseLib: Add stack switch related definitions for IA32 2017-12-08 14:38:48 +08:00