]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/build/BuildReport.py
BaseTools: Pcd not used info should not in Module PCD section
[mirror_edk2.git] / BaseTools / Source / Python / build / BuildReport.py
1 ## @file
2 # Routines for generating build report.
3 #
4 # This module contains the functionality to generate build report after
5 # build all target completes successfully.
6 #
7 # Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
8 # This program and the accompanying materials
9 # are licensed and made available under the terms and conditions of the BSD License
10 # which accompanies this distribution. The full text of the license may be found at
11 # http://opensource.org/licenses/bsd-license.php
12 #
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16
17 ## Import Modules
18 #
19 import Common.LongFilePathOs as os
20 import re
21 import platform
22 import textwrap
23 import traceback
24 import sys
25 import time
26 import struct
27 import hashlib
28 import subprocess
29 import threading
30 from datetime import datetime
31 from StringIO import StringIO
32 from Common import EdkLogger
33 from Common.Misc import SaveFileOnChange
34 from Common.Misc import GuidStructureByteArrayToGuidString
35 from Common.Misc import GuidStructureStringToGuidString
36 from Common.InfClassObject import gComponentType2ModuleType
37 from Common.BuildToolError import FILE_WRITE_FAILURE
38 from Common.BuildToolError import CODE_ERROR
39 from Common.BuildToolError import COMMAND_FAILURE
40 from Common.BuildToolError import FORMAT_INVALID
41 from Common.LongFilePathSupport import OpenLongFilePath as open
42 from Common.MultipleWorkspace import MultipleWorkspace as mws
43 import Common.GlobalData as GlobalData
44 from AutoGen.AutoGen import ModuleAutoGen
45 from Common.Misc import PathClass
46 from Common.String import NormPath
47 from Common.DataType import *
48 import collections
49 from Common.Expression import *
50
51 ## Pattern to extract contents in EDK DXS files
52 gDxsDependencyPattern = re.compile(r"DEPENDENCY_START(.+)DEPENDENCY_END", re.DOTALL)
53
54 ## Pattern to find total FV total size, occupied size in flash report intermediate file
55 gFvTotalSizePattern = re.compile(r"EFI_FV_TOTAL_SIZE = (0x[0-9a-fA-F]+)")
56 gFvTakenSizePattern = re.compile(r"EFI_FV_TAKEN_SIZE = (0x[0-9a-fA-F]+)")
57
58 ## Pattern to find module size and time stamp in module summary report intermediate file
59 gModuleSizePattern = re.compile(r"MODULE_SIZE = (\d+)")
60 gTimeStampPattern = re.compile(r"TIME_STAMP = (\d+)")
61
62 ## Pattern to find GUID value in flash description files
63 gPcdGuidPattern = re.compile(r"PCD\((\w+)[.](\w+)\)")
64
65 ## Pattern to collect offset, GUID value pair in the flash report intermediate file
66 gOffsetGuidPattern = re.compile(r"(0x[0-9A-Fa-f]+) ([-A-Fa-f0-9]+)")
67
68 ## Pattern to find module base address and entry point in fixed flash map file
69 gModulePattern = r"\n[-\w]+\s*\(([^,]+),\s*BaseAddress=%(Address)s,\s*EntryPoint=%(Address)s\)\s*\(GUID=([-0-9A-Fa-f]+)[^)]*\)"
70 gMapFileItemPattern = re.compile(gModulePattern % {"Address" : "(-?0[xX][0-9A-Fa-f]+)"})
71
72 ## Pattern to find all module referenced header files in source files
73 gIncludePattern = re.compile(r'#include\s*["<]([^">]+)[">]')
74 gIncludePattern2 = re.compile(r"#include\s+EFI_([A-Z_]+)\s*[(]\s*(\w+)\s*[)]")
75
76 ## Pattern to find the entry point for EDK module using EDKII Glue library
77 gGlueLibEntryPoint = re.compile(r"__EDKII_GLUE_MODULE_ENTRY_POINT__\s*=\s*(\w+)")
78
79 ## Tags for MaxLength of line in report
80 gLineMaxLength = 120
81
82 ## Tags for end of line in report
83 gEndOfLine = "\r\n"
84
85 ## Tags for section start, end and separator
86 gSectionStart = ">" + "=" * (gLineMaxLength - 2) + "<"
87 gSectionEnd = "<" + "=" * (gLineMaxLength - 2) + ">" + "\n"
88 gSectionSep = "=" * gLineMaxLength
89
90 ## Tags for subsection start, end and separator
91 gSubSectionStart = ">" + "-" * (gLineMaxLength - 2) + "<"
92 gSubSectionEnd = "<" + "-" * (gLineMaxLength - 2) + ">"
93 gSubSectionSep = "-" * gLineMaxLength
94
95
96 ## The look up table to map PCD type to pair of report display type and DEC type
97 gPcdTypeMap = {
98 'FixedAtBuild' : ('FIXED', 'FixedAtBuild'),
99 'PatchableInModule': ('PATCH', 'PatchableInModule'),
100 'FeatureFlag' : ('FLAG', 'FeatureFlag'),
101 'Dynamic' : ('DYN', 'Dynamic'),
102 'DynamicHii' : ('DYNHII', 'Dynamic'),
103 'DynamicVpd' : ('DYNVPD', 'Dynamic'),
104 'DynamicEx' : ('DEX', 'DynamicEx'),
105 'DynamicExHii' : ('DEXHII', 'DynamicEx'),
106 'DynamicExVpd' : ('DEXVPD', 'DynamicEx'),
107 }
108
109 ## The look up table to map module type to driver type
110 gDriverTypeMap = {
111 'SEC' : '0x3 (SECURITY_CORE)',
112 'PEI_CORE' : '0x4 (PEI_CORE)',
113 'PEIM' : '0x6 (PEIM)',
114 'DXE_CORE' : '0x5 (DXE_CORE)',
115 'DXE_DRIVER' : '0x7 (DRIVER)',
116 'DXE_SAL_DRIVER' : '0x7 (DRIVER)',
117 'DXE_SMM_DRIVER' : '0x7 (DRIVER)',
118 'DXE_RUNTIME_DRIVER': '0x7 (DRIVER)',
119 'UEFI_DRIVER' : '0x7 (DRIVER)',
120 'UEFI_APPLICATION' : '0x9 (APPLICATION)',
121 'SMM_CORE' : '0xD (SMM_CORE)',
122 'SMM_DRIVER' : '0xA (SMM)', # Extension of module type to support PI 1.1 SMM drivers
123 'MM_STANDALONE' : '0xE (MM_STANDALONE)',
124 'MM_CORE_STANDALONE' : '0xF (MM_CORE_STANDALONE)'
125 }
126
127 ## The look up table of the supported opcode in the dependency expression binaries
128 gOpCodeList = ["BEFORE", "AFTER", "PUSH", "AND", "OR", "NOT", "TRUE", "FALSE", "END", "SOR"]
129
130 ##
131 # Writes a string to the file object.
132 #
133 # This function writes a string to the file object and a new line is appended
134 # afterwards. It may optionally wraps the string for better readability.
135 #
136 # @File The file object to write
137 # @String The string to be written to the file
138 # @Wrapper Indicates whether to wrap the string
139 #
140 def FileWrite(File, String, Wrapper=False):
141 if Wrapper:
142 String = textwrap.fill(String, 120)
143 File.write(String + gEndOfLine)
144
145 def ByteArrayForamt(Value):
146 IsByteArray = False
147 SplitNum = 16
148 ArrayList = []
149 if Value.startswith('{') and Value.endswith('}'):
150 Value = Value[1:-1]
151 ValueList = Value.split(',')
152 if len(ValueList) >= SplitNum:
153 IsByteArray = True
154 if IsByteArray:
155 if ValueList:
156 Len = len(ValueList)/SplitNum
157 for i, element in enumerate(ValueList):
158 ValueList[i] = '0x%02X' % int(element.strip(), 16)
159 if Len:
160 Id = 0
161 while (Id <= Len):
162 End = min(SplitNum*(Id+1), len(ValueList))
163 Str = ','.join(ValueList[SplitNum*Id : End])
164 if End == len(ValueList):
165 Str += '}'
166 ArrayList.append(Str)
167 break
168 else:
169 Str += ','
170 ArrayList.append(Str)
171 Id += 1
172 else:
173 ArrayList = [Value + '}']
174 return IsByteArray, ArrayList
175
176 ##
177 # Find all the header file that the module source directly includes.
178 #
179 # This function scans source code to find all header files the module may
180 # include. This is not accurate but very effective to find all the header
181 # file the module might include with #include statement.
182 #
183 # @Source The source file name
184 # @IncludePathList The list of include path to find the source file.
185 # @IncludeFiles The dictionary of current found include files.
186 #
187 def FindIncludeFiles(Source, IncludePathList, IncludeFiles):
188 FileContents = open(Source).read()
189 #
190 # Find header files with pattern #include "XXX.h" or #include <XXX.h>
191 #
192 for Match in gIncludePattern.finditer(FileContents):
193 FileName = Match.group(1).strip()
194 for Dir in [os.path.dirname(Source)] + IncludePathList:
195 FullFileName = os.path.normpath(os.path.join(Dir, FileName))
196 if os.path.exists(FullFileName):
197 IncludeFiles[FullFileName.lower().replace("\\", "/")] = FullFileName
198 break
199
200 #
201 # Find header files with pattern like #include EFI_PPI_CONSUMER(XXX)
202 #
203 for Match in gIncludePattern2.finditer(FileContents):
204 Key = Match.group(2)
205 Type = Match.group(1)
206 if "ARCH_PROTOCOL" in Type:
207 FileName = "ArchProtocol/%(Key)s/%(Key)s.h" % {"Key" : Key}
208 elif "PROTOCOL" in Type:
209 FileName = "Protocol/%(Key)s/%(Key)s.h" % {"Key" : Key}
210 elif "PPI" in Type:
211 FileName = "Ppi/%(Key)s/%(Key)s.h" % {"Key" : Key}
212 elif "GUID" in Type:
213 FileName = "Guid/%(Key)s/%(Key)s.h" % {"Key" : Key}
214 else:
215 continue
216 for Dir in IncludePathList:
217 FullFileName = os.path.normpath(os.path.join(Dir, FileName))
218 if os.path.exists(FullFileName):
219 IncludeFiles[FullFileName.lower().replace("\\", "/")] = FullFileName
220 break
221
222 ## Split each lines in file
223 #
224 # This method is used to split the lines in file to make the length of each line
225 # less than MaxLength.
226 #
227 # @param Content The content of file
228 # @param MaxLength The Max Length of the line
229 #
230 def FileLinesSplit(Content=None, MaxLength=None):
231 ContentList = Content.split(TAB_LINE_BREAK)
232 NewContent = ''
233 NewContentList = []
234 for Line in ContentList:
235 while len(Line.rstrip()) > MaxLength:
236 LineSpaceIndex = Line.rfind(TAB_SPACE_SPLIT, 0, MaxLength)
237 LineSlashIndex = Line.rfind(TAB_SLASH, 0, MaxLength)
238 LineBackSlashIndex = Line.rfind(TAB_BACK_SLASH, 0, MaxLength)
239 if max(LineSpaceIndex, LineSlashIndex, LineBackSlashIndex) > 0:
240 LineBreakIndex = max(LineSpaceIndex, LineSlashIndex, LineBackSlashIndex)
241 else:
242 LineBreakIndex = MaxLength
243 NewContentList.append(Line[:LineBreakIndex])
244 Line = Line[LineBreakIndex:]
245 if Line:
246 NewContentList.append(Line)
247 for NewLine in NewContentList:
248 NewContent += NewLine + TAB_LINE_BREAK
249
250 NewContent = NewContent.replace(TAB_LINE_BREAK, gEndOfLine).replace('\r\r\n', gEndOfLine)
251 return NewContent
252
253
254
255 ##
256 # Parse binary dependency expression section
257 #
258 # This utility class parses the dependency expression section and translate the readable
259 # GUID name and value.
260 #
261 class DepexParser(object):
262 ##
263 # Constructor function for class DepexParser
264 #
265 # This constructor function collect GUID values so that the readable
266 # GUID name can be translated.
267 #
268 # @param self The object pointer
269 # @param Wa Workspace context information
270 #
271 def __init__(self, Wa):
272 self._GuidDb = {}
273 for Pa in Wa.AutoGenObjectList:
274 for Package in Pa.PackageList:
275 for Protocol in Package.Protocols:
276 GuidValue = GuidStructureStringToGuidString(Package.Protocols[Protocol])
277 self._GuidDb[GuidValue.upper()] = Protocol
278 for Ppi in Package.Ppis:
279 GuidValue = GuidStructureStringToGuidString(Package.Ppis[Ppi])
280 self._GuidDb[GuidValue.upper()] = Ppi
281 for Guid in Package.Guids:
282 GuidValue = GuidStructureStringToGuidString(Package.Guids[Guid])
283 self._GuidDb[GuidValue.upper()] = Guid
284
285 ##
286 # Parse the binary dependency expression files.
287 #
288 # This function parses the binary dependency expression file and translate it
289 # to the instruction list.
290 #
291 # @param self The object pointer
292 # @param DepexFileName The file name of binary dependency expression file.
293 #
294 def ParseDepexFile(self, DepexFileName):
295 DepexFile = open(DepexFileName, "rb")
296 DepexStatement = []
297 OpCode = DepexFile.read(1)
298 while OpCode:
299 Statement = gOpCodeList[struct.unpack("B", OpCode)[0]]
300 if Statement in ["BEFORE", "AFTER", "PUSH"]:
301 GuidValue = "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X" % \
302 struct.unpack("=LHHBBBBBBBB", DepexFile.read(16))
303 GuidString = self._GuidDb.get(GuidValue, GuidValue)
304 Statement = "%s %s" % (Statement, GuidString)
305 DepexStatement.append(Statement)
306 OpCode = DepexFile.read(1)
307
308 return DepexStatement
309
310 ##
311 # Reports library information
312 #
313 # This class reports the module library subsection in the build report file.
314 #
315 class LibraryReport(object):
316 ##
317 # Constructor function for class LibraryReport
318 #
319 # This constructor function generates LibraryReport object for
320 # a module.
321 #
322 # @param self The object pointer
323 # @param M Module context information
324 #
325 def __init__(self, M):
326 self.LibraryList = []
327 if int(str(M.AutoGenVersion), 0) >= 0x00010005:
328 self._EdkIIModule = True
329 else:
330 self._EdkIIModule = False
331
332 for Lib in M.DependentLibraryList:
333 LibInfPath = str(Lib)
334 LibClassList = Lib.LibraryClass[0].LibraryClass
335 LibConstructorList = Lib.ConstructorList
336 LibDesstructorList = Lib.DestructorList
337 LibDepexList = Lib.DepexExpression[M.Arch, M.ModuleType]
338 for LibAutoGen in M.LibraryAutoGenList:
339 if LibInfPath == LibAutoGen.MetaFile.Path:
340 LibTime = LibAutoGen.BuildTime
341 break
342 self.LibraryList.append((LibInfPath, LibClassList, LibConstructorList, LibDesstructorList, LibDepexList, LibTime))
343
344 ##
345 # Generate report for module library information
346 #
347 # This function generates report for the module library.
348 # If the module is EDKII style one, the additional library class, library
349 # constructor/destructor and dependency expression may also be reported.
350 #
351 # @param self The object pointer
352 # @param File The file object for report
353 #
354 def GenerateReport(self, File):
355 if len(self.LibraryList) > 0:
356 FileWrite(File, gSubSectionStart)
357 FileWrite(File, TAB_BRG_LIBRARY)
358 FileWrite(File, gSubSectionSep)
359 for LibraryItem in self.LibraryList:
360 LibInfPath = LibraryItem[0]
361 FileWrite(File, LibInfPath)
362
363 #
364 # Report library class, library constructor and destructor for
365 # EDKII style module.
366 #
367 if self._EdkIIModule:
368 LibClass = LibraryItem[1]
369 EdkIILibInfo = ""
370 LibConstructor = " ".join(LibraryItem[2])
371 if LibConstructor:
372 EdkIILibInfo += " C = " + LibConstructor
373 LibDestructor = " ".join(LibraryItem[3])
374 if LibDestructor:
375 EdkIILibInfo += " D = " + LibDestructor
376 LibDepex = " ".join(LibraryItem[4])
377 if LibDepex:
378 EdkIILibInfo += " Depex = " + LibDepex
379 if LibraryItem[5]:
380 EdkIILibInfo += " Time = " + LibraryItem[5]
381 if EdkIILibInfo:
382 FileWrite(File, "{%s: %s}" % (LibClass, EdkIILibInfo))
383 else:
384 FileWrite(File, "{%s}" % LibClass)
385
386 FileWrite(File, gSubSectionEnd)
387
388 ##
389 # Reports dependency expression information
390 #
391 # This class reports the module dependency expression subsection in the build report file.
392 #
393 class DepexReport(object):
394 ##
395 # Constructor function for class DepexReport
396 #
397 # This constructor function generates DepexReport object for
398 # a module. If the module source contains the DXS file (usually EDK
399 # style module), it uses the dependency in DXS file; otherwise,
400 # it uses the dependency expression from its own INF [Depex] section
401 # and then merges with the ones from its dependent library INF.
402 #
403 # @param self The object pointer
404 # @param M Module context information
405 #
406 def __init__(self, M):
407 self.Depex = ""
408 self._DepexFileName = os.path.join(M.BuildDir, "OUTPUT", M.Module.BaseName + ".depex")
409 ModuleType = M.ModuleType
410 if not ModuleType:
411 ModuleType = gComponentType2ModuleType.get(M.ComponentType, "")
412
413 if ModuleType in ["SEC", "PEI_CORE", "DXE_CORE", "SMM_CORE", "MM_CORE_STANDALONE", "UEFI_APPLICATION"]:
414 return
415
416 for Source in M.SourceFileList:
417 if os.path.splitext(Source.Path)[1].lower() == ".dxs":
418 Match = gDxsDependencyPattern.search(open(Source.Path).read())
419 if Match:
420 self.Depex = Match.group(1).strip()
421 self.Source = "DXS"
422 break
423 else:
424 self.Depex = M.DepexExpressionList.get(M.ModuleType, "")
425 self.ModuleDepex = " ".join(M.Module.DepexExpression[M.Arch, M.ModuleType])
426 if not self.ModuleDepex:
427 self.ModuleDepex = "(None)"
428
429 LibDepexList = []
430 for Lib in M.DependentLibraryList:
431 LibDepex = " ".join(Lib.DepexExpression[M.Arch, M.ModuleType]).strip()
432 if LibDepex != "":
433 LibDepexList.append("(" + LibDepex + ")")
434 self.LibraryDepex = " AND ".join(LibDepexList)
435 if not self.LibraryDepex:
436 self.LibraryDepex = "(None)"
437 self.Source = "INF"
438
439 ##
440 # Generate report for module dependency expression information
441 #
442 # This function generates report for the module dependency expression.
443 #
444 # @param self The object pointer
445 # @param File The file object for report
446 # @param GlobalDepexParser The platform global Dependency expression parser object
447 #
448 def GenerateReport(self, File, GlobalDepexParser):
449 if not self.Depex:
450 return
451 FileWrite(File, gSubSectionStart)
452 if os.path.isfile(self._DepexFileName):
453 try:
454 DepexStatements = GlobalDepexParser.ParseDepexFile(self._DepexFileName)
455 FileWrite(File, "Final Dependency Expression (DEPEX) Instructions")
456 for DepexStatement in DepexStatements:
457 FileWrite(File, " %s" % DepexStatement)
458 FileWrite(File, gSubSectionSep)
459 except:
460 EdkLogger.warn(None, "Dependency expression file is corrupted", self._DepexFileName)
461
462 FileWrite(File, "Dependency Expression (DEPEX) from %s" % self.Source)
463
464 if self.Source == "INF":
465 FileWrite(File, "%s" % self.Depex, True)
466 FileWrite(File, gSubSectionSep)
467 FileWrite(File, "From Module INF: %s" % self.ModuleDepex, True)
468 FileWrite(File, "From Library INF: %s" % self.LibraryDepex, True)
469 else:
470 FileWrite(File, "%s" % self.Depex)
471 FileWrite(File, gSubSectionEnd)
472
473 ##
474 # Reports dependency expression information
475 #
476 # This class reports the module build flags subsection in the build report file.
477 #
478 class BuildFlagsReport(object):
479 ##
480 # Constructor function for class BuildFlagsReport
481 #
482 # This constructor function generates BuildFlagsReport object for
483 # a module. It reports the build tool chain tag and all relevant
484 # build flags to build the module.
485 #
486 # @param self The object pointer
487 # @param M Module context information
488 #
489 def __init__(self, M):
490 BuildOptions = {}
491 #
492 # Add build flags according to source file extension so that
493 # irrelevant ones can be filtered out.
494 #
495 for Source in M.SourceFileList:
496 Ext = os.path.splitext(Source.File)[1].lower()
497 if Ext in [".c", ".cc", ".cpp"]:
498 BuildOptions["CC"] = 1
499 elif Ext in [".s", ".asm"]:
500 BuildOptions["PP"] = 1
501 BuildOptions["ASM"] = 1
502 elif Ext in [".vfr"]:
503 BuildOptions["VFRPP"] = 1
504 BuildOptions["VFR"] = 1
505 elif Ext in [".dxs"]:
506 BuildOptions["APP"] = 1
507 BuildOptions["CC"] = 1
508 elif Ext in [".asl"]:
509 BuildOptions["ASLPP"] = 1
510 BuildOptions["ASL"] = 1
511 elif Ext in [".aslc"]:
512 BuildOptions["ASLCC"] = 1
513 BuildOptions["ASLDLINK"] = 1
514 BuildOptions["CC"] = 1
515 elif Ext in [".asm16"]:
516 BuildOptions["ASMLINK"] = 1
517 BuildOptions["SLINK"] = 1
518 BuildOptions["DLINK"] = 1
519
520 #
521 # Save module build flags.
522 #
523 self.ToolChainTag = M.ToolChain
524 self.BuildFlags = {}
525 for Tool in BuildOptions:
526 self.BuildFlags[Tool + "_FLAGS"] = M.BuildOption.get(Tool, {}).get("FLAGS", "")
527
528 ##
529 # Generate report for module build flags information
530 #
531 # This function generates report for the module build flags expression.
532 #
533 # @param self The object pointer
534 # @param File The file object for report
535 #
536 def GenerateReport(self, File):
537 FileWrite(File, gSubSectionStart)
538 FileWrite(File, "Build Flags")
539 FileWrite(File, "Tool Chain Tag: %s" % self.ToolChainTag)
540 for Tool in self.BuildFlags:
541 FileWrite(File, gSubSectionSep)
542 FileWrite(File, "%s = %s" % (Tool, self.BuildFlags[Tool]), True)
543
544 FileWrite(File, gSubSectionEnd)
545
546
547 ##
548 # Reports individual module information
549 #
550 # This class reports the module section in the build report file.
551 # It comprises of module summary, module PCD, library, dependency expression,
552 # build flags sections.
553 #
554 class ModuleReport(object):
555 ##
556 # Constructor function for class ModuleReport
557 #
558 # This constructor function generates ModuleReport object for
559 # a separate module in a platform build.
560 #
561 # @param self The object pointer
562 # @param M Module context information
563 # @param ReportType The kind of report items in the final report file
564 #
565 def __init__(self, M, ReportType):
566 self.ModuleName = M.Module.BaseName
567 self.ModuleInfPath = M.MetaFile.File
568 self.FileGuid = M.Guid
569 self.Size = 0
570 self.BuildTimeStamp = None
571 self.Hash = 0
572 self.DriverType = ""
573 if not M.IsLibrary:
574 ModuleType = M.ModuleType
575 if not ModuleType:
576 ModuleType = gComponentType2ModuleType.get(M.ComponentType, "")
577 #
578 # If a module complies to PI 1.1, promote Module type to "SMM_DRIVER"
579 #
580 if ModuleType == "DXE_SMM_DRIVER":
581 PiSpec = M.Module.Specification.get("PI_SPECIFICATION_VERSION", "0x00010000")
582 if int(PiSpec, 0) >= 0x0001000A:
583 ModuleType = "SMM_DRIVER"
584 self.DriverType = gDriverTypeMap.get(ModuleType, "0x2 (FREE_FORM)")
585 self.UefiSpecVersion = M.Module.Specification.get("UEFI_SPECIFICATION_VERSION", "")
586 self.PiSpecVersion = M.Module.Specification.get("PI_SPECIFICATION_VERSION", "")
587 self.PciDeviceId = M.Module.Defines.get("PCI_DEVICE_ID", "")
588 self.PciVendorId = M.Module.Defines.get("PCI_VENDOR_ID", "")
589 self.PciClassCode = M.Module.Defines.get("PCI_CLASS_CODE", "")
590 self.BuildTime = M.BuildTime
591
592 self._BuildDir = M.BuildDir
593 self.ModulePcdSet = {}
594 if "PCD" in ReportType:
595 #
596 # Collect all module used PCD set: module INF referenced directly or indirectly.
597 # It also saves module INF default values of them in case they exist.
598 #
599 for Pcd in M.ModulePcdList + M.LibraryPcdList:
600 self.ModulePcdSet.setdefault((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Type), (Pcd.InfDefaultValue, Pcd.DefaultValue))
601
602 self.LibraryReport = None
603 if "LIBRARY" in ReportType:
604 self.LibraryReport = LibraryReport(M)
605
606 self.DepexReport = None
607 if "DEPEX" in ReportType:
608 self.DepexReport = DepexReport(M)
609
610 if "BUILD_FLAGS" in ReportType:
611 self.BuildFlagsReport = BuildFlagsReport(M)
612
613
614 ##
615 # Generate report for module information
616 #
617 # This function generates report for separate module expression
618 # in a platform build.
619 #
620 # @param self The object pointer
621 # @param File The file object for report
622 # @param GlobalPcdReport The platform global PCD report object
623 # @param GlobalPredictionReport The platform global Prediction report object
624 # @param GlobalDepexParser The platform global Dependency expression parser object
625 # @param ReportType The kind of report items in the final report file
626 #
627 def GenerateReport(self, File, GlobalPcdReport, GlobalPredictionReport, GlobalDepexParser, ReportType):
628 FileWrite(File, gSectionStart)
629
630 FwReportFileName = os.path.join(self._BuildDir, "DEBUG", self.ModuleName + ".txt")
631 if os.path.isfile(FwReportFileName):
632 try:
633 FileContents = open(FwReportFileName).read()
634 Match = gModuleSizePattern.search(FileContents)
635 if Match:
636 self.Size = int(Match.group(1))
637
638 Match = gTimeStampPattern.search(FileContents)
639 if Match:
640 self.BuildTimeStamp = datetime.fromtimestamp(int(Match.group(1)))
641 except IOError:
642 EdkLogger.warn(None, "Fail to read report file", FwReportFileName)
643
644 if "HASH" in ReportType:
645 OutputDir = os.path.join(self._BuildDir, "OUTPUT")
646 DefaultEFIfile = os.path.join(OutputDir, self.ModuleName + ".efi")
647 if os.path.isfile(DefaultEFIfile):
648 Tempfile = os.path.join(OutputDir, self.ModuleName + "_hash.tmp")
649 # rebase the efi image since its base address may not zero
650 cmd = ["GenFw", "--rebase", str(0), "-o", Tempfile, DefaultEFIfile]
651 try:
652 PopenObject = subprocess.Popen(' '.join(cmd), stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
653 except Exception, X:
654 EdkLogger.error("GenFw", COMMAND_FAILURE, ExtraData="%s: %s" % (str(X), cmd[0]))
655 EndOfProcedure = threading.Event()
656 EndOfProcedure.clear()
657 if PopenObject.stderr:
658 StdErrThread = threading.Thread(target=ReadMessage, args=(PopenObject.stderr, EdkLogger.quiet, EndOfProcedure))
659 StdErrThread.setName("STDERR-Redirector")
660 StdErrThread.setDaemon(False)
661 StdErrThread.start()
662 # waiting for program exit
663 PopenObject.wait()
664 if PopenObject.stderr:
665 StdErrThread.join()
666 if PopenObject.returncode != 0:
667 EdkLogger.error("GenFw", COMMAND_FAILURE, "Failed to generate firmware hash image for %s" % (DefaultEFIfile))
668 if os.path.isfile(Tempfile):
669 self.Hash = hashlib.sha1()
670 buf = open(Tempfile, 'rb').read()
671 if self.Hash.update(buf):
672 self.Hash = self.Hash.update(buf)
673 self.Hash = self.Hash.hexdigest()
674 os.remove(Tempfile)
675
676 FileWrite(File, "Module Summary")
677 FileWrite(File, "Module Name: %s" % self.ModuleName)
678 FileWrite(File, "Module INF Path: %s" % self.ModuleInfPath)
679 FileWrite(File, "File GUID: %s" % self.FileGuid)
680 if self.Size:
681 FileWrite(File, "Size: 0x%X (%.2fK)" % (self.Size, self.Size / 1024.0))
682 if self.Hash:
683 FileWrite(File, "SHA1 HASH: %s *%s" % (self.Hash, self.ModuleName + ".efi"))
684 if self.BuildTimeStamp:
685 FileWrite(File, "Build Time Stamp: %s" % self.BuildTimeStamp)
686 if self.BuildTime:
687 FileWrite(File, "Module Build Time: %s" % self.BuildTime)
688 if self.DriverType:
689 FileWrite(File, "Driver Type: %s" % self.DriverType)
690 if self.UefiSpecVersion:
691 FileWrite(File, "UEFI Spec Version: %s" % self.UefiSpecVersion)
692 if self.PiSpecVersion:
693 FileWrite(File, "PI Spec Version: %s" % self.PiSpecVersion)
694 if self.PciDeviceId:
695 FileWrite(File, "PCI Device ID: %s" % self.PciDeviceId)
696 if self.PciVendorId:
697 FileWrite(File, "PCI Vendor ID: %s" % self.PciVendorId)
698 if self.PciClassCode:
699 FileWrite(File, "PCI Class Code: %s" % self.PciClassCode)
700
701 FileWrite(File, gSectionSep)
702
703 if "PCD" in ReportType:
704 GlobalPcdReport.GenerateReport(File, self.ModulePcdSet)
705
706 if "LIBRARY" in ReportType:
707 self.LibraryReport.GenerateReport(File)
708
709 if "DEPEX" in ReportType:
710 self.DepexReport.GenerateReport(File, GlobalDepexParser)
711
712 if "BUILD_FLAGS" in ReportType:
713 self.BuildFlagsReport.GenerateReport(File)
714
715 if "FIXED_ADDRESS" in ReportType and self.FileGuid:
716 GlobalPredictionReport.GenerateReport(File, self.FileGuid)
717
718 FileWrite(File, gSectionEnd)
719
720 def ReadMessage(From, To, ExitFlag):
721 while True:
722 # read one line a time
723 Line = From.readline()
724 # empty string means "end"
725 if Line is not None and Line != "":
726 To(Line.rstrip())
727 else:
728 break
729 if ExitFlag.isSet():
730 break
731
732 ##
733 # Reports platform and module PCD information
734 #
735 # This class reports the platform PCD section and module PCD subsection
736 # in the build report file.
737 #
738 class PcdReport(object):
739 ##
740 # Constructor function for class PcdReport
741 #
742 # This constructor function generates PcdReport object a platform build.
743 # It collects the whole PCD database from platform DSC files, platform
744 # flash description file and package DEC files.
745 #
746 # @param self The object pointer
747 # @param Wa Workspace context information
748 #
749 def __init__(self, Wa):
750 self.AllPcds = {}
751 self.UnusedPcds = {}
752 self.ConditionalPcds = {}
753 self.MaxLen = 0
754 self.Arch = None
755 if Wa.FdfProfile:
756 self.FdfPcdSet = Wa.FdfProfile.PcdDict
757 else:
758 self.FdfPcdSet = {}
759
760 self.DefaultStoreSingle = True
761 self.SkuSingle = True
762 if GlobalData.gDefaultStores and len(GlobalData.gDefaultStores) > 1:
763 self.DefaultStoreSingle = False
764 if GlobalData.gSkuids and len(GlobalData.gSkuids) > 1:
765 self.SkuSingle = False
766
767 self.ModulePcdOverride = {}
768 for Pa in Wa.AutoGenObjectList:
769 self.Arch = Pa.Arch
770 #
771 # Collect all platform referenced PCDs and grouped them by PCD token space
772 # GUID C Names
773 #
774 for Pcd in Pa.AllPcdList:
775 PcdList = self.AllPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
776 if Pcd not in PcdList:
777 PcdList.append(Pcd)
778 if len(Pcd.TokenCName) > self.MaxLen:
779 self.MaxLen = len(Pcd.TokenCName)
780 #
781 # Collect the PCD defined in DSC/FDF file, but not used in module
782 #
783 UnusedPcdFullList = []
784 for item in Pa.Platform.Pcds:
785 Pcd = Pa.Platform.Pcds[item]
786 if not Pcd.Type:
787 # check the Pcd in FDF file, whether it is used in module first
788 for T in ["FixedAtBuild", "PatchableInModule", "FeatureFlag", "Dynamic", "DynamicEx"]:
789 PcdList = self.AllPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(T, [])
790 if Pcd in PcdList:
791 Pcd.Type = T
792 break
793 if not Pcd.Type:
794 PcdTypeFlag = False
795 for package in Pa.PackageList:
796 for T in ["FixedAtBuild", "PatchableInModule", "FeatureFlag", "Dynamic", "DynamicEx"]:
797 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, T) in package.Pcds:
798 Pcd.Type = T
799 PcdTypeFlag = True
800 if not Pcd.DatumType:
801 Pcd.DatumType = package.Pcds[(Pcd.TokenCName, Pcd.TokenSpaceGuidCName, T)].DatumType
802 break
803 if PcdTypeFlag:
804 break
805 if not Pcd.DatumType:
806 PcdType = Pcd.Type
807 # Try to remove Hii and Vpd suffix
808 if PcdType.startswith("DynamicEx"):
809 PcdType = "DynamicEx"
810 elif PcdType.startswith("Dynamic"):
811 PcdType = "Dynamic"
812 for package in Pa.PackageList:
813 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, PcdType) in package.Pcds:
814 Pcd.DatumType = package.Pcds[(Pcd.TokenCName, Pcd.TokenSpaceGuidCName, PcdType)].DatumType
815 break
816
817 PcdList = self.AllPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
818 if Pcd not in PcdList and Pcd not in UnusedPcdFullList:
819 UnusedPcdFullList.append(Pcd)
820 if len(Pcd.TokenCName) > self.MaxLen:
821 self.MaxLen = len(Pcd.TokenCName)
822
823 if GlobalData.gConditionalPcds:
824 for PcdItem in GlobalData.gConditionalPcds:
825 if '.' in PcdItem:
826 (TokenSpaceGuidCName, TokenCName) = PcdItem.split('.')
827 if (TokenCName, TokenSpaceGuidCName) in Pa.Platform.Pcds.keys():
828 Pcd = Pa.Platform.Pcds[(TokenCName, TokenSpaceGuidCName)]
829 PcdList = self.ConditionalPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
830 if Pcd not in PcdList:
831 PcdList.append(Pcd)
832
833 UnusedPcdList = []
834 if UnusedPcdFullList:
835 for Pcd in UnusedPcdFullList:
836 if Pcd.TokenSpaceGuidCName + '.' + Pcd.TokenCName in GlobalData.gConditionalPcds:
837 continue
838 UnusedPcdList.append(Pcd)
839
840 for Pcd in UnusedPcdList:
841 PcdList = self.UnusedPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
842 if Pcd not in PcdList:
843 PcdList.append(Pcd)
844
845 for Module in Pa.Platform.Modules.values():
846 #
847 # Collect module override PCDs
848 #
849 for ModulePcd in Module.M.ModulePcdList + Module.M.LibraryPcdList:
850 TokenCName = ModulePcd.TokenCName
851 TokenSpaceGuid = ModulePcd.TokenSpaceGuidCName
852 ModuleDefault = ModulePcd.DefaultValue
853 ModulePath = os.path.basename(Module.M.MetaFile.File)
854 self.ModulePcdOverride.setdefault((TokenCName, TokenSpaceGuid), {})[ModulePath] = ModuleDefault
855
856
857 #
858 # Collect PCD DEC default value.
859 #
860 self.DecPcdDefault = {}
861 self._GuidDict = {}
862 for Pa in Wa.AutoGenObjectList:
863 for Package in Pa.PackageList:
864 Guids = Package.Guids
865 self._GuidDict.update(Guids)
866 for (TokenCName, TokenSpaceGuidCName, DecType) in Package.Pcds:
867 DecDefaultValue = Package.Pcds[TokenCName, TokenSpaceGuidCName, DecType].DefaultValue
868 self.DecPcdDefault.setdefault((TokenCName, TokenSpaceGuidCName, DecType), DecDefaultValue)
869 #
870 # Collect PCDs defined in DSC common section
871 #
872 self.DscPcdDefault = {}
873 for Pa in Wa.AutoGenObjectList:
874 for (TokenCName, TokenSpaceGuidCName) in Pa.Platform.Pcds:
875 DscDefaultValue = Pa.Platform.Pcds[(TokenCName, TokenSpaceGuidCName)].DscDefaultValue
876 if DscDefaultValue:
877 self.DscPcdDefault[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
878
879 def GenerateReport(self, File, ModulePcdSet):
880 if not ModulePcdSet:
881 if self.ConditionalPcds:
882 self.GenerateReportDetail(File, ModulePcdSet, 1)
883 if self.UnusedPcds:
884 self.GenerateReportDetail(File, ModulePcdSet, 2)
885 self.GenerateReportDetail(File, ModulePcdSet)
886
887 ##
888 # Generate report for PCD information
889 #
890 # This function generates report for separate module expression
891 # in a platform build.
892 #
893 # @param self The object pointer
894 # @param File The file object for report
895 # @param ModulePcdSet Set of all PCDs referenced by module or None for
896 # platform PCD report
897 # @param ReportySubType 0 means platform/module PCD report, 1 means Conditional
898 # directives section report, 2 means Unused Pcds section report
899 # @param DscOverridePcds Module DSC override PCDs set
900 #
901 def GenerateReportDetail(self, File, ModulePcdSet, ReportSubType = 0):
902 PcdDict = self.AllPcds
903 if ReportSubType == 1:
904 PcdDict = self.ConditionalPcds
905 elif ReportSubType == 2:
906 PcdDict = self.UnusedPcds
907
908 if not ModulePcdSet:
909 FileWrite(File, gSectionStart)
910 if ReportSubType == 1:
911 FileWrite(File, "Conditional Directives used by the build system")
912 elif ReportSubType == 2:
913 FileWrite(File, "PCDs not used by modules or in conditional directives")
914 else:
915 FileWrite(File, "Platform Configuration Database Report")
916
917 FileWrite(File, " *B - PCD override in the build option")
918 FileWrite(File, " *P - Platform scoped PCD override in DSC file")
919 FileWrite(File, " *F - Platform scoped PCD override in FDF file")
920 if not ReportSubType:
921 FileWrite(File, " *M - Module scoped PCD override")
922 FileWrite(File, gSectionSep)
923 else:
924 if not ReportSubType and ModulePcdSet:
925 #
926 # For module PCD sub-section
927 #
928 FileWrite(File, gSubSectionStart)
929 FileWrite(File, TAB_BRG_PCD)
930 FileWrite(File, gSubSectionSep)
931
932 for Key in PcdDict:
933 #
934 # Group PCD by their token space GUID C Name
935 #
936 First = True
937 for Type in PcdDict[Key]:
938 #
939 # Group PCD by their usage type
940 #
941 TypeName, DecType = gPcdTypeMap.get(Type, ("", Type))
942 for Pcd in PcdDict[Key][Type]:
943 PcdTokenCName = Pcd.TokenCName
944 MixedPcdFlag = False
945 if GlobalData.MixedPcd:
946 for PcdKey in GlobalData.MixedPcd:
947 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName) in GlobalData.MixedPcd[PcdKey]:
948 PcdTokenCName = PcdKey[0]
949 MixedPcdFlag = True
950 if MixedPcdFlag and not ModulePcdSet:
951 continue
952 #
953 # Get PCD default value and their override relationship
954 #
955 DecDefaultValue = self.DecPcdDefault.get((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, DecType))
956 DscDefaultValue = self.DscPcdDefault.get((Pcd.TokenCName, Pcd.TokenSpaceGuidCName))
957 DscDefaultValBak = DscDefaultValue
958 DscDefaultValue = self.FdfPcdSet.get((Pcd.TokenCName, Key), DscDefaultValue)
959 if DscDefaultValue != DscDefaultValBak:
960 try:
961 DscDefaultValue = ValueExpressionEx(DscDefaultValue, Pcd.DatumType, self._GuidDict)(True)
962 except BadExpression, DscDefaultValue:
963 EdkLogger.error('BuildReport', FORMAT_INVALID, "PCD Value: %s, Type: %s" %(DscDefaultValue, Pcd.DatumType))
964
965 InfDefaultValue = None
966
967 PcdValue = DecDefaultValue
968 if DscDefaultValue:
969 PcdValue = DscDefaultValue
970 if ModulePcdSet is not None:
971 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Type) not in ModulePcdSet:
972 continue
973 InfDefault, PcdValue = ModulePcdSet[Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Type]
974 if InfDefault == "":
975 InfDefault = None
976
977 BuildOptionMatch = False
978 if GlobalData.BuildOptionPcd:
979 for pcd in GlobalData.BuildOptionPcd:
980 if (Pcd.TokenSpaceGuidCName, Pcd.TokenCName) == (pcd[0], pcd[1]):
981 if pcd[2]:
982 continue
983 PcdValue = pcd[3]
984 Pcd.DefaultValue = PcdValue
985 BuildOptionMatch = True
986 break
987
988 if First:
989 if ModulePcdSet is None:
990 FileWrite(File, "")
991 FileWrite(File, Key)
992 First = False
993
994
995 if Pcd.DatumType in ('UINT8', 'UINT16', 'UINT32', 'UINT64'):
996 PcdValueNumber = int(PcdValue.strip(), 0)
997 if DecDefaultValue is None:
998 DecMatch = True
999 else:
1000 DecDefaultValueNumber = int(DecDefaultValue.strip(), 0)
1001 DecMatch = (DecDefaultValueNumber == PcdValueNumber)
1002
1003 if InfDefaultValue is None:
1004 InfMatch = True
1005 else:
1006 InfDefaultValueNumber = int(InfDefaultValue.strip(), 0)
1007 InfMatch = (InfDefaultValueNumber == PcdValueNumber)
1008
1009 if DscDefaultValue is None:
1010 DscMatch = True
1011 else:
1012 DscDefaultValueNumber = int(DscDefaultValue.strip(), 0)
1013 DscMatch = (DscDefaultValueNumber == PcdValueNumber)
1014 else:
1015 if DecDefaultValue is None:
1016 DecMatch = True
1017 else:
1018 DecMatch = (DecDefaultValue.strip() == PcdValue.strip())
1019
1020 if InfDefaultValue is None:
1021 InfMatch = True
1022 else:
1023 InfMatch = (InfDefaultValue.strip() == PcdValue.strip())
1024
1025 if DscDefaultValue is None:
1026 DscMatch = True
1027 else:
1028 DscMatch = (DscDefaultValue.strip() == PcdValue.strip())
1029
1030 IsStructure = False
1031 if GlobalData.gStructurePcd and (self.Arch in GlobalData.gStructurePcd.keys()) and ((Pcd.TokenCName, Pcd.TokenSpaceGuidCName) in GlobalData.gStructurePcd[self.Arch]):
1032 IsStructure = True
1033 if TypeName in ('DYNVPD', 'DEXVPD'):
1034 SkuInfoList = Pcd.SkuInfoList
1035 Pcd = GlobalData.gStructurePcd[self.Arch][(Pcd.TokenCName, Pcd.TokenSpaceGuidCName)]
1036 Pcd.DatumType = Pcd.StructName
1037 if TypeName in ('DYNVPD', 'DEXVPD'):
1038 Pcd.SkuInfoList = SkuInfoList
1039 if Pcd.PcdFieldValueFromComm:
1040 BuildOptionMatch = True
1041 DecMatch = False
1042 elif Pcd.SkuOverrideValues:
1043 DscOverride = False
1044 if not Pcd.SkuInfoList:
1045 OverrideValues = Pcd.SkuOverrideValues
1046 if OverrideValues:
1047 Keys = OverrideValues.keys()
1048 Data = OverrideValues[Keys[0]]
1049 Struct = Data.values()[0]
1050 DscOverride = self.ParseStruct(Struct)
1051 else:
1052 SkuList = sorted(Pcd.SkuInfoList.keys())
1053 for Sku in SkuList:
1054 SkuInfo = Pcd.SkuInfoList[Sku]
1055 if TypeName in ('DYNHII', 'DEXHII'):
1056 if SkuInfo.DefaultStoreDict:
1057 DefaultStoreList = sorted(SkuInfo.DefaultStoreDict.keys())
1058 for DefaultStore in DefaultStoreList:
1059 OverrideValues = Pcd.SkuOverrideValues[Sku]
1060 DscOverride = self.ParseStruct(OverrideValues[DefaultStore])
1061 if DscOverride:
1062 break
1063 else:
1064 OverrideValues = Pcd.SkuOverrideValues[Sku]
1065 if OverrideValues:
1066 Keys = OverrideValues.keys()
1067 OverrideFieldStruct = self.OverrideFieldValue(Pcd, OverrideValues[Keys[0]])
1068 DscOverride = self.ParseStruct(OverrideFieldStruct)
1069 if DscOverride:
1070 break
1071 if DscOverride:
1072 DscMatch = True
1073 DecMatch = False
1074
1075 #
1076 # Report PCD item according to their override relationship
1077 #
1078 if DecMatch and InfMatch:
1079 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, ' ')
1080 elif BuildOptionMatch:
1081 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*B')
1082 else:
1083 if DscMatch:
1084 if (Pcd.TokenCName, Key) in self.FdfPcdSet:
1085 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*F')
1086 else:
1087 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*P')
1088 else:
1089 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*M')
1090
1091 if ModulePcdSet is None:
1092 if IsStructure:
1093 continue
1094 if not TypeName in ('PATCH', 'FLAG', 'FIXED'):
1095 continue
1096 if not BuildOptionMatch:
1097 ModuleOverride = self.ModulePcdOverride.get((Pcd.TokenCName, Pcd.TokenSpaceGuidCName), {})
1098 for ModulePath in ModuleOverride:
1099 ModuleDefault = ModuleOverride[ModulePath]
1100 if Pcd.DatumType in ('UINT8', 'UINT16', 'UINT32', 'UINT64'):
1101 ModulePcdDefaultValueNumber = int(ModuleDefault.strip(), 0)
1102 Match = (ModulePcdDefaultValueNumber == PcdValueNumber)
1103 else:
1104 Match = (ModuleDefault.strip() == PcdValue.strip())
1105 if Match:
1106 continue
1107 IsByteArray, ArrayList = ByteArrayForamt(ModuleDefault.strip())
1108 if IsByteArray:
1109 FileWrite(File, ' *M %-*s = %s' % (self.MaxLen + 19, ModulePath, '{'))
1110 for Array in ArrayList:
1111 FileWrite(File, '%s' % (Array))
1112 else:
1113 FileWrite(File, ' *M %-*s = %s' % (self.MaxLen + 19, ModulePath, ModuleDefault.strip()))
1114
1115 if ModulePcdSet is None:
1116 FileWrite(File, gSectionEnd)
1117 else:
1118 if not ReportSubType and ModulePcdSet:
1119 FileWrite(File, gSubSectionEnd)
1120
1121 def ParseStruct(self, struct):
1122 HasDscOverride = False
1123 if struct:
1124 for _, Values in struct.items():
1125 if Values[1] and Values[1].endswith('.dsc'):
1126 HasDscOverride = True
1127 break
1128 return HasDscOverride
1129
1130 def PrintPcdDefault(self, File, Pcd, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue):
1131 if not DscMatch and DscDefaultValue is not None:
1132 Value = DscDefaultValue.strip()
1133 IsByteArray, ArrayList = ByteArrayForamt(Value)
1134 if IsByteArray:
1135 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'DSC DEFAULT', "{"))
1136 for Array in ArrayList:
1137 FileWrite(File, '%s' % (Array))
1138 else:
1139 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'DSC DEFAULT', Value))
1140 if not InfMatch and InfDefaultValue is not None:
1141 Value = InfDefaultValue.strip()
1142 IsByteArray, ArrayList = ByteArrayForamt(Value)
1143 if IsByteArray:
1144 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'INF DEFAULT', "{"))
1145 for Array in ArrayList:
1146 FileWrite(File, '%s' % (Array))
1147 else:
1148 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'INF DEFAULT', Value))
1149
1150 if not DecMatch and DecDefaultValue is not None:
1151 Value = DecDefaultValue.strip()
1152 IsByteArray, ArrayList = ByteArrayForamt(Value)
1153 if IsByteArray:
1154 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'DEC DEFAULT', "{"))
1155 for Array in ArrayList:
1156 FileWrite(File, '%s' % (Array))
1157 else:
1158 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'DEC DEFAULT', Value))
1159 if IsStructure:
1160 self.PrintStructureInfo(File, Pcd.DefaultValues)
1161 if DecMatch and IsStructure:
1162 self.PrintStructureInfo(File, Pcd.DefaultValues)
1163
1164 def PrintPcdValue(self, File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, Flag = ' '):
1165 if not Pcd.SkuInfoList:
1166 Value = Pcd.DefaultValue
1167 IsByteArray, ArrayList = ByteArrayForamt(Value)
1168 if IsByteArray:
1169 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '{'))
1170 for Array in ArrayList:
1171 FileWrite(File, '%s' % (Array))
1172 else:
1173 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', Value))
1174 if IsStructure:
1175 OverrideValues = Pcd.SkuOverrideValues
1176 if OverrideValues:
1177 Keys = OverrideValues.keys()
1178 Data = OverrideValues[Keys[0]]
1179 Struct = Data.values()[0]
1180 OverrideFieldStruct = self.OverrideFieldValue(Pcd, Struct)
1181 self.PrintStructureInfo(File, OverrideFieldStruct)
1182 self.PrintPcdDefault(File, Pcd, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue)
1183 else:
1184 FirstPrint = True
1185 SkuList = sorted(Pcd.SkuInfoList.keys())
1186 for Sku in SkuList:
1187 SkuInfo = Pcd.SkuInfoList[Sku]
1188 SkuIdName = SkuInfo.SkuIdName
1189 if TypeName in ('DYNHII', 'DEXHII'):
1190 if SkuInfo.DefaultStoreDict:
1191 DefaultStoreList = sorted(SkuInfo.DefaultStoreDict.keys())
1192 for DefaultStore in DefaultStoreList:
1193 Value = SkuInfo.DefaultStoreDict[DefaultStore]
1194 IsByteArray, ArrayList = ByteArrayForamt(Value)
1195 if FirstPrint:
1196 FirstPrint = False
1197 if IsByteArray:
1198 if self.DefaultStoreSingle and self.SkuSingle:
1199 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '{'))
1200 elif self.DefaultStoreSingle and not self.SkuSingle:
1201 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '{'))
1202 elif not self.DefaultStoreSingle and self.SkuSingle:
1203 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + DefaultStore + ')', '{'))
1204 else:
1205 FileWrite(File, ' %-*s : %6s %10s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '(' + DefaultStore + ')', '{'))
1206 for Array in ArrayList:
1207 FileWrite(File, '%s' % (Array))
1208 else:
1209 if self.DefaultStoreSingle and self.SkuSingle:
1210 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', Value))
1211 elif self.DefaultStoreSingle and not self.SkuSingle:
1212 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', Value))
1213 elif not self.DefaultStoreSingle and self.SkuSingle:
1214 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + DefaultStore + ')', Value))
1215 else:
1216 FileWrite(File, ' %-*s : %6s %10s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '(' + DefaultStore + ')', Value))
1217 else:
1218 if IsByteArray:
1219 if self.DefaultStoreSingle and self.SkuSingle:
1220 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '{'))
1221 elif self.DefaultStoreSingle and not self.SkuSingle:
1222 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '{'))
1223 elif not self.DefaultStoreSingle and self.SkuSingle:
1224 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + DefaultStore + ')', '{'))
1225 else:
1226 FileWrite(File, ' %-*s : %6s %10s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '(' + DefaultStore + ')', '{'))
1227 for Array in ArrayList:
1228 FileWrite(File, '%s' % (Array))
1229 else:
1230 if self.DefaultStoreSingle and self.SkuSingle:
1231 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', Value))
1232 elif self.DefaultStoreSingle and not self.SkuSingle:
1233 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', Value))
1234 elif not self.DefaultStoreSingle and self.SkuSingle:
1235 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + DefaultStore + ')', Value))
1236 else:
1237 FileWrite(File, ' %-*s : %6s %10s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '(' + DefaultStore + ')', Value))
1238 FileWrite(File, '%*s: %s: %s' % (self.MaxLen + 4, SkuInfo.VariableGuid, SkuInfo.VariableName, SkuInfo.VariableOffset))
1239 if IsStructure:
1240 OverrideValues = Pcd.SkuOverrideValues[Sku]
1241 OverrideFieldStruct = self.OverrideFieldValue(Pcd, OverrideValues[DefaultStore])
1242 self.PrintStructureInfo(File, OverrideFieldStruct)
1243 self.PrintPcdDefault(File, Pcd, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue)
1244 else:
1245 Value = SkuInfo.DefaultValue
1246 IsByteArray, ArrayList = ByteArrayForamt(Value)
1247 if FirstPrint:
1248 FirstPrint = False
1249 if IsByteArray:
1250 if self.SkuSingle:
1251 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', "{"))
1252 else:
1253 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', "{"))
1254 for Array in ArrayList:
1255 FileWrite(File, '%s' % (Array))
1256 else:
1257 if self.SkuSingle:
1258 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', Value))
1259 else:
1260 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', Value))
1261 else:
1262 if IsByteArray:
1263 if self.SkuSingle:
1264 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, ' ' , TypeName, '(' + Pcd.DatumType + ')', "{"))
1265 else:
1266 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ' , TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', "{"))
1267 for Array in ArrayList:
1268 FileWrite(File, '%s' % (Array))
1269 else:
1270 if self.SkuSingle:
1271 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, ' ' , TypeName, '(' + Pcd.DatumType + ')', Value))
1272 else:
1273 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ' , TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', Value))
1274 if TypeName in ('DYNVPD', 'DEXVPD'):
1275 FileWrite(File, '%*s' % (self.MaxLen + 4, SkuInfo.VpdOffset))
1276 if IsStructure:
1277 OverrideValues = Pcd.SkuOverrideValues[Sku]
1278 if OverrideValues:
1279 Keys = OverrideValues.keys()
1280 OverrideFieldStruct = self.OverrideFieldValue(Pcd, OverrideValues[Keys[0]])
1281 self.PrintStructureInfo(File, OverrideFieldStruct)
1282 self.PrintPcdDefault(File, Pcd, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue)
1283
1284 def OverrideFieldValue(self, Pcd, OverrideStruct):
1285 OverrideFieldStruct = collections.OrderedDict()
1286 if OverrideStruct:
1287 for Key, Values in OverrideStruct.items():
1288 if Values[1] and Values[1].endswith('.dsc'):
1289 OverrideFieldStruct[Key] = Values
1290 if Pcd.PcdFieldValueFromComm:
1291 for Key, Values in Pcd.PcdFieldValueFromComm.items():
1292 OverrideFieldStruct[Key] = Values
1293 return OverrideFieldStruct
1294
1295 def PrintStructureInfo(self, File, Struct):
1296 for Key, Value in Struct.items():
1297 if Value[1] and 'build command options' in Value[1]:
1298 FileWrite(File, ' *B %-*s = %s' % (self.MaxLen + 4, '.' + Key, Value[0]))
1299 else:
1300 FileWrite(File, ' %-*s = %s' % (self.MaxLen + 4, '.' + Key, Value[0]))
1301
1302 def StrtoHex(self, value):
1303 try:
1304 value = hex(int(value))
1305 return value
1306 except:
1307 if value.startswith("L\"") and value.endswith("\""):
1308 valuelist = []
1309 for ch in value[2:-1]:
1310 valuelist.append(hex(ord(ch)))
1311 valuelist.append('0x00')
1312 return valuelist
1313 elif value.startswith("\"") and value.endswith("\""):
1314 return hex(ord(value[1:-1]))
1315 elif value.startswith("{") and value.endswith("}"):
1316 valuelist = []
1317 if ',' not in value:
1318 return value[1:-1]
1319 for ch in value[1:-1].split(','):
1320 ch = ch.strip()
1321 if ch.startswith('0x') or ch.startswith('0X'):
1322 valuelist.append(ch)
1323 continue
1324 try:
1325 valuelist.append(hex(int(ch.strip())))
1326 except:
1327 pass
1328 return valuelist
1329 else:
1330 return value
1331
1332 ##
1333 # Reports platform and module Prediction information
1334 #
1335 # This class reports the platform execution order prediction section and
1336 # module load fixed address prediction subsection in the build report file.
1337 #
1338 class PredictionReport(object):
1339 ##
1340 # Constructor function for class PredictionReport
1341 #
1342 # This constructor function generates PredictionReport object for the platform.
1343 #
1344 # @param self: The object pointer
1345 # @param Wa Workspace context information
1346 #
1347 def __init__(self, Wa):
1348 self._MapFileName = os.path.join(Wa.BuildDir, Wa.Name + ".map")
1349 self._MapFileParsed = False
1350 self._EotToolInvoked = False
1351 self._FvDir = Wa.FvDir
1352 self._EotDir = Wa.BuildDir
1353 self._FfsEntryPoint = {}
1354 self._GuidMap = {}
1355 self._SourceList = []
1356 self.FixedMapDict = {}
1357 self.ItemList = []
1358 self.MaxLen = 0
1359
1360 #
1361 # Collect all platform reference source files and GUID C Name
1362 #
1363 for Pa in Wa.AutoGenObjectList:
1364 for Module in Pa.LibraryAutoGenList + Pa.ModuleAutoGenList:
1365 #
1366 # BASE typed modules are EFI agnostic, so we need not scan
1367 # their source code to find PPI/Protocol produce or consume
1368 # information.
1369 #
1370 if Module.ModuleType == "BASE":
1371 continue
1372 #
1373 # Add module referenced source files
1374 #
1375 self._SourceList.append(str(Module))
1376 IncludeList = {}
1377 for Source in Module.SourceFileList:
1378 if os.path.splitext(str(Source))[1].lower() == ".c":
1379 self._SourceList.append(" " + str(Source))
1380 FindIncludeFiles(Source.Path, Module.IncludePathList, IncludeList)
1381 for IncludeFile in IncludeList.values():
1382 self._SourceList.append(" " + IncludeFile)
1383
1384 for Guid in Module.PpiList:
1385 self._GuidMap[Guid] = GuidStructureStringToGuidString(Module.PpiList[Guid])
1386 for Guid in Module.ProtocolList:
1387 self._GuidMap[Guid] = GuidStructureStringToGuidString(Module.ProtocolList[Guid])
1388 for Guid in Module.GuidList:
1389 self._GuidMap[Guid] = GuidStructureStringToGuidString(Module.GuidList[Guid])
1390
1391 if Module.Guid and not Module.IsLibrary:
1392 EntryPoint = " ".join(Module.Module.ModuleEntryPointList)
1393 if int(str(Module.AutoGenVersion), 0) >= 0x00010005:
1394 RealEntryPoint = "_ModuleEntryPoint"
1395 else:
1396 RealEntryPoint = EntryPoint
1397 if EntryPoint == "_ModuleEntryPoint":
1398 CCFlags = Module.BuildOption.get("CC", {}).get("FLAGS", "")
1399 Match = gGlueLibEntryPoint.search(CCFlags)
1400 if Match:
1401 EntryPoint = Match.group(1)
1402
1403 self._FfsEntryPoint[Module.Guid.upper()] = (EntryPoint, RealEntryPoint)
1404
1405
1406 #
1407 # Collect platform firmware volume list as the input of EOT.
1408 #
1409 self._FvList = []
1410 if Wa.FdfProfile:
1411 for Fd in Wa.FdfProfile.FdDict:
1412 for FdRegion in Wa.FdfProfile.FdDict[Fd].RegionList:
1413 if FdRegion.RegionType != "FV":
1414 continue
1415 for FvName in FdRegion.RegionDataList:
1416 if FvName in self._FvList:
1417 continue
1418 self._FvList.append(FvName)
1419 for Ffs in Wa.FdfProfile.FvDict[FvName.upper()].FfsList:
1420 for Section in Ffs.SectionList:
1421 try:
1422 for FvSection in Section.SectionList:
1423 if FvSection.FvName in self._FvList:
1424 continue
1425 self._FvList.append(FvSection.FvName)
1426 except AttributeError:
1427 pass
1428
1429
1430 ##
1431 # Parse platform fixed address map files
1432 #
1433 # This function parses the platform final fixed address map file to get
1434 # the database of predicted fixed address for module image base, entry point
1435 # etc.
1436 #
1437 # @param self: The object pointer
1438 #
1439 def _ParseMapFile(self):
1440 if self._MapFileParsed:
1441 return
1442 self._MapFileParsed = True
1443 if os.path.isfile(self._MapFileName):
1444 try:
1445 FileContents = open(self._MapFileName).read()
1446 for Match in gMapFileItemPattern.finditer(FileContents):
1447 AddressType = Match.group(1)
1448 BaseAddress = Match.group(2)
1449 EntryPoint = Match.group(3)
1450 Guid = Match.group(4).upper()
1451 List = self.FixedMapDict.setdefault(Guid, [])
1452 List.append((AddressType, BaseAddress, "*I"))
1453 List.append((AddressType, EntryPoint, "*E"))
1454 except:
1455 EdkLogger.warn(None, "Cannot open file to read", self._MapFileName)
1456
1457 ##
1458 # Invokes EOT tool to get the predicted the execution order.
1459 #
1460 # This function invokes EOT tool to calculate the predicted dispatch order
1461 #
1462 # @param self: The object pointer
1463 #
1464 def _InvokeEotTool(self):
1465 if self._EotToolInvoked:
1466 return
1467
1468 self._EotToolInvoked = True
1469 FvFileList = []
1470 for FvName in self._FvList:
1471 FvFile = os.path.join(self._FvDir, FvName + ".Fv")
1472 if os.path.isfile(FvFile):
1473 FvFileList.append(FvFile)
1474
1475 if len(FvFileList) == 0:
1476 return
1477 #
1478 # Write source file list and GUID file list to an intermediate file
1479 # as the input for EOT tool and dispatch List as the output file
1480 # from EOT tool.
1481 #
1482 SourceList = os.path.join(self._EotDir, "SourceFile.txt")
1483 GuidList = os.path.join(self._EotDir, "GuidList.txt")
1484 DispatchList = os.path.join(self._EotDir, "Dispatch.txt")
1485
1486 TempFile = open(SourceList, "w+")
1487 for Item in self._SourceList:
1488 FileWrite(TempFile, Item)
1489 TempFile.close()
1490 TempFile = open(GuidList, "w+")
1491 for Key in self._GuidMap:
1492 FileWrite(TempFile, "%s %s" % (Key, self._GuidMap[Key]))
1493 TempFile.close()
1494
1495 try:
1496 from Eot.Eot import Eot
1497
1498 #
1499 # Invoke EOT tool and echo its runtime performance
1500 #
1501 EotStartTime = time.time()
1502 Eot(CommandLineOption=False, SourceFileList=SourceList, GuidList=GuidList,
1503 FvFileList=' '.join(FvFileList), Dispatch=DispatchList, IsInit=True)
1504 EotEndTime = time.time()
1505 EotDuration = time.strftime("%H:%M:%S", time.gmtime(int(round(EotEndTime - EotStartTime))))
1506 EdkLogger.quiet("EOT run time: %s\n" % EotDuration)
1507
1508 #
1509 # Parse the output of EOT tool
1510 #
1511 for Line in open(DispatchList):
1512 if len(Line.split()) < 4:
1513 continue
1514 (Guid, Phase, FfsName, FilePath) = Line.split()
1515 Symbol = self._FfsEntryPoint.get(Guid, [FfsName, ""])[0]
1516 if len(Symbol) > self.MaxLen:
1517 self.MaxLen = len(Symbol)
1518 self.ItemList.append((Phase, Symbol, FilePath))
1519 except:
1520 EdkLogger.quiet("(Python %s on %s\n%s)" % (platform.python_version(), sys.platform, traceback.format_exc()))
1521 EdkLogger.warn(None, "Failed to generate execution order prediction report, for some error occurred in executing EOT.")
1522
1523
1524 ##
1525 # Generate platform execution order report
1526 #
1527 # This function generates the predicted module execution order.
1528 #
1529 # @param self The object pointer
1530 # @param File The file object for report
1531 #
1532 def _GenerateExecutionOrderReport(self, File):
1533 self._InvokeEotTool()
1534 if len(self.ItemList) == 0:
1535 return
1536 FileWrite(File, gSectionStart)
1537 FileWrite(File, "Execution Order Prediction")
1538 FileWrite(File, "*P PEI phase")
1539 FileWrite(File, "*D DXE phase")
1540 FileWrite(File, "*E Module INF entry point name")
1541 FileWrite(File, "*N Module notification function name")
1542
1543 FileWrite(File, "Type %-*s %s" % (self.MaxLen, "Symbol", "Module INF Path"))
1544 FileWrite(File, gSectionSep)
1545 for Item in self.ItemList:
1546 FileWrite(File, "*%sE %-*s %s" % (Item[0], self.MaxLen, Item[1], Item[2]))
1547
1548 FileWrite(File, gSectionStart)
1549
1550 ##
1551 # Generate Fixed Address report.
1552 #
1553 # This function generate the predicted fixed address report for a module
1554 # specified by Guid.
1555 #
1556 # @param self The object pointer
1557 # @param File The file object for report
1558 # @param Guid The module Guid value.
1559 # @param NotifyList The list of all notify function in a module
1560 #
1561 def _GenerateFixedAddressReport(self, File, Guid, NotifyList):
1562 self._ParseMapFile()
1563 FixedAddressList = self.FixedMapDict.get(Guid)
1564 if not FixedAddressList:
1565 return
1566
1567 FileWrite(File, gSubSectionStart)
1568 FileWrite(File, "Fixed Address Prediction")
1569 FileWrite(File, "*I Image Loading Address")
1570 FileWrite(File, "*E Entry Point Address")
1571 FileWrite(File, "*N Notification Function Address")
1572 FileWrite(File, "*F Flash Address")
1573 FileWrite(File, "*M Memory Address")
1574 FileWrite(File, "*S SMM RAM Offset")
1575 FileWrite(File, "TOM Top of Memory")
1576
1577 FileWrite(File, "Type Address Name")
1578 FileWrite(File, gSubSectionSep)
1579 for Item in FixedAddressList:
1580 Type = Item[0]
1581 Value = Item[1]
1582 Symbol = Item[2]
1583 if Symbol == "*I":
1584 Name = "(Image Base)"
1585 elif Symbol == "*E":
1586 Name = self._FfsEntryPoint.get(Guid, ["", "_ModuleEntryPoint"])[1]
1587 elif Symbol in NotifyList:
1588 Name = Symbol
1589 Symbol = "*N"
1590 else:
1591 continue
1592
1593 if "Flash" in Type:
1594 Symbol += "F"
1595 elif "Memory" in Type:
1596 Symbol += "M"
1597 else:
1598 Symbol += "S"
1599
1600 if Value[0] == "-":
1601 Value = "TOM" + Value
1602
1603 FileWrite(File, "%s %-16s %s" % (Symbol, Value, Name))
1604
1605 ##
1606 # Generate report for the prediction part
1607 #
1608 # This function generate the predicted fixed address report for a module or
1609 # predicted module execution order for a platform.
1610 # If the input Guid is None, then, it generates the predicted module execution order;
1611 # otherwise it generated the module fixed loading address for the module specified by
1612 # Guid.
1613 #
1614 # @param self The object pointer
1615 # @param File The file object for report
1616 # @param Guid The module Guid value.
1617 #
1618 def GenerateReport(self, File, Guid):
1619 if Guid:
1620 self._GenerateFixedAddressReport(File, Guid.upper(), [])
1621 else:
1622 self._GenerateExecutionOrderReport(File)
1623
1624 ##
1625 # Reports FD region information
1626 #
1627 # This class reports the FD subsection in the build report file.
1628 # It collects region information of platform flash device.
1629 # If the region is a firmware volume, it lists the set of modules
1630 # and its space information; otherwise, it only lists its region name,
1631 # base address and size in its sub-section header.
1632 # If there are nesting FVs, the nested FVs will list immediate after
1633 # this FD region subsection
1634 #
1635 class FdRegionReport(object):
1636 ##
1637 # Discover all the nested FV name list.
1638 #
1639 # This is an internal worker function to discover the all the nested FV information
1640 # in the parent firmware volume. It uses deep first search algorithm recursively to
1641 # find all the FV list name and append them to the list.
1642 #
1643 # @param self The object pointer
1644 # @param FvName The name of current firmware file system
1645 # @param Wa Workspace context information
1646 #
1647 def _DiscoverNestedFvList(self, FvName, Wa):
1648 FvDictKey=FvName.upper()
1649 if FvDictKey in Wa.FdfProfile.FvDict:
1650 for Ffs in Wa.FdfProfile.FvDict[FvName.upper()].FfsList:
1651 for Section in Ffs.SectionList:
1652 try:
1653 for FvSection in Section.SectionList:
1654 if FvSection.FvName in self.FvList:
1655 continue
1656 self._GuidsDb[Ffs.NameGuid.upper()] = FvSection.FvName
1657 self.FvList.append(FvSection.FvName)
1658 self.FvInfo[FvSection.FvName] = ("Nested FV", 0, 0)
1659 self._DiscoverNestedFvList(FvSection.FvName, Wa)
1660 except AttributeError:
1661 pass
1662
1663 ##
1664 # Constructor function for class FdRegionReport
1665 #
1666 # This constructor function generates FdRegionReport object for a specified FdRegion.
1667 # If the FdRegion is a firmware volume, it will recursively find all its nested Firmware
1668 # volume list. This function also collects GUID map in order to dump module identification
1669 # in the final report.
1670 #
1671 # @param self: The object pointer
1672 # @param FdRegion The current FdRegion object
1673 # @param Wa Workspace context information
1674 #
1675 def __init__(self, FdRegion, Wa):
1676 self.Type = FdRegion.RegionType
1677 self.BaseAddress = FdRegion.Offset
1678 self.Size = FdRegion.Size
1679 self.FvList = []
1680 self.FvInfo = {}
1681 self._GuidsDb = {}
1682 self._FvDir = Wa.FvDir
1683 self._WorkspaceDir = Wa.WorkspaceDir
1684
1685 #
1686 # If the input FdRegion is not a firmware volume,
1687 # we are done.
1688 #
1689 if self.Type != "FV":
1690 return
1691
1692 #
1693 # Find all nested FVs in the FdRegion
1694 #
1695 for FvName in FdRegion.RegionDataList:
1696 if FvName in self.FvList:
1697 continue
1698 self.FvList.append(FvName)
1699 self.FvInfo[FvName] = ("Fd Region", self.BaseAddress, self.Size)
1700 self._DiscoverNestedFvList(FvName, Wa)
1701
1702 PlatformPcds = {}
1703 #
1704 # Collect PCDs declared in DEC files.
1705 #
1706 for Pa in Wa.AutoGenObjectList:
1707 for Package in Pa.PackageList:
1708 for (TokenCName, TokenSpaceGuidCName, DecType) in Package.Pcds:
1709 DecDefaultValue = Package.Pcds[TokenCName, TokenSpaceGuidCName, DecType].DefaultValue
1710 PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DecDefaultValue
1711 #
1712 # Collect PCDs defined in DSC file
1713 #
1714 for Pa in Wa.AutoGenObjectList:
1715 for (TokenCName, TokenSpaceGuidCName) in Pa.Platform.Pcds:
1716 DscDefaultValue = Pa.Platform.Pcds[(TokenCName, TokenSpaceGuidCName)].DefaultValue
1717 PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
1718
1719 #
1720 # Add PEI and DXE a priori files GUIDs defined in PI specification.
1721 #
1722 self._GuidsDb["1B45CC0A-156A-428A-AF62-49864DA0E6E6"] = "PEI Apriori"
1723 self._GuidsDb["FC510EE7-FFDC-11D4-BD41-0080C73C8881"] = "DXE Apriori"
1724 #
1725 # Add ACPI table storage file
1726 #
1727 self._GuidsDb["7E374E25-8E01-4FEE-87F2-390C23C606CD"] = "ACPI table storage"
1728
1729 for Pa in Wa.AutoGenObjectList:
1730 for ModuleKey in Pa.Platform.Modules:
1731 M = Pa.Platform.Modules[ModuleKey].M
1732 InfPath = mws.join(Wa.WorkspaceDir, M.MetaFile.File)
1733 self._GuidsDb[M.Guid.upper()] = "%s (%s)" % (M.Module.BaseName, InfPath)
1734
1735 #
1736 # Collect the GUID map in the FV firmware volume
1737 #
1738 for FvName in self.FvList:
1739 FvDictKey=FvName.upper()
1740 if FvDictKey in Wa.FdfProfile.FvDict:
1741 for Ffs in Wa.FdfProfile.FvDict[FvName.upper()].FfsList:
1742 try:
1743 #
1744 # collect GUID map for binary EFI file in FDF file.
1745 #
1746 Guid = Ffs.NameGuid.upper()
1747 Match = gPcdGuidPattern.match(Ffs.NameGuid)
1748 if Match:
1749 PcdTokenspace = Match.group(1)
1750 PcdToken = Match.group(2)
1751 if (PcdToken, PcdTokenspace) in PlatformPcds:
1752 GuidValue = PlatformPcds[(PcdToken, PcdTokenspace)]
1753 Guid = GuidStructureByteArrayToGuidString(GuidValue).upper()
1754 for Section in Ffs.SectionList:
1755 try:
1756 ModuleSectFile = mws.join(Wa.WorkspaceDir, Section.SectFileName)
1757 self._GuidsDb[Guid] = ModuleSectFile
1758 except AttributeError:
1759 pass
1760 except AttributeError:
1761 pass
1762
1763
1764 ##
1765 # Internal worker function to generate report for the FD region
1766 #
1767 # This internal worker function to generate report for the FD region.
1768 # It the type is firmware volume, it lists offset and module identification.
1769 #
1770 # @param self The object pointer
1771 # @param File The file object for report
1772 # @param Title The title for the FD subsection
1773 # @param BaseAddress The base address for the FD region
1774 # @param Size The size of the FD region
1775 # @param FvName The FV name if the FD region is a firmware volume
1776 #
1777 def _GenerateReport(self, File, Title, Type, BaseAddress, Size=0, FvName=None):
1778 FileWrite(File, gSubSectionStart)
1779 FileWrite(File, Title)
1780 FileWrite(File, "Type: %s" % Type)
1781 FileWrite(File, "Base Address: 0x%X" % BaseAddress)
1782
1783 if self.Type == "FV":
1784 FvTotalSize = 0
1785 FvTakenSize = 0
1786 FvFreeSize = 0
1787 if FvName.upper().endswith('.FV'):
1788 FileExt = FvName + ".txt"
1789 else:
1790 FileExt = FvName + ".Fv.txt"
1791
1792 if not os.path.isfile(FileExt):
1793 FvReportFileName = mws.join(self._WorkspaceDir, FileExt)
1794 if not os.path.isfile(FvReportFileName):
1795 FvReportFileName = os.path.join(self._FvDir, FileExt)
1796 try:
1797 #
1798 # Collect size info in the firmware volume.
1799 #
1800 FvReport = open(FvReportFileName).read()
1801 Match = gFvTotalSizePattern.search(FvReport)
1802 if Match:
1803 FvTotalSize = int(Match.group(1), 16)
1804 Match = gFvTakenSizePattern.search(FvReport)
1805 if Match:
1806 FvTakenSize = int(Match.group(1), 16)
1807 FvFreeSize = FvTotalSize - FvTakenSize
1808 #
1809 # Write size information to the report file.
1810 #
1811 FileWrite(File, "Size: 0x%X (%.0fK)" % (FvTotalSize, FvTotalSize / 1024.0))
1812 FileWrite(File, "Fv Name: %s (%.1f%% Full)" % (FvName, FvTakenSize * 100.0 / FvTotalSize))
1813 FileWrite(File, "Occupied Size: 0x%X (%.0fK)" % (FvTakenSize, FvTakenSize / 1024.0))
1814 FileWrite(File, "Free Size: 0x%X (%.0fK)" % (FvFreeSize, FvFreeSize / 1024.0))
1815 FileWrite(File, "Offset Module")
1816 FileWrite(File, gSubSectionSep)
1817 #
1818 # Write module offset and module identification to the report file.
1819 #
1820 OffsetInfo = {}
1821 for Match in gOffsetGuidPattern.finditer(FvReport):
1822 Guid = Match.group(2).upper()
1823 OffsetInfo[Match.group(1)] = self._GuidsDb.get(Guid, Guid)
1824 OffsetList = OffsetInfo.keys()
1825 OffsetList.sort()
1826 for Offset in OffsetList:
1827 FileWrite (File, "%s %s" % (Offset, OffsetInfo[Offset]))
1828 except IOError:
1829 EdkLogger.warn(None, "Fail to read report file", FvReportFileName)
1830 else:
1831 FileWrite(File, "Size: 0x%X (%.0fK)" % (Size, Size / 1024.0))
1832 FileWrite(File, gSubSectionEnd)
1833
1834 ##
1835 # Generate report for the FD region
1836 #
1837 # This function generates report for the FD region.
1838 #
1839 # @param self The object pointer
1840 # @param File The file object for report
1841 #
1842 def GenerateReport(self, File):
1843 if (len(self.FvList) > 0):
1844 for FvItem in self.FvList:
1845 Info = self.FvInfo[FvItem]
1846 self._GenerateReport(File, Info[0], "FV", Info[1], Info[2], FvItem)
1847 else:
1848 self._GenerateReport(File, "FD Region", self.Type, self.BaseAddress, self.Size)
1849
1850 ##
1851 # Reports FD information
1852 #
1853 # This class reports the FD section in the build report file.
1854 # It collects flash device information for a platform.
1855 #
1856 class FdReport(object):
1857 ##
1858 # Constructor function for class FdReport
1859 #
1860 # This constructor function generates FdReport object for a specified
1861 # firmware device.
1862 #
1863 # @param self The object pointer
1864 # @param Fd The current Firmware device object
1865 # @param Wa Workspace context information
1866 #
1867 def __init__(self, Fd, Wa):
1868 self.FdName = Fd.FdUiName
1869 self.BaseAddress = Fd.BaseAddress
1870 self.Size = Fd.Size
1871 self.FdRegionList = [FdRegionReport(FdRegion, Wa) for FdRegion in Fd.RegionList]
1872 self.FvPath = os.path.join(Wa.BuildDir, "FV")
1873 self.VpdFilePath = os.path.join(self.FvPath, "%s.map" % Wa.Platform.VpdToolGuid)
1874 self.VPDBaseAddress = 0
1875 self.VPDSize = 0
1876 self.VPDInfoList = []
1877 for index, FdRegion in enumerate(Fd.RegionList):
1878 if str(FdRegion.RegionType) is 'FILE' and Wa.Platform.VpdToolGuid in str(FdRegion.RegionDataList):
1879 self.VPDBaseAddress = self.FdRegionList[index].BaseAddress
1880 self.VPDSize = self.FdRegionList[index].Size
1881 break
1882
1883 if os.path.isfile(self.VpdFilePath):
1884 fd = open(self.VpdFilePath, "r")
1885 Lines = fd.readlines()
1886 for Line in Lines:
1887 Line = Line.strip()
1888 if len(Line) == 0 or Line.startswith("#"):
1889 continue
1890 try:
1891 PcdName, SkuId, Offset, Size, Value = Line.split("#")[0].split("|")
1892 PcdName, SkuId, Offset, Size, Value = PcdName.strip(), SkuId.strip(), Offset.strip(), Size.strip(), Value.strip()
1893 if Offset.lower().startswith('0x'):
1894 Offset = '0x%08X' % (int(Offset, 16) + self.VPDBaseAddress)
1895 else:
1896 Offset = '0x%08X' % (int(Offset, 10) + self.VPDBaseAddress)
1897 self.VPDInfoList.append("%s | %s | %s | %s | %s" % (PcdName, SkuId, Offset, Size, Value))
1898 except:
1899 EdkLogger.error("BuildReport", CODE_ERROR, "Fail to parse VPD information file %s" % self.VpdFilePath)
1900 fd.close()
1901
1902 ##
1903 # Generate report for the firmware device.
1904 #
1905 # This function generates report for the firmware device.
1906 #
1907 # @param self The object pointer
1908 # @param File The file object for report
1909 #
1910 def GenerateReport(self, File):
1911 FileWrite(File, gSectionStart)
1912 FileWrite(File, "Firmware Device (FD)")
1913 FileWrite(File, "FD Name: %s" % self.FdName)
1914 FileWrite(File, "Base Address: %s" % self.BaseAddress)
1915 FileWrite(File, "Size: 0x%X (%.0fK)" % (self.Size, self.Size / 1024.0))
1916 if len(self.FdRegionList) > 0:
1917 FileWrite(File, gSectionSep)
1918 for FdRegionItem in self.FdRegionList:
1919 FdRegionItem.GenerateReport(File)
1920
1921 if len(self.VPDInfoList) > 0:
1922 FileWrite(File, gSubSectionStart)
1923 FileWrite(File, "FD VPD Region")
1924 FileWrite(File, "Base Address: 0x%X" % self.VPDBaseAddress)
1925 FileWrite(File, "Size: 0x%X (%.0fK)" % (self.VPDSize, self.VPDSize / 1024.0))
1926 FileWrite(File, gSubSectionSep)
1927 for item in self.VPDInfoList:
1928 ValueList = item.split('|')
1929 Value = ValueList[-1].strip()
1930 IsByteArray, ArrayList = ByteArrayForamt(Value)
1931 if IsByteArray:
1932 ValueList[-1] = ' {'
1933 FileWrite(File, '|'.join(ValueList))
1934 for Array in ArrayList:
1935 FileWrite(File, '%s' % (Array))
1936 else:
1937 FileWrite(File, item)
1938 FileWrite(File, gSubSectionEnd)
1939 FileWrite(File, gSectionEnd)
1940
1941
1942
1943 ##
1944 # Reports platform information
1945 #
1946 # This class reports the whole platform information
1947 #
1948 class PlatformReport(object):
1949 ##
1950 # Constructor function for class PlatformReport
1951 #
1952 # This constructor function generates PlatformReport object a platform build.
1953 # It generates report for platform summary, flash, global PCDs and detailed
1954 # module information for modules involved in platform build.
1955 #
1956 # @param self The object pointer
1957 # @param Wa Workspace context information
1958 # @param MaList The list of modules in the platform build
1959 #
1960 def __init__(self, Wa, MaList, ReportType):
1961 self._WorkspaceDir = Wa.WorkspaceDir
1962 self.PlatformName = Wa.Name
1963 self.PlatformDscPath = Wa.Platform
1964 self.Architectures = " ".join(Wa.ArchList)
1965 self.ToolChain = Wa.ToolChain
1966 self.Target = Wa.BuildTarget
1967 self.OutputPath = os.path.join(Wa.WorkspaceDir, Wa.OutputDir)
1968 self.BuildEnvironment = platform.platform()
1969
1970 self.PcdReport = None
1971 if "PCD" in ReportType:
1972 self.PcdReport = PcdReport(Wa)
1973
1974 self.FdReportList = []
1975 if "FLASH" in ReportType and Wa.FdfProfile and MaList is None:
1976 for Fd in Wa.FdfProfile.FdDict:
1977 self.FdReportList.append(FdReport(Wa.FdfProfile.FdDict[Fd], Wa))
1978
1979 self.PredictionReport = None
1980 if "FIXED_ADDRESS" in ReportType or "EXECUTION_ORDER" in ReportType:
1981 self.PredictionReport = PredictionReport(Wa)
1982
1983 self.DepexParser = None
1984 if "DEPEX" in ReportType:
1985 self.DepexParser = DepexParser(Wa)
1986
1987 self.ModuleReportList = []
1988 if MaList is not None:
1989 self._IsModuleBuild = True
1990 for Ma in MaList:
1991 self.ModuleReportList.append(ModuleReport(Ma, ReportType))
1992 else:
1993 self._IsModuleBuild = False
1994 for Pa in Wa.AutoGenObjectList:
1995 ModuleAutoGenList = []
1996 for ModuleKey in Pa.Platform.Modules:
1997 ModuleAutoGenList.append(Pa.Platform.Modules[ModuleKey].M)
1998 if GlobalData.gFdfParser is not None:
1999 if Pa.Arch in GlobalData.gFdfParser.Profile.InfDict:
2000 INFList = GlobalData.gFdfParser.Profile.InfDict[Pa.Arch]
2001 for InfName in INFList:
2002 InfClass = PathClass(NormPath(InfName), Wa.WorkspaceDir, Pa.Arch)
2003 Ma = ModuleAutoGen(Wa, InfClass, Pa.BuildTarget, Pa.ToolChain, Pa.Arch, Wa.MetaFile)
2004 if Ma is None:
2005 continue
2006 if Ma not in ModuleAutoGenList:
2007 ModuleAutoGenList.append(Ma)
2008 for MGen in ModuleAutoGenList:
2009 self.ModuleReportList.append(ModuleReport(MGen, ReportType))
2010
2011
2012
2013 ##
2014 # Generate report for the whole platform.
2015 #
2016 # This function generates report for platform information.
2017 # It comprises of platform summary, global PCD, flash and
2018 # module list sections.
2019 #
2020 # @param self The object pointer
2021 # @param File The file object for report
2022 # @param BuildDuration The total time to build the modules
2023 # @param AutoGenTime The total time of AutoGen Phase
2024 # @param MakeTime The total time of Make Phase
2025 # @param GenFdsTime The total time of GenFds Phase
2026 # @param ReportType The kind of report items in the final report file
2027 #
2028 def GenerateReport(self, File, BuildDuration, AutoGenTime, MakeTime, GenFdsTime, ReportType):
2029 FileWrite(File, "Platform Summary")
2030 FileWrite(File, "Platform Name: %s" % self.PlatformName)
2031 FileWrite(File, "Platform DSC Path: %s" % self.PlatformDscPath)
2032 FileWrite(File, "Architectures: %s" % self.Architectures)
2033 FileWrite(File, "Tool Chain: %s" % self.ToolChain)
2034 FileWrite(File, "Target: %s" % self.Target)
2035 if GlobalData.gSkuids:
2036 FileWrite(File, "SKUID: %s" % " ".join(GlobalData.gSkuids))
2037 if GlobalData.gDefaultStores:
2038 FileWrite(File, "DefaultStore: %s" % " ".join(GlobalData.gDefaultStores))
2039 FileWrite(File, "Output Path: %s" % self.OutputPath)
2040 FileWrite(File, "Build Environment: %s" % self.BuildEnvironment)
2041 FileWrite(File, "Build Duration: %s" % BuildDuration)
2042 if AutoGenTime:
2043 FileWrite(File, "AutoGen Duration: %s" % AutoGenTime)
2044 if MakeTime:
2045 FileWrite(File, "Make Duration: %s" % MakeTime)
2046 if GenFdsTime:
2047 FileWrite(File, "GenFds Duration: %s" % GenFdsTime)
2048 FileWrite(File, "Report Content: %s" % ", ".join(ReportType))
2049
2050 if GlobalData.MixedPcd:
2051 FileWrite(File, gSectionStart)
2052 FileWrite(File, "The following PCDs use different access methods:")
2053 FileWrite(File, gSectionSep)
2054 for PcdItem in GlobalData.MixedPcd:
2055 FileWrite(File, "%s.%s" % (str(PcdItem[1]), str(PcdItem[0])))
2056 FileWrite(File, gSectionEnd)
2057
2058 if not self._IsModuleBuild:
2059 if "PCD" in ReportType:
2060 self.PcdReport.GenerateReport(File, None)
2061
2062 if "FLASH" in ReportType:
2063 for FdReportListItem in self.FdReportList:
2064 FdReportListItem.GenerateReport(File)
2065
2066 for ModuleReportItem in self.ModuleReportList:
2067 ModuleReportItem.GenerateReport(File, self.PcdReport, self.PredictionReport, self.DepexParser, ReportType)
2068
2069 if not self._IsModuleBuild:
2070 if "EXECUTION_ORDER" in ReportType:
2071 self.PredictionReport.GenerateReport(File, None)
2072
2073 ## BuildReport class
2074 #
2075 # This base class contain the routines to collect data and then
2076 # applies certain format to the output report
2077 #
2078 class BuildReport(object):
2079 ##
2080 # Constructor function for class BuildReport
2081 #
2082 # This constructor function generates BuildReport object a platform build.
2083 # It generates report for platform summary, flash, global PCDs and detailed
2084 # module information for modules involved in platform build.
2085 #
2086 # @param self The object pointer
2087 # @param ReportFile The file name to save report file
2088 # @param ReportType The kind of report items in the final report file
2089 #
2090 def __init__(self, ReportFile, ReportType):
2091 self.ReportFile = ReportFile
2092 if ReportFile:
2093 self.ReportList = []
2094 self.ReportType = []
2095 if ReportType:
2096 for ReportTypeItem in ReportType:
2097 if ReportTypeItem not in self.ReportType:
2098 self.ReportType.append(ReportTypeItem)
2099 else:
2100 self.ReportType = ["PCD", "LIBRARY", "BUILD_FLAGS", "DEPEX", "HASH", "FLASH", "FIXED_ADDRESS"]
2101 ##
2102 # Adds platform report to the list
2103 #
2104 # This function adds a platform report to the final report list.
2105 #
2106 # @param self The object pointer
2107 # @param Wa Workspace context information
2108 # @param MaList The list of modules in the platform build
2109 #
2110 def AddPlatformReport(self, Wa, MaList=None):
2111 if self.ReportFile:
2112 self.ReportList.append((Wa, MaList))
2113
2114 ##
2115 # Generates the final report.
2116 #
2117 # This function generates platform build report. It invokes GenerateReport()
2118 # method for every platform report in the list.
2119 #
2120 # @param self The object pointer
2121 # @param BuildDuration The total time to build the modules
2122 # @param AutoGenTime The total time of AutoGen phase
2123 # @param MakeTime The total time of Make phase
2124 # @param GenFdsTime The total time of GenFds phase
2125 #
2126 def GenerateReport(self, BuildDuration, AutoGenTime, MakeTime, GenFdsTime):
2127 if self.ReportFile:
2128 try:
2129 File = StringIO('')
2130 for (Wa, MaList) in self.ReportList:
2131 PlatformReport(Wa, MaList, self.ReportType).GenerateReport(File, BuildDuration, AutoGenTime, MakeTime, GenFdsTime, self.ReportType)
2132 Content = FileLinesSplit(File.getvalue(), gLineMaxLength)
2133 SaveFileOnChange(self.ReportFile, Content, True)
2134 EdkLogger.quiet("Build report can be found at %s" % os.path.abspath(self.ReportFile))
2135 except IOError:
2136 EdkLogger.error(None, FILE_WRITE_FAILURE, ExtraData=self.ReportFile)
2137 except:
2138 EdkLogger.error("BuildReport", CODE_ERROR, "Unknown fatal error when generating build report", ExtraData=self.ReportFile, RaiseError=False)
2139 EdkLogger.quiet("(Python %s on %s\n%s)" % (platform.python_version(), sys.platform, traceback.format_exc()))
2140 File.close()
2141
2142 # This acts like the main() function for the script, unless it is 'import'ed into another script.
2143 if __name__ == '__main__':
2144 pass
2145