]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Library/DxeCorePerformanceLib/DxeCorePerformanceLib.c
Ported to use BaseMemoryLib functions
[mirror_edk2.git] / EdkModulePkg / Library / DxeCorePerformanceLib / DxeCorePerformanceLib.c
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 DxeCorePerformance.c
15
16 Abstract:
17
18 Support for measurement of DXE performance
19
20 --*/
21
22 //
23 // Interface declarations for Performance Protocol.
24 //
25 /**
26 Adds a record at the end of the performance measurement log
27 that records the start time of a performance measurement.
28
29 Adds a record to the end of the performance measurement log
30 that contains the Handle, Token, and Module.
31 The end time of the new record must be set to zero.
32 If TimeStamp is not zero, then TimeStamp is used to fill in the start time in the record.
33 If TimeStamp is zero, the start time in the record is filled in with the value
34 read from the current time stamp.
35
36 @param Handle Pointer to environment specific context used
37 to identify the component being measured.
38 @param Token Pointer to a Null-terminated ASCII string
39 that identifies the component being measured.
40 @param Module Pointer to a Null-terminated ASCII string
41 that identifies the module being measured.
42 @param TimeStamp 64-bit time stamp.
43
44 @retval EFI_SUCCESS The data was read correctly from the device.
45 @retval EFI_OUT_OF_RESOURCES There are not enough resources to record the measurement.
46
47 **/
48 EFI_STATUS
49 EFIAPI
50 StartGauge (
51 IN CONST VOID *Handle, OPTIONAL
52 IN CONST CHAR8 *Token, OPTIONAL
53 IN CONST CHAR8 *Module, OPTIONAL
54 IN UINT64 TimeStamp
55 );
56
57 /**
58 Searches the performance measurement log from the beginning of the log
59 for the first matching record that contains a zero end time and fills in a valid end time.
60
61 Searches the performance measurement log from the beginning of the log
62 for the first record that matches Handle, Token, and Module and has an end time value of zero.
63 If the record can not be found then return EFI_NOT_FOUND.
64 If the record is found and TimeStamp is not zero,
65 then the end time in the record is filled in with the value specified by TimeStamp.
66 If the record is found and TimeStamp is zero, then the end time in the matching record
67 is filled in with the current time stamp value.
68
69 @param Handle Pointer to environment specific context used
70 to identify the component being measured.
71 @param Token Pointer to a Null-terminated ASCII string
72 that identifies the component being measured.
73 @param Module Pointer to a Null-terminated ASCII string
74 that identifies the module being measured.
75 @param TimeStamp 64-bit time stamp.
76
77 @retval EFI_SUCCESS The end of the measurement was recorded.
78 @retval EFI_NOT_FOUND The specified measurement record could not be found.
79
80 **/
81 EFI_STATUS
82 EFIAPI
83 EndGauge (
84 IN CONST VOID *Handle, OPTIONAL
85 IN CONST CHAR8 *Token, OPTIONAL
86 IN CONST CHAR8 *Module, OPTIONAL
87 IN UINT64 TimeStamp
88 );
89
90 /**
91 Retrieves a previously logged performance measurement.
92
93 Retrieves the performance log entry from the performance log specified by LogEntryKey.
94 If it stands for a valid entry, then EFI_SUCCESS is returned and
95 GaugeDataEntry stores the pointer to that entry.
96
97 @param LogEntryKey The key for the previous performance measurement log entry.
98 If 0, then the first performance measurement log entry is retrieved.
99 @param GaugeDataEntry The indirect pointer to the gauge data entry specified by LogEntryKey
100 if the retrieval is successful.
101
102 @retval EFI_SUCCESS The GuageDataEntry is successfuly found based on LogEntryKey.
103 @retval EFI_NOT_FOUND The LogEntryKey is the last entry (equals to the total entry number).
104 @retval EFI_INVALIDE_PARAMETER The LogEntryKey is not a valid entry (greater than the total entry number).
105 @retval EFI_INVALIDE_PARAMETER GaugeDataEntry is NULL.
106
107 **/
108 EFI_STATUS
109 EFIAPI
110 GetGauge (
111 IN UINTN LogEntryKey,
112 OUT GAUGE_DATA_ENTRY **GaugeDataEntry
113 );
114
115 //
116 // Definition for global variables.
117 //
118 STATIC GAUGE_DATA_HEADER *mGaugeData;
119 STATIC UINT32 mMaxGaugeRecords;
120
121 EFI_HANDLE mHandle = NULL;
122 PERFORMANCE_PROTOCOL mPerformanceInterface = {
123 StartGauge,
124 EndGauge,
125 GetGauge
126 };
127
128
129 /**
130 Searches in the gauge array with keyword Handle, Token and Module.
131
132 This internal function searches for the gauge entry in the gauge array.
133 If there is an entry that exactly matches the given key word triple
134 and its end time stamp is zero, then the index of that gauge entry is returned;
135 otherwise, the the number of gauge entries in the array is returned.
136
137 @param Handle Pointer to environment specific context used
138 to identify the component being measured.
139 @param Token Pointer to a Null-terminated ASCII string
140 that identifies the component being measured.
141 @param Module Pointer to a Null-terminated ASCII string
142 that identifies the module being measured.
143
144 @retval The index of gauge entry in the array.
145
146 **/
147 UINT32
148 InternalSearchForGaugeEntry (
149 IN CONST VOID *Handle, OPTIONAL
150 IN CONST CHAR8 *Token, OPTIONAL
151 IN CONST CHAR8 *Module OPTIONAL
152 )
153 {
154 UINT32 Index;
155 UINT32 NumberOfEntries;
156 GAUGE_DATA_ENTRY *GaugeEntryArray;
157
158 if (Token == NULL) {
159 Token = "";
160 }
161 if (Module == NULL) {
162 Module = "";
163 }
164
165 NumberOfEntries = mGaugeData->NumberOfEntries;
166 GaugeEntryArray = (GAUGE_DATA_ENTRY *) (mGaugeData + 1);
167
168 for (Index = 0; Index < NumberOfEntries; Index++) {
169 if ((GaugeEntryArray[Index].Handle == (EFI_PHYSICAL_ADDRESS) (UINTN) Handle) &&
170 AsciiStrnCmp (GaugeEntryArray[Index].Token, Token, PEI_PERFORMANCE_STRING_LENGTH) == 0 &&
171 AsciiStrnCmp (GaugeEntryArray[Index].Module, Module, PEI_PERFORMANCE_STRING_LENGTH) == 0 &&
172 GaugeEntryArray[Index].EndTimeStamp == 0
173 ) {
174 break;
175 }
176 }
177
178 return Index;
179 }
180
181 /**
182 Adds a record at the end of the performance measurement log
183 that records the start time of a performance measurement.
184
185 Adds a record to the end of the performance measurement log
186 that contains the Handle, Token, and Module.
187 The end time of the new record must be set to zero.
188 If TimeStamp is not zero, then TimeStamp is used to fill in the start time in the record.
189 If TimeStamp is zero, the start time in the record is filled in with the value
190 read from the current time stamp.
191
192 @param Handle Pointer to environment specific context used
193 to identify the component being measured.
194 @param Token Pointer to a Null-terminated ASCII string
195 that identifies the component being measured.
196 @param Module Pointer to a Null-terminated ASCII string
197 that identifies the module being measured.
198 @param TimeStamp 64-bit time stamp.
199
200 @retval EFI_SUCCESS The data was read correctly from the device.
201 @retval EFI_OUT_OF_RESOURCES There are not enough resources to record the measurement.
202
203 **/
204 EFI_STATUS
205 EFIAPI
206 StartGauge (
207 IN CONST VOID *Handle, OPTIONAL
208 IN CONST CHAR8 *Token, OPTIONAL
209 IN CONST CHAR8 *Module, OPTIONAL
210 IN UINT64 TimeStamp
211 )
212 {
213 GAUGE_DATA_ENTRY *GaugeEntryArray;
214 UINTN GaugeDataSize;
215 UINTN OldGaugeDataSize;
216 GAUGE_DATA_HEADER *OldGaugeData;
217 EFI_STATUS Status;
218 UINT32 Index;
219
220 Index = mGaugeData->NumberOfEntries;
221 if (Index >= mMaxGaugeRecords) {
222 //
223 // Try to enlarge the scale of gauge arrary.
224 //
225 OldGaugeData = mGaugeData;
226 OldGaugeDataSize = sizeof (GAUGE_DATA_HEADER) + sizeof (GAUGE_DATA_ENTRY) * mMaxGaugeRecords;
227
228 mMaxGaugeRecords *= 2;
229 GaugeDataSize = sizeof (GAUGE_DATA_HEADER) + sizeof (GAUGE_DATA_ENTRY) * mMaxGaugeRecords;
230
231 mGaugeData = AllocateZeroPool (GaugeDataSize);
232 if (mGaugeData == NULL) {
233 return EFI_OUT_OF_MEMORY;
234 }
235 //
236 // Initialize new data arry and migrate old data one.
237 //
238 mGaugeData = CopyMem (mGaugeData, OldGaugeData, OldGaugeDataSize);
239
240 gBS->FreePool (OldGaugeData);
241 }
242
243 GaugeEntryArray = (GAUGE_DATA_ENTRY *) (mGaugeData + 1);
244 GaugeEntryArray[Index].Handle = (EFI_PHYSICAL_ADDRESS) (UINTN) Handle;
245
246 if (Token != NULL) {
247 AsciiStrnCpy (GaugeEntryArray[Index].Token, Token, DXE_PERFORMANCE_STRING_LENGTH);
248 }
249 if (Module != NULL) {
250 AsciiStrnCpy (GaugeEntryArray[Index].Module, Module, DXE_PERFORMANCE_STRING_LENGTH);
251 }
252
253 if (TimeStamp == 0) {
254 TimeStamp = GetPerformanceCounter ();
255 }
256 GaugeEntryArray[Index].StartTimeStamp = TimeStamp;
257
258 mGaugeData->NumberOfEntries++;
259
260 return EFI_SUCCESS;
261 }
262
263 /**
264 Searches the performance measurement log from the beginning of the log
265 for the first matching record that contains a zero end time and fills in a valid end time.
266
267 Searches the performance measurement log from the beginning of the log
268 for the first record that matches Handle, Token, and Module and has an end time value of zero.
269 If the record can not be found then return EFI_NOT_FOUND.
270 If the record is found and TimeStamp is not zero,
271 then the end time in the record is filled in with the value specified by TimeStamp.
272 If the record is found and TimeStamp is zero, then the end time in the matching record
273 is filled in with the current time stamp value.
274
275 @param Handle Pointer to environment specific context used
276 to identify the component being measured.
277 @param Token Pointer to a Null-terminated ASCII string
278 that identifies the component being measured.
279 @param Module Pointer to a Null-terminated ASCII string
280 that identifies the module being measured.
281 @param TimeStamp 64-bit time stamp.
282
283 @retval EFI_SUCCESS The end of the measurement was recorded.
284 @retval EFI_NOT_FOUND The specified measurement record could not be found.
285
286 **/
287 EFI_STATUS
288 EFIAPI
289 EndGauge (
290 IN CONST VOID *Handle, OPTIONAL
291 IN CONST CHAR8 *Token, OPTIONAL
292 IN CONST CHAR8 *Module, OPTIONAL
293 IN UINT64 TimeStamp
294 )
295 {
296 GAUGE_DATA_ENTRY *GaugeEntryArray;
297 UINT32 Index;
298
299 if (TimeStamp == 0) {
300 TimeStamp = GetPerformanceCounter ();
301 }
302
303 Index = InternalSearchForGaugeEntry (Handle, Token, Module);
304 if (Index >= mGaugeData->NumberOfEntries) {
305 return EFI_NOT_FOUND;
306 }
307 GaugeEntryArray = (GAUGE_DATA_ENTRY *) (mGaugeData + 1);
308 GaugeEntryArray[Index].EndTimeStamp = TimeStamp;
309
310 return EFI_SUCCESS;
311 }
312
313 /**
314 Retrieves a previously logged performance measurement.
315
316 Retrieves the performance log entry from the performance log specified by LogEntryKey.
317 If it stands for a valid entry, then EFI_SUCCESS is returned and
318 GaugeDataEntry stores the pointer to that entry.
319
320 @param LogEntryKey The key for the previous performance measurement log entry.
321 If 0, then the first performance measurement log entry is retrieved.
322 @param GaugeDataEntry The indirect pointer to the gauge data entry specified by LogEntryKey
323 if the retrieval is successful.
324
325 @retval EFI_SUCCESS The GuageDataEntry is successfuly found based on LogEntryKey.
326 @retval EFI_NOT_FOUND The LogEntryKey is the last entry (equals to the total entry number).
327 @retval EFI_INVALIDE_PARAMETER The LogEntryKey is not a valid entry (greater than the total entry number).
328 @retval EFI_INVALIDE_PARAMETER GaugeDataEntry is NULL.
329
330 **/
331 EFI_STATUS
332 EFIAPI
333 GetGauge (
334 IN UINTN LogEntryKey,
335 OUT GAUGE_DATA_ENTRY **GaugeDataEntry
336 )
337 {
338 UINTN NumberOfEntries;
339 GAUGE_DATA_ENTRY *LogEntryArray;
340
341 NumberOfEntries = (UINTN) (mGaugeData->NumberOfEntries);
342 if (LogEntryKey > NumberOfEntries) {
343 return EFI_INVALID_PARAMETER;
344 }
345 if (LogEntryKey == NumberOfEntries) {
346 return EFI_NOT_FOUND;
347 }
348
349 LogEntryArray = (GAUGE_DATA_ENTRY *) (mGaugeData + 1);
350
351 if (GaugeDataEntry == NULL) {
352 return EFI_INVALID_PARAMETER;
353 }
354 *GaugeDataEntry = &LogEntryArray[LogEntryKey];
355
356 return EFI_SUCCESS;
357 }
358
359 /**
360 Dumps all the PEI performance log to DXE performance gauge array.
361
362 This internal function dumps all the PEI performance log to the DXE performance gauge array.
363 It retrieves the optional GUID HOB for PEI performance and then saves the performance data
364 to DXE performance data structures.
365
366 **/
367 VOID
368 InternalGetPeiPerformance (
369 VOID
370 )
371 {
372 EFI_HOB_GUID_TYPE *GuidHob;
373 PEI_PERFORMANCE_LOG_HEADER *LogHob;
374 PEI_PERFORMANCE_LOG_ENTRY *LogEntryArray;
375 GAUGE_DATA_ENTRY *GaugeEntryArray;
376 UINT32 Index;
377 UINT32 NumberOfEntries;
378
379 NumberOfEntries = 0;
380 GaugeEntryArray = (GAUGE_DATA_ENTRY *) (mGaugeData + 1);
381
382 //
383 // Dump PEI Log Entries to DXE Guage Data structure.
384 //
385 GuidHob = GetFirstGuidHob (&gPeiPerformanceHobGuid);
386 if (GuidHob != NULL) {
387 LogHob = GET_GUID_HOB_DATA (GuidHob);
388 LogEntryArray = (PEI_PERFORMANCE_LOG_ENTRY *) (LogHob + 1);
389 GaugeEntryArray = (GAUGE_DATA_ENTRY *) (mGaugeData + 1);
390
391 NumberOfEntries = LogHob->NumberOfEntries;
392 for (Index = 0; Index < NumberOfEntries; Index++) {
393 GaugeEntryArray[Index].Handle = LogEntryArray[Index].Handle;
394 AsciiStrnCpy (GaugeEntryArray[Index].Token, LogEntryArray[Index].Token, DXE_PERFORMANCE_STRING_LENGTH);
395 AsciiStrnCpy (GaugeEntryArray[Index].Module, LogEntryArray[Index].Module, DXE_PERFORMANCE_STRING_LENGTH);
396 GaugeEntryArray[Index].StartTimeStamp = LogEntryArray[Index].StartTimeStamp;
397 GaugeEntryArray[Index].EndTimeStamp = LogEntryArray[Index].EndTimeStamp;
398 }
399 }
400 mGaugeData->NumberOfEntries = NumberOfEntries;
401 }
402
403 /**
404 The constructor function initializes Performance infrastructure for DXE phase.
405
406 The constructor function publishes Performance protocol, allocates memory to log DXE performance
407 and merges PEI performance data to DXE performance log.
408 It will ASSERT() if one of these operations fails and it will always return EFI_SUCCESS.
409
410 @param ImageHandle The firmware allocated handle for the EFI image.
411 @param SystemTable A pointer to the EFI System Table.
412
413 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
414
415 **/
416 EFI_STATUS
417 EFIAPI
418 DxeCorePerformanceLibConstructor (
419 IN EFI_HANDLE ImageHandle,
420 IN EFI_SYSTEM_TABLE *SystemTable
421 )
422 {
423 EFI_STATUS Status;
424
425 //
426 // Install the protocol interfaces.
427 //
428 Handle = NULL;
429 Status = gBS->InstallProtocolInterface (
430 &mHandle,
431 &gPerformanceProtocolGuid,
432 EFI_NATIVE_INTERFACE,
433 &mPerformanceInterface
434 );
435 ASSERT_EFI_ERROR (Status);
436
437 mMaxGaugeRecords = INIT_DXE_GAUGE_DATA_ENTRIES + MAX_PEI_PERFORMANCE_LOG_ENTRIES;
438
439 mGaugeData = AllocateZeroPool (sizeof (GAUGE_DATA_HEADER) + (sizeof (GAUGE_DATA_ENTRY) * mMaxGaugeRecords));
440 ASSERT (mGaugeData != NULL);
441
442 InternalGetPeiPerformance ();
443
444 return Status;
445 }
446
447 /**
448 Adds a record at the end of the performance measurement log
449 that records the start time of a performance measurement.
450
451 Adds a record to the end of the performance measurement log
452 that contains the Handle, Token, and Module.
453 The end time of the new record must be set to zero.
454 If TimeStamp is not zero, then TimeStamp is used to fill in the start time in the record.
455 If TimeStamp is zero, the start time in the record is filled in with the value
456 read from the current time stamp.
457
458 @param Handle Pointer to environment specific context used
459 to identify the component being measured.
460 @param Token Pointer to a Null-terminated ASCII string
461 that identifies the component being measured.
462 @param Module Pointer to a Null-terminated ASCII string
463 that identifies the module being measured.
464 @param TimeStamp 64-bit time stamp.
465
466 @retval RETURN_SUCCESS The start of the measurement was recorded.
467 @retval RETURN_OUT_OF_RESOURCES There are not enough resources to record the measurement.
468
469 **/
470 RETURN_STATUS
471 EFIAPI
472 StartPerformanceMeasurement (
473 IN CONST VOID *Handle, OPTIONAL
474 IN CONST CHAR8 *Token, OPTIONAL
475 IN CONST CHAR8 *Module, OPTIONAL
476 IN UINT64 TimeStamp
477 )
478 {
479 EFI_STATUS Status;
480
481 Status = StartGauge (Handle, Token, Module, TimeStamp);
482 return (RETURN_STATUS) Status;
483 }
484
485 /**
486 Searches the performance measurement log from the beginning of the log
487 for the first matching record that contains a zero end time and fills in a valid end time.
488
489 Searches the performance measurement log from the beginning of the log
490 for the first record that matches Handle, Token, and Module and has an end time value of zero.
491 If the record can not be found then return RETURN_NOT_FOUND.
492 If the record is found and TimeStamp is not zero,
493 then the end time in the record is filled in with the value specified by TimeStamp.
494 If the record is found and TimeStamp is zero, then the end time in the matching record
495 is filled in with the current time stamp value.
496
497 @param Handle Pointer to environment specific context used
498 to identify the component being measured.
499 @param Token Pointer to a Null-terminated ASCII string
500 that identifies the component being measured.
501 @param Module Pointer to a Null-terminated ASCII string
502 that identifies the module being measured.
503 @param TimeStamp 64-bit time stamp.
504
505 @retval RETURN_SUCCESS The end of the measurement was recorded.
506 @retval RETURN_NOT_FOUND The specified measurement record could not be found.
507
508 **/
509 RETURN_STATUS
510 EFIAPI
511 EndPerformanceMeasurement (
512 IN CONST VOID *Handle, OPTIONAL
513 IN CONST CHAR8 *Token, OPTIONAL
514 IN CONST CHAR8 *Module, OPTIONAL
515 IN UINT64 TimeStamp
516 )
517 {
518 EFI_STATUS Status;
519
520 Status = EndGauge (Handle, Token, Module, TimeStamp);
521 return (RETURN_STATUS) Status;
522 }
523
524 /**
525 Attempts to retrieve a performance measurement log entry from the performance measurement log.
526
527 Attempts to retrieve the performance log entry specified by LogEntryKey. If LogEntryKey is
528 zero on entry, then an attempt is made to retrieve the first entry from the performance log,
529 and the key for the second entry in the log is returned. If the performance log is empty,
530 then no entry is retrieved and zero is returned. If LogEntryKey is not zero, then the performance
531 log entry associated with LogEntryKey is retrieved, and the key for the next entry in the log is
532 returned. If LogEntryKey is the key for the last entry in the log, then the last log entry is
533 retrieved and an implementation specific non-zero key value that specifies the end of the performance
534 log is returned. If LogEntryKey is equal this implementation specific non-zero key value, then no entry
535 is retrieved and zero is returned. In the cases where a performance log entry can be returned,
536 the log entry is returned in Handle, Token, Module, StartTimeStamp, and EndTimeStamp.
537 If LogEntryKey is not a valid log entry key for the performance measurement log, then ASSERT().
538 If Handle is NULL, then ASSERT().
539 If Token is NULL, then ASSERT().
540 If Module is NULL, then ASSERT().
541 If StartTimeStamp is NULL, then ASSERT().
542 If EndTimeStamp is NULL, then ASSERT().
543
544 @param LogEntryKey On entry, the key of the performance measurement log entry to retrieve.
545 0, then the first performance measurement log entry is retrieved.
546 On exit, the key of the next performance lof entry entry.
547 @param Handle Pointer to environment specific context used to identify the component
548 being measured.
549 @param Token Pointer to a Null-terminated ASCII string that identifies the component
550 being measured.
551 @param Module Pointer to a Null-terminated ASCII string that identifies the module
552 being measured.
553 @param StartTimeStamp Pointer to the 64-bit time stamp that was recorded when the measurement
554 was started.
555 @param EndTimeStamp Pointer to the 64-bit time stamp that was recorded when the measurement
556 was ended.
557
558 @return The key for the next performance log entry (in general case).
559
560 **/
561 UINTN
562 EFIAPI
563 GetPerformanceMeasurement (
564 IN UINTN LogEntryKey,
565 OUT CONST VOID **Handle,
566 OUT CONST CHAR8 **Token,
567 OUT CONST CHAR8 **Module,
568 OUT UINT64 *StartTimeStamp,
569 OUT UINT64 *EndTimeStamp
570 )
571 {
572 EFI_STATUS Status;
573 GAUGE_DATA_ENTRY *GaugeData;
574
575 ASSERT (Handle != NULL);
576 ASSERT (Token != NULL);
577 ASSERT (Module != NULL);
578 ASSERT (StartTimeStamp != NULL);
579 ASSERT (EndTimeStamp != NULL);
580
581 Status = GetGauge (LogEntryKey++, &GaugeData);
582
583 //
584 // Make sure that LogEntryKey is a valid log entry key,
585 //
586 ASSERT (Status != EFI_INVALID_PARAMETER);
587
588 if (EFI_ERROR (Status)) {
589 //
590 // The LogEntryKey is the last entry (equals to the total entry number).
591 //
592 return 0;
593 }
594
595 ASSERT (GaugeData != NULL);
596
597 *Handle = (VOID *) (UINTN) GaugeData->Handle;
598 *Token = GaugeData->Token;
599 *Module = GaugeData->Module;
600 *StartTimeStamp = GaugeData->StartTimeStamp;
601 *EndTimeStamp = GaugeData->EndTimeStamp;
602
603 return LogEntryKey;
604 }
605
606 /**
607 Returns TRUE if the performance measurement macros are enabled.
608
609 This function returns TRUE if the PERFORMANCE_LIBRARY_PROPERTY_MEASUREMENT_ENABLED bit of
610 PcdPerformanceLibraryPropertyMask is set. Otherwise FALSE is returned.
611
612 @retval TRUE The PERFORMANCE_LIBRARY_PROPERTY_MEASUREMENT_ENABLED bit of
613 PcdPerformanceLibraryPropertyMask is set.
614 @retval FALSE The PERFORMANCE_LIBRARY_PROPERTY_MEASUREMENT_ENABLED bit of
615 PcdPerformanceLibraryPropertyMask is clear.
616
617 **/
618 BOOLEAN
619 EFIAPI
620 PerformanceMeasurementEnabled (
621 VOID
622 )
623 {
624 return ((PcdGet8(PcdPerformanceLibraryPropertyMask) & PERFORMANCE_LIBRARY_PROPERTY_MEASUREMENT_ENABLED) != 0);
625 }