]> git.proxmox.com Git - mirror_edk2.git/blob - PerformancePkg/Dp_App/DpUtilities.c
65efb80c80591bb908df38df3f20985e720b2389
[mirror_edk2.git] / PerformancePkg / Dp_App / DpUtilities.c
1 /** @file
2 Utility functions used by the Dp application.
3
4 Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 **/
13
14 #include <Library/BaseLib.h>
15 #include <Library/BaseMemoryLib.h>
16 #include <Library/MemoryAllocationLib.h>
17 #include <Library/DebugLib.h>
18 #include <Library/UefiBootServicesTableLib.h>
19 #include <Library/TimerLib.h>
20 #include <Library/PeCoffGetEntryPointLib.h>
21 #include <Library/PrintLib.h>
22 #include <Library/HiiLib.h>
23 #include <Library/PcdLib.h>
24 #include <Library/UefiLib.h>
25 #include <Library/DevicePathLib.h>
26
27 #include <Pi/PiFirmwareFile.h>
28 #include <Library/DxeServicesLib.h>
29
30 #include <Protocol/LoadedImage.h>
31 #include <Protocol/DriverBinding.h>
32 #include <Protocol/ComponentName2.h>
33 #include <Protocol/DevicePath.h>
34
35 #include <Guid/Performance.h>
36
37 #include "Dp.h"
38 #include "Literals.h"
39 #include "DpInternal.h"
40
41 /**
42 Wrap original FreePool to check NULL pointer first.
43
44 @param[in] Buffer The pointer to the buffer to free.
45
46 **/
47 VOID
48 SafeFreePool (
49 IN VOID *Buffer
50 )
51 {
52 if (Buffer != NULL) {
53 FreePool (Buffer);
54 }
55 }
56
57 /**
58 Calculate an event's duration in timer ticks.
59
60 Given the count direction and the event's start and end timer values,
61 calculate the duration of the event in timer ticks. Information for
62 the current measurement is pointed to by the parameter.
63
64 If the measurement's start time is 1, it indicates that the developer
65 is indicating that the measurement began at the release of reset.
66 The start time is adjusted to the timer's starting count before performing
67 the elapsed time calculation.
68
69 The calculated duration, in ticks, is the absolute difference between
70 the measurement's ending and starting counts.
71
72 @param Measurement Pointer to a MEASUREMENT_RECORD structure containing
73 data for the current measurement.
74
75 @return The 64-bit duration of the event.
76 **/
77 UINT64
78 GetDuration (
79 IN OUT MEASUREMENT_RECORD *Measurement
80 )
81 {
82 UINT64 Duration;
83 BOOLEAN Error;
84
85 // PERF_START macros are called with a value of 1 to indicate
86 // the beginning of time. So, adjust the start ticker value
87 // to the real beginning of time.
88 // Assumes no wraparound. Even then, there is a very low probability
89 // of having a valid StartTicker value of 1.
90 if (Measurement->StartTimeStamp == 1) {
91 Measurement->StartTimeStamp = TimerInfo.StartCount;
92 }
93 if (TimerInfo.CountUp) {
94 Duration = Measurement->EndTimeStamp - Measurement->StartTimeStamp;
95 Error = (BOOLEAN)(Duration > Measurement->EndTimeStamp);
96 }
97 else {
98 Duration = Measurement->StartTimeStamp - Measurement->EndTimeStamp;
99 Error = (BOOLEAN)(Duration > Measurement->StartTimeStamp);
100 }
101
102 if (Error) {
103 DEBUG ((EFI_D_ERROR, ALit_TimerLibError));
104 Duration = 0;
105 }
106 return Duration;
107 }
108
109 /**
110 Determine whether the Measurement record is for an EFI Phase.
111
112 The Token and Module members of the measurement record are checked.
113 Module must be empty and Token must be one of SEC, PEI, DXE, BDS, or SHELL.
114
115 @param[in] Measurement A pointer to the Measurement record to test.
116
117 @retval TRUE The measurement record is for an EFI Phase.
118 @retval FALSE The measurement record is NOT for an EFI Phase.
119 **/
120 BOOLEAN
121 IsPhase(
122 IN MEASUREMENT_RECORD *Measurement
123 )
124 {
125 BOOLEAN RetVal;
126
127 RetVal = (BOOLEAN)( ( *Measurement->Module == '\0') &&
128 ((AsciiStrnCmp (Measurement->Token, ALit_SEC, PERF_TOKEN_LENGTH) == 0) ||
129 (AsciiStrnCmp (Measurement->Token, ALit_PEI, PERF_TOKEN_LENGTH) == 0) ||
130 (AsciiStrnCmp (Measurement->Token, ALit_DXE, PERF_TOKEN_LENGTH) == 0) ||
131 (AsciiStrnCmp (Measurement->Token, ALit_BDS, PERF_TOKEN_LENGTH) == 0))
132 );
133 return RetVal;
134 }
135
136 /**
137 Get the file name portion of the Pdb File Name.
138
139 The portion of the Pdb File Name between the last backslash and
140 either a following period or the end of the string is converted
141 to Unicode and copied into UnicodeBuffer. The name is truncated,
142 if necessary, to ensure that UnicodeBuffer is not overrun.
143
144 @param[in] PdbFileName Pdb file name.
145 @param[out] UnicodeBuffer The resultant Unicode File Name.
146
147 **/
148 VOID
149 GetShortPdbFileName (
150 IN CHAR8 *PdbFileName,
151 OUT CHAR16 *UnicodeBuffer
152 )
153 {
154 UINTN IndexA; // Current work location within an ASCII string.
155 UINTN IndexU; // Current work location within a Unicode string.
156 UINTN StartIndex;
157 UINTN EndIndex;
158
159 ZeroMem (UnicodeBuffer, DXE_PERFORMANCE_STRING_LENGTH * sizeof (CHAR16));
160
161 if (PdbFileName == NULL) {
162 StrCpy (UnicodeBuffer, L" ");
163 } else {
164 StartIndex = 0;
165 for (EndIndex = 0; PdbFileName[EndIndex] != 0; EndIndex++)
166 ;
167 for (IndexA = 0; PdbFileName[IndexA] != 0; IndexA++) {
168 if (PdbFileName[IndexA] == '\\') {
169 StartIndex = IndexA + 1;
170 }
171
172 if (PdbFileName[IndexA] == '.') {
173 EndIndex = IndexA;
174 }
175 }
176
177 IndexU = 0;
178 for (IndexA = StartIndex; IndexA < EndIndex; IndexA++) {
179 UnicodeBuffer[IndexU] = (CHAR16) PdbFileName[IndexA];
180 IndexU++;
181 if (IndexU >= DXE_PERFORMANCE_STRING_LENGTH) {
182 UnicodeBuffer[DXE_PERFORMANCE_STRING_LENGTH] = 0;
183 break;
184 }
185 }
186 }
187 }
188
189 /**
190 Get a human readable name for an image handle.
191 The following methods will be tried orderly:
192 1. Image PDB
193 2. ComponentName2 protocol
194 3. FFS UI section
195 4. Image GUID
196 5. Image DevicePath
197 6. Unknown Driver Name
198
199 @param[in] Handle
200
201 @post The resulting Unicode name string is stored in the
202 mGaugeString global array.
203
204 **/
205 VOID
206 GetNameFromHandle (
207 IN EFI_HANDLE Handle
208 )
209 {
210 EFI_STATUS Status;
211 EFI_LOADED_IMAGE_PROTOCOL *Image;
212 CHAR8 *PdbFileName;
213 EFI_DRIVER_BINDING_PROTOCOL *DriverBinding;
214 EFI_STRING StringPtr;
215 EFI_DEVICE_PATH_PROTOCOL *LoadedImageDevicePath;
216 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
217 EFI_GUID *NameGuid;
218 CHAR16 *NameString;
219 UINTN StringSize;
220 CHAR8 *PlatformLanguage;
221 CHAR8 *BestLanguage;
222 EFI_COMPONENT_NAME2_PROTOCOL *ComponentName2;
223
224 BestLanguage = NULL;
225 PlatformLanguage = NULL;
226
227 //
228 // Method 1: Get the name string from image PDB
229 //
230 Status = gBS->HandleProtocol (
231 Handle,
232 &gEfiLoadedImageProtocolGuid,
233 (VOID **) &Image
234 );
235
236 if (EFI_ERROR (Status)) {
237 Status = gBS->OpenProtocol (
238 Handle,
239 &gEfiDriverBindingProtocolGuid,
240 (VOID **) &DriverBinding,
241 NULL,
242 NULL,
243 EFI_OPEN_PROTOCOL_GET_PROTOCOL
244 );
245 if (!EFI_ERROR (Status)) {
246 Status = gBS->HandleProtocol (
247 DriverBinding->ImageHandle,
248 &gEfiLoadedImageProtocolGuid,
249 (VOID **) &Image
250 );
251 }
252 }
253
254 if (!EFI_ERROR (Status)) {
255 PdbFileName = PeCoffLoaderGetPdbPointer (Image->ImageBase);
256
257 if (PdbFileName != NULL) {
258 GetShortPdbFileName (PdbFileName, mGaugeString);
259 return;
260 }
261 }
262
263 //
264 // Method 2: Get the name string from ComponentName2 protocol
265 //
266 Status = gBS->HandleProtocol (
267 Handle,
268 &gEfiComponentName2ProtocolGuid,
269 (VOID **) &ComponentName2
270 );
271 if (!EFI_ERROR (Status)) {
272 //
273 // Get the current platform language setting
274 //
275 GetEfiGlobalVariable2 (L"PlatformLang", (VOID**)&PlatformLanguage, NULL);
276
277 BestLanguage = GetBestLanguage(
278 ComponentName2->SupportedLanguages,
279 FALSE,
280 PlatformLanguage,
281 ComponentName2->SupportedLanguages,
282 NULL
283 );
284
285 SafeFreePool (PlatformLanguage);
286 Status = ComponentName2->GetDriverName (
287 ComponentName2,
288 BestLanguage,
289 &StringPtr
290 );
291 SafeFreePool (BestLanguage);
292 if (!EFI_ERROR (Status)) {
293 StrnCpy (mGaugeString, StringPtr, DP_GAUGE_STRING_LENGTH);
294 mGaugeString[DP_GAUGE_STRING_LENGTH] = 0;
295 return;
296 }
297 }
298
299 Status = gBS->HandleProtocol (
300 Handle,
301 &gEfiLoadedImageDevicePathProtocolGuid,
302 (VOID **) &LoadedImageDevicePath
303 );
304 if (!EFI_ERROR (Status) && (LoadedImageDevicePath != NULL)) {
305 DevicePath = LoadedImageDevicePath;
306
307 //
308 // Try to get image GUID from LoadedImageDevicePath protocol
309 //
310 NameGuid = NULL;
311 while (!IsDevicePathEndType (DevicePath)) {
312 NameGuid = EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) DevicePath);
313 if (NameGuid != NULL) {
314 break;
315 }
316 DevicePath = NextDevicePathNode (DevicePath);
317 }
318
319 if (NameGuid != NULL) {
320 //
321 // Try to get the image's FFS UI section by image GUID
322 //
323 NameString = NULL;
324 StringSize = 0;
325 Status = GetSectionFromAnyFv (
326 NameGuid,
327 EFI_SECTION_USER_INTERFACE,
328 0,
329 (VOID **) &NameString,
330 &StringSize
331 );
332
333 if (!EFI_ERROR (Status)) {
334 //
335 // Method 3. Get the name string from FFS UI section
336 //
337 StrnCpy (mGaugeString, NameString, DP_GAUGE_STRING_LENGTH);
338 mGaugeString[DP_GAUGE_STRING_LENGTH] = 0;
339 FreePool (NameString);
340 } else {
341 //
342 // Method 4: Get the name string from image GUID
343 //
344 UnicodeSPrint (mGaugeString, sizeof (mGaugeString), L"%g", NameGuid);
345 }
346 return;
347 } else {
348 //
349 // Method 5: Get the name string from image DevicePath
350 //
351 NameString = ConvertDevicePathToText (LoadedImageDevicePath, TRUE, FALSE);
352 if (NameString != NULL) {
353 StrnCpy (mGaugeString, NameString, DP_GAUGE_STRING_LENGTH);
354 mGaugeString[DP_GAUGE_STRING_LENGTH] = 0;
355 FreePool (NameString);
356 return;
357 }
358 }
359 }
360
361 //
362 // Method 6: Unknown Driver Name
363 //
364 StringPtr = HiiGetString (gHiiHandle, STRING_TOKEN (STR_DP_ERROR_NAME), NULL);
365 ASSERT (StringPtr != NULL);
366 StrCpy (mGaugeString, StringPtr);
367 FreePool (StringPtr);
368 return;
369 }
370
371 /**
372 Calculate the Duration in microseconds.
373
374 Duration is multiplied by 1000, instead of Frequency being divided by 1000 or
375 multiplying the result by 1000, in order to maintain precision. Since Duration is
376 a 64-bit value, multiplying it by 1000 is unlikely to produce an overflow.
377
378 The time is calculated as (Duration * 1000) / Timer_Frequency.
379
380 @param[in] Duration The event duration in timer ticks.
381
382 @return A 64-bit value which is the Elapsed time in microseconds.
383 **/
384 UINT64
385 DurationInMicroSeconds (
386 IN UINT64 Duration
387 )
388 {
389 UINT64 Temp;
390
391 Temp = MultU64x32 (Duration, 1000);
392 return DivU64x32 (Temp, TimerInfo.Frequency);
393 }
394
395 /**
396 Formatted Print using a Hii Token to reference the localized format string.
397
398 @param[in] Token A HII token associated with a localized Unicode string.
399 @param[in] ... The variable argument list.
400
401 @return The number of characters converted by UnicodeVSPrint().
402
403 **/
404 UINTN
405 PrintToken (
406 IN UINT16 Token,
407 ...
408 )
409 {
410 VA_LIST Marker;
411 EFI_STRING StringPtr;
412 UINTN Return;
413 UINTN BufferSize;
414
415 StringPtr = HiiGetString (gHiiHandle, Token, NULL);
416 ASSERT (StringPtr != NULL);
417
418 VA_START (Marker, Token);
419
420 BufferSize = (PcdGet32 (PcdUefiLibMaxPrintBufferSize) + 1) * sizeof (CHAR16);
421
422 if (mPrintTokenBuffer == NULL) {
423 mPrintTokenBuffer = AllocatePool (BufferSize);
424 ASSERT (mPrintTokenBuffer != NULL);
425 }
426 SetMem( mPrintTokenBuffer, BufferSize, 0);
427
428 Return = UnicodeVSPrint (mPrintTokenBuffer, BufferSize, StringPtr, Marker);
429 VA_END (Marker);
430
431 if (Return > 0 && gST->ConOut != NULL) {
432 gST->ConOut->OutputString (gST->ConOut, mPrintTokenBuffer);
433 }
434 FreePool (StringPtr);
435 return Return;
436 }
437
438 /**
439 Get index of Measurement Record's match in the CumData array.
440
441 If the Measurement's Token value matches a Token in one of the CumData
442 records, the index of the matching record is returned. The returned
443 index is a signed value so that negative values can indicate that
444 the Measurement didn't match any entry in the CumData array.
445
446 @param[in] Measurement A pointer to a Measurement Record to match against the CumData array.
447
448 @retval <0 Token is not in the CumData array.
449 @retval >=0 Return value is the index into CumData where Token is found.
450 **/
451 INTN
452 GetCumulativeItem(
453 IN MEASUREMENT_RECORD *Measurement
454 )
455 {
456 INTN Index;
457
458 for( Index = 0; Index < (INTN)NumCum; ++Index) {
459 if (AsciiStrnCmp (Measurement->Token, CumData[Index].Name, PERF_TOKEN_LENGTH) == 0) {
460 return Index; // Exit, we found a match
461 }
462 }
463 // If the for loop exits, Token was not found.
464 return -1; // Indicate failure
465 }