Re: [edk2] [Patch] BaseTools: Fix the bug to parse the new map file format

2016-12-01 Thread Gao, Liming
Reviewed-by: Liming Gao 

-Original Message-
From: Zhu, Yonghong 
Sent: Wednesday, November 30, 2016 4:23 PM
To: edk2-devel@lists.01.org
Cc: Gao, Liming 
Subject: [Patch] BaseTools: Fix the bug to parse the new map file format

Current the variable and Pcd format save in the map file is changed, so this 
patch is to support this new format.

Cc: Liming Gao 
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yonghong Zhu 
---
 BaseTools/Source/Python/Common/Misc.py | 11 +++
 .../Source/Python/GenPatchPcdTable/GenPatchPcdTable.py | 14 +-
 2 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/BaseTools/Source/Python/Common/Misc.py 
b/BaseTools/Source/Python/Common/Misc.py
index 3be1f0f..43d0818 100644
--- a/BaseTools/Source/Python/Common/Misc.py
+++ b/BaseTools/Source/Python/Common/Misc.py
@@ -72,11 +72,11 @@ def GetVariableOffset(mapfilepath, efifilepath, varnames):
 def _parseForGCC(lines, efifilepath, varnames):
 """ Parse map file generated by GCC linker """
 status = 0
 sections = []
 varoffset = []
-for line in lines:
+for index, line in enumerate(lines):
 line = line.strip()
 # status machine transection
 if status == 0 and line == "Memory Configuration":
 status = 1
 continue
@@ -86,18 +86,21 @@ def _parseForGCC(lines, efifilepath, varnames):
 elif status ==2 and line == 'START GROUP':
 status = 3
 continue
 
 # status handler
-if status == 2:
+if status == 3:
 m = re.match('^([\w_\.]+) +([\da-fA-Fx]+) +([\da-fA-Fx]+)$', line)
 if m != None:
 sections.append(m.groups(0))
 for varname in varnames:
-m = re.match("^([\da-fA-Fx]+) +[_]*(%s)$" % varname, line)
+m = re.match(".data.(%s)$" % varname, line)
 if m != None:
-varoffset.append((varname, int(m.groups(0)[0], 16) , 
int(sections[-1][1], 16), sections[-1][0]))
+if lines[index + 1]:
+m = re.match('^([\da-fA-Fx]+) +([\da-fA-Fx]+)', 
lines[index + 1].strip())
+if m != None:
+varoffset.append((varname, 
+ int(m.groups(0)[0], 16) , int(sections[-1][1], 16), sections[-1][0]))
 
 if not varoffset:
 return []
 # get section information from efi file
 efisecs = PeImageClass(efifilepath).SectionHeaderList
diff --git a/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py 
b/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
index f4fd51a..4452fac 100644
--- a/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
+++ b/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
@@ -64,11 +64,11 @@ def _parseForGCC(lines, efifilepath):
 """ Parse map file generated by GCC linker """
 status = 0
 imageBase = -1
 sections = []
 bpcds = []
-for line in lines:
+for index, line in enumerate(lines):
 line = line.strip()
 # status machine transection
 if status == 0 and line == "Memory Configuration":
 status = 1
 continue
@@ -78,18 +78,22 @@ def _parseForGCC(lines, efifilepath):
 elif status ==2 and line == 'START GROUP':
 status = 3
 continue
 
 # status handler
-if status == 2:
+if status == 3:
 m = re.match('^([\w_\.]+) +([\da-fA-Fx]+) +([\da-fA-Fx]+)$', line)
 if m != None:
 sections.append(m.groups(0))
-if status == 2:
-m = re.match("^([\da-fA-Fx]+) +[_]+gPcd_BinaryPatch_([\w_\d]+)$", 
line)
+if status == 3:
+m = re.match('^.data._gPcd_BinaryPatch_([\w_\d]+)$', line)
 if m != None:
-bpcds.append((m.groups(0)[1], int(m.groups(0)[0], 16) , 
int(sections[-1][1], 16), sections[-1][0]))
+if lines[index + 1]:
+PcdName = m.groups(0)[0]
+m = re.match('^([\da-fA-Fx]+) +([\da-fA-Fx]+)', 
lines[index + 1].strip())
+if m != None:
+bpcds.append((PcdName, int(m.groups(0)[0], 16) 
+ , int(sections[-1][1], 16), sections[-1][0]))
 
 # get section information from efi file
 efisecs = PeImageClass(efifilepath).SectionHeaderList
 if efisecs == None or len(efisecs) == 0:
 return None
--
2.6.1.windows.1

___
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel


[edk2] [Patch] BaseTools: Fix the bug to parse the new map file format

2016-11-30 Thread Yonghong Zhu
Current the variable and Pcd format save in the map file is changed, so
this patch is to support this new format.

Cc: Liming Gao 
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yonghong Zhu 
---
 BaseTools/Source/Python/Common/Misc.py | 11 +++
 .../Source/Python/GenPatchPcdTable/GenPatchPcdTable.py | 14 +-
 2 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/BaseTools/Source/Python/Common/Misc.py 
b/BaseTools/Source/Python/Common/Misc.py
index 3be1f0f..43d0818 100644
--- a/BaseTools/Source/Python/Common/Misc.py
+++ b/BaseTools/Source/Python/Common/Misc.py
@@ -72,11 +72,11 @@ def GetVariableOffset(mapfilepath, efifilepath, varnames):
 def _parseForGCC(lines, efifilepath, varnames):
 """ Parse map file generated by GCC linker """
 status = 0
 sections = []
 varoffset = []
-for line in lines:
+for index, line in enumerate(lines):
 line = line.strip()
 # status machine transection
 if status == 0 and line == "Memory Configuration":
 status = 1
 continue
@@ -86,18 +86,21 @@ def _parseForGCC(lines, efifilepath, varnames):
 elif status ==2 and line == 'START GROUP':
 status = 3
 continue
 
 # status handler
-if status == 2:
+if status == 3:
 m = re.match('^([\w_\.]+) +([\da-fA-Fx]+) +([\da-fA-Fx]+)$', line)
 if m != None:
 sections.append(m.groups(0))
 for varname in varnames:
-m = re.match("^([\da-fA-Fx]+) +[_]*(%s)$" % varname, line)
+m = re.match(".data.(%s)$" % varname, line)
 if m != None:
-varoffset.append((varname, int(m.groups(0)[0], 16) , 
int(sections[-1][1], 16), sections[-1][0]))
+if lines[index + 1]:
+m = re.match('^([\da-fA-Fx]+) +([\da-fA-Fx]+)', 
lines[index + 1].strip())
+if m != None:
+varoffset.append((varname, int(m.groups(0)[0], 16) 
, int(sections[-1][1], 16), sections[-1][0]))
 
 if not varoffset:
 return []
 # get section information from efi file
 efisecs = PeImageClass(efifilepath).SectionHeaderList
diff --git a/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py 
b/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
index f4fd51a..4452fac 100644
--- a/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
+++ b/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
@@ -64,11 +64,11 @@ def _parseForGCC(lines, efifilepath):
 """ Parse map file generated by GCC linker """
 status = 0
 imageBase = -1
 sections = []
 bpcds = []
-for line in lines:
+for index, line in enumerate(lines):
 line = line.strip()
 # status machine transection
 if status == 0 and line == "Memory Configuration":
 status = 1
 continue
@@ -78,18 +78,22 @@ def _parseForGCC(lines, efifilepath):
 elif status ==2 and line == 'START GROUP':
 status = 3
 continue
 
 # status handler
-if status == 2:
+if status == 3:
 m = re.match('^([\w_\.]+) +([\da-fA-Fx]+) +([\da-fA-Fx]+)$', line)
 if m != None:
 sections.append(m.groups(0))
-if status == 2:
-m = re.match("^([\da-fA-Fx]+) +[_]+gPcd_BinaryPatch_([\w_\d]+)$", 
line)
+if status == 3:
+m = re.match('^.data._gPcd_BinaryPatch_([\w_\d]+)$', line)
 if m != None:
-bpcds.append((m.groups(0)[1], int(m.groups(0)[0], 16) , 
int(sections[-1][1], 16), sections[-1][0]))
+if lines[index + 1]:
+PcdName = m.groups(0)[0]
+m = re.match('^([\da-fA-Fx]+) +([\da-fA-Fx]+)', 
lines[index + 1].strip())
+if m != None:
+bpcds.append((PcdName, int(m.groups(0)[0], 16) , 
int(sections[-1][1], 16), sections[-1][0]))
 
 # get section information from efi file
 efisecs = PeImageClass(efifilepath).SectionHeaderList
 if efisecs == None or len(efisecs) == 0:
 return None
-- 
2.6.1.windows.1

___
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel