Skip to content

Commit

Permalink
MdePkg: Add RETURN_ADDRESS macro into Base.h.
Browse files Browse the repository at this point in the history
Based on compiler intrinsic function.
MSVC: _ReturnAddress
GCC: __builtin_return_address

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <[email protected]>
Reviewed-by: Jiewen Yao <[email protected]>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16334 6f19259b-4bc3-4df7-8a09-765794883524
  • Loading branch information
lzeng14 authored and lzeng14 committed Nov 12, 2014
1 parent 1531a46 commit dad83a8
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion MdePkg/Include/Base.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
environment. There are a set of base libraries in the Mde Package that can
be used to implement base modules.
Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
Expand Down Expand Up @@ -1016,5 +1016,26 @@ typedef UINTN RETURN_STATUS;
#define SIGNATURE_64(A, B, C, D, E, F, G, H) \
(SIGNATURE_32 (A, B, C, D) | ((UINT64) (SIGNATURE_32 (E, F, G, H)) << 32))

#if defined(_MSC_EXTENSIONS)
//
// Intrinsic function provides the address of the instruction in the calling
// function that will be executed after control returns to the caller.
//
#pragma intrinsic(_ReturnAddress)
#define RETURN_ADDRESS(L) ((L == 0) ? _ReturnAddress() : (VOID *) 0)
#elif defined(__GNUC__)
//
// Built-in Function returns the return address of the current function,
// or of one of its callers.
//
void * __builtin_return_address (unsigned int level);
#define RETURN_ADDRESS(L) __builtin_return_address (L)
#else
//
// Compilers don't support this feature.
//
#define RETURN_ADDRESS(L) ((VOID *) 0)
#endif

#endif

0 comments on commit dad83a8

Please sign in to comment.