From: "Gao, Liming" <liming.gao@intel.com>
To: "Zhu, Yonghong" <yonghong.zhu@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [Patch] BaseTools: parse map file generated by Xcode on Mac
Date: Thu, 2 Nov 2017 14:13:19 +0000 [thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E1775C8@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <1509599856-17040-1-git-send-email-yonghong.zhu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
> -----Original Message-----
> From: Zhu, Yonghong
> Sent: Thursday, November 2, 2017 1:18 PM
> To: edk2-devel@lists.01.org
> Cc: Gao, Liming <liming.gao@intel.com>
> Subject: [Patch] BaseTools: parse map file generated by Xcode on Mac
>
> Add support to parse map file generated by Xcode on Mac to get
> variable offset and Patchable Pcd info in current EFI file.
>
> Cc: Liming Gao <liming.gao@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
> ---
> BaseTools/Source/Python/Common/Misc.py | 18 ++++++++++++++++++
> .../Python/GenPatchPcdTable/GenPatchPcdTable.py | 19 ++++++++++++++++++-
> 2 files changed, 36 insertions(+), 1 deletion(-)
>
> diff --git a/BaseTools/Source/Python/Common/Misc.py b/BaseTools/Source/Python/Common/Misc.py
> index dbb711e..5299cf1 100644
> --- a/BaseTools/Source/Python/Common/Misc.py
> +++ b/BaseTools/Source/Python/Common/Misc.py
> @@ -65,12 +65,30 @@ def GetVariableOffset(mapfilepath, efifilepath, varnames):
> if len(lines) == 0: return None
> firstline = lines[0].strip()
> if (firstline.startswith("Archive member included ") and
> firstline.endswith(" file (symbol)")):
> return _parseForGCC(lines, efifilepath, varnames)
> + if firstline.startswith("# Path:"):
> + return _parseForXcode(lines, efifilepath, varnames)
> return _parseGeneral(lines, efifilepath, varnames)
>
> +def _parseForXcode(lines, efifilepath, varnames):
> + status = 0
> + ret = []
> + for index, line in enumerate(lines):
> + line = line.strip()
> + if status == 0 and line == "# Symbols:":
> + status = 1
> + continue
> + if status == 1 and len(line) != 0:
> + for varname in varnames:
> + if varname in line:
> + m = re.match('^([\da-fA-FxX]+)([\s\S]*)([_]*%s)$' % varname, line)
> + if m != None:
> + ret.append((varname, m.group(1)))
> + return ret
> +
> def _parseForGCC(lines, efifilepath, varnames):
> """ Parse map file generated by GCC linker """
> status = 0
> sections = []
> varoffset = []
> diff --git a/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
> b/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
> index 4452fac..fdad5a4 100644
> --- a/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
> +++ b/BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
> @@ -3,11 +3,11 @@
> # The Patch PCD table like:
> #
> # PCD Name Offset in binary
> # ======== ================
> #
> -# Copyright (c) 2008 - 2016, Intel Corporation. All rights reserved.<BR>
> +# Copyright (c) 2008 - 2017, 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
> # http://opensource.org/licenses/bsd-license.php
> #
> @@ -56,12 +56,29 @@ def parsePcdInfoFromMapFile(mapfilepath, efifilepath):
> if len(lines) == 0: return None
> firstline = lines[0].strip()
> if (firstline.startswith("Archive member included ") and
> firstline.endswith(" file (symbol)")):
> return _parseForGCC(lines, efifilepath)
> + if firstline.startswith("# Path:"):
> + return _parseForXcode(lines, efifilepath)
> return _parseGeneral(lines, efifilepath)
>
> +def _parseForXcode(lines, efifilepath):
> + status = 0
> + pcds = []
> + for index, line in enumerate(lines):
> + line = line.strip()
> + if status == 0 and line == "# Symbols:":
> + status = 1
> + continue
> + if status == 1 and len(line) != 0:
> + if '_gPcd_BinaryPatch_' in line:
> + m = re.match('^([\da-fA-FxX]+)([\s\S]*)([_]*_gPcd_BinaryPatch_([\w]+))', line)
> + if m != None:
> + pcds.append((m.groups(0)[3], int(m.groups(0)[0], 16)))
> + return pcds
> +
> def _parseForGCC(lines, efifilepath):
> """ Parse map file generated by GCC linker """
> status = 0
> imageBase = -1
> sections = []
> --
> 2.6.1.windows.1
prev parent reply other threads:[~2017-11-02 14:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-02 5:17 [Patch] BaseTools: parse map file generated by Xcode on Mac Yonghong Zhu
2017-11-02 14:13 ` Gao, Liming [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A89E2EF3DFEDB4C8BFDE51014F606A14E1775C8@SHSMSX104.ccr.corp.intel.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox