summaryrefslogtreecommitdiff
path: root/UefiCpuPkg/SecCore
diff options
context:
space:
mode:
authorJeff Fan <jeff.fan@intel.com>2016-11-03 15:48:11 +0800
committerJeff Fan <jeff.fan@intel.com>2016-11-09 16:00:15 +0800
commitaf34c1064934b8c02dca1660408b9aa7898c0e5b (patch)
tree6c073bcc6382d5a468123f1f66efc410c0de9b1b /UefiCpuPkg/SecCore
parent6fb389d0a180ae4e623c39d051a3ddb38515b614 (diff)
downloadedk2-af34c1064934b8c02dca1660408b9aa7898c0e5b.zip
edk2-af34c1064934b8c02dca1660408b9aa7898c0e5b.tar.gz
edk2-af34c1064934b8c02dca1660408b9aa7898c0e5b.tar.bz2
UefiCpuPkg: Display new stack base and size
Dump new stack base and size information could help developer to narrow down stack crash issue. Cc: Feng Tian <feng.tian@intel.com> Cc: Liming Gao <liming.gao@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Feng Tian <feng.tian@intel.com>
Diffstat (limited to 'UefiCpuPkg/SecCore')
-rw-r--r--UefiCpuPkg/SecCore/SecMain.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/UefiCpuPkg/SecCore/SecMain.c b/UefiCpuPkg/SecCore/SecMain.c
index af1e661..2ebbc22 100644
--- a/UefiCpuPkg/SecCore/SecMain.c
+++ b/UefiCpuPkg/SecCore/SecMain.c
@@ -1,7 +1,7 @@
/** @file
C functions in SEC
- Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2008 - 2016, Intel Corporation. All rights reserved.<BR>
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
@@ -237,6 +237,14 @@ SecStartupPhase2(
PpiList = &mPeiSecPlatformInformationPpi[0];
}
+ DEBUG ((
+ DEBUG_INFO,
+ "%a() Stack Base: 0x%lx, Stack Size: 0x%lx\n",
+ __FUNCTION__,
+ SecCoreData->StackBase,
+ SecCoreData->StackSize
+ ));
+
//
// Report Status Code to indicate transferring to PEI core
//