summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/EbcDxe/EbcInt.h
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-05-14 06:07:07 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-05-14 06:07:07 +0000
commitea7cb08c0afc7ad5dd9ed7176cd062385df8fa8b (patch)
treefebbcc3c37da1e44b5405f5c5085e93be96f8b48 /MdeModulePkg/Universal/EbcDxe/EbcInt.h
parentd29270810c282aa3b7938b42a3e6efbc08014a91 (diff)
downloadedk2-platforms-ea7cb08c0afc7ad5dd9ed7176cd062385df8fa8b.tar.xz
Minor coding style adjustment for DiskIo, Partition, English and Ebc modules.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5200 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/EbcDxe/EbcInt.h')
-rw-r--r--MdeModulePkg/Universal/EbcDxe/EbcInt.h50
1 files changed, 21 insertions, 29 deletions
diff --git a/MdeModulePkg/Universal/EbcDxe/EbcInt.h b/MdeModulePkg/Universal/EbcDxe/EbcInt.h
index 720ee2668a..c08ae927b4 100644
--- a/MdeModulePkg/Universal/EbcDxe/EbcInt.h
+++ b/MdeModulePkg/Universal/EbcDxe/EbcInt.h
@@ -101,9 +101,8 @@ EbcCreateThunks (
IN EFI_HANDLE ImageHandle,
IN VOID *EbcEntryPoint,
OUT VOID **Thunk,
- IN UINT32 Flags
- )
-;
+ IN UINT32 Flags
+ );
/**
Add a thunk to our list of thunks for a given image handle.
@@ -120,11 +119,10 @@ EbcCreateThunks (
**/
EFI_STATUS
EbcAddImageThunk (
- IN EFI_HANDLE ImageHandle,
- IN VOID *ThunkBuffer,
- IN UINT32 ThunkSize
- )
-;
+ IN EFI_HANDLE ImageHandle,
+ IN VOID *ThunkBuffer,
+ IN UINT32 ThunkSize
+ );
//
// The interpreter calls these when an exception is detected,
@@ -143,11 +141,10 @@ EbcAddImageThunk (
**/
EFI_STATUS
EbcDebugSignalException (
- IN EFI_EXCEPTION_TYPE ExceptionType,
- IN EXCEPTION_FLAGS ExceptionFlags,
- IN VM_CONTEXT *VmPtr
- )
-;
+ IN EFI_EXCEPTION_TYPE ExceptionType,
+ IN EXCEPTION_FLAGS ExceptionFlags,
+ IN VM_CONTEXT *VmPtr
+ );
//
// Define a constant of how often to call the debugger periodic callback
@@ -161,21 +158,20 @@ EbcDebugSignalException (
//
// External low level functions that are native-processor dependent
//
-/**
+/**
The VM thunk code stuffs an EBC entry point into a processor
register. Since we can't use inline assembly to get it from
the interpreter C code, stuff it into the return value
register and return.
@return The contents of the register in which the entry point is passed.
-
-**/
+
+**/
UINTN
EFIAPI
EbcLLGetEbcEntryPoint (
VOID
- )
-;
+ );
/**
Returns the caller's value of the stack pointer.
@@ -183,15 +179,14 @@ EbcLLGetEbcEntryPoint (
We adjust it by 4 here because when they called us, the return address
is put on the stack, thereby lowering it by 4 bytes.
- @return The current value of the stack pointer for the caller.
+ @return The current value of the stack pointer for the caller.
**/
UINTN
EFIAPI
EbcLLGetStackPointer (
VOID
- )
-;
+ );
/**
This function is called to execute an EBC CALLEX instruction.
@@ -204,7 +199,7 @@ EbcLLGetStackPointer (
@param CallAddr The function address.
@param EbcSp The new EBC stack pointer.
@param FramePtr The frame pointer.
-
+
**/
VOID
EFIAPI
@@ -212,8 +207,7 @@ EbcLLCALLEXNative (
IN UINTN CallAddr,
IN UINTN EbcSp,
IN VOID *FramePtr
- )
-;
+ );
/**
This function is called to execute an EBC CALLEX instruction.
@@ -237,8 +231,7 @@ EbcLLCALLEX (
IN UINTN NewStackPointer,
IN VOID *FramePtr,
IN UINT8 Size
- )
-;
+ );
/**
When EBC calls native, on return the VM has to stuff the return
@@ -246,15 +239,14 @@ EbcLLCALLEX (
in the register, so simply return and the caller should get the
return result properly.
- @return The unmodified value returned by the native code.
+ @return The unmodified value returned by the native code.
**/
INT64
EFIAPI
EbcLLGetReturnValue (
VOID
- )
-;
+ );
/**
Returns the stack index and buffer assosicated with the Handle parameter.