summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStar Zeng <star.zeng@intel.com>2014-08-12 01:41:25 +0000
committerlzeng14 <lzeng14@6f19259b-4bc3-4df7-8a09-765794883524>2014-08-12 01:41:25 +0000
commit6c8cfb0751bd64020495f065407cae0b7c3dd6ce (patch)
tree34cd387d4c3623e1f73afb928ae9a0111016ff4b
parent6f347d0f0a0db643c5ec134481aeab0232127ae2 (diff)
downloadedk2-6c8cfb0751bd64020495f065407cae0b7c3dd6ce.tar.gz
edk2-6c8cfb0751bd64020495f065407cae0b7c3dd6ce.tar.bz2
edk2-6c8cfb0751bd64020495f065407cae0b7c3dd6ce.zip
MdeModulePkg PeiCore: The DEBUG message (for HeapOffset and StackOffset) should be placed after HeapOffset is got.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15787 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
index 3c867bfb13..ea80392dea 100644
--- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
+++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
@@ -927,8 +927,6 @@ PeiDispatcher (
Private->StackOffsetPositive = StackOffsetPositive;
Private->StackOffset = StackOffset;
- DEBUG ((EFI_D_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64)Private->HeapOffset, (UINT64)(StackOffset)));
-
//
// Build Stack HOB that describes the permanent memory stack
//
@@ -966,7 +964,9 @@ PeiDispatcher (
Private->HeapOffsetPositive = FALSE;
Private->HeapOffset = (UINTN)((UINTN)SecCoreData->PeiTemporaryRamBase - BaseOfNewHeap);
}
-
+
+ DEBUG ((EFI_D_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));
+
//
// Caculate new HandOffTable and PrivateData address in permanent memory's stack
//
@@ -1021,6 +1021,8 @@ PeiDispatcher (
Private->HeapOffset = (UINTN)((UINTN)SecCoreData->PeiTemporaryRamBase - BaseOfNewHeap);
}
+ DEBUG ((EFI_D_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));
+
//
// Migrate Heap
//