2006-06-10 09:16:11 +02:00
|
|
|
/** @file
|
|
|
|
Internal ASSERT () functions for SetJump.
|
|
|
|
|
|
|
|
Copyright (c) 2006, Intel Corporation
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
2006-07-19 19:37:07 +02:00
|
|
|
Module Name: SetJump.c
|
2006-06-10 09:16:11 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
2007-01-25 07:05:36 +01:00
|
|
|
#include "BaseLibInternals.h"
|
|
|
|
|
2006-07-19 19:37:07 +02:00
|
|
|
/**
|
|
|
|
Worker function that checks ASSERT condition for JumpBuffer
|
|
|
|
|
|
|
|
Checks ASSERT condition for JumpBuffer.
|
|
|
|
|
|
|
|
If JumpBuffer is NULL, then ASSERT().
|
2007-03-15 03:33:16 +01:00
|
|
|
If JumpBuffer is not aligned on a BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT
|
|
|
|
boundary, then ASSERT().
|
2006-07-19 19:37:07 +02:00
|
|
|
|
|
|
|
@param JumpBuffer A pointer to CPU context buffer.
|
|
|
|
|
|
|
|
**/
|
2006-06-10 09:16:11 +02:00
|
|
|
VOID
|
2006-07-21 10:47:38 +02:00
|
|
|
EFIAPI
|
2006-06-10 09:16:11 +02:00
|
|
|
InternalAssertJumpBuffer (
|
|
|
|
IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
|
|
|
|
)
|
|
|
|
{
|
|
|
|
ASSERT (JumpBuffer != NULL);
|
|
|
|
|
2007-03-15 03:33:16 +01:00
|
|
|
ASSERT (((UINTN)JumpBuffer & ((BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT - 1) >> 8)) == 0);
|
2006-06-10 09:16:11 +02:00
|
|
|
}
|