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