]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Library/UefiDpLib/Dp.h
ShellPkg: Add "dp" command library to ShellPkg.
[mirror_edk2.git] / ShellPkg / Library / UefiDpLib / Dp.h
CommitLineData
d41bc92c 1/** @file\r
2 Common declarations for the Dp Performance Reporting Utility.\r
3\r
4 Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12**/\r
13\r
14#ifndef _EFI_APP_DP_H_\r
15#define _EFI_APP_DP_H_\r
16\r
17#include <Library/ShellLib.h>\r
18#include <ShellBase.h>\r
19\r
20#define DP_MAJOR_VERSION 2\r
21#define DP_MINOR_VERSION 4\r
22\r
23/**\r
24 * The value assigned to DP_DEBUG controls which debug output\r
25 * is generated. Set it to ZERO to disable.\r
26**/\r
27#define DP_DEBUG 0\r
28\r
29/**\r
30 * Set to 1 once Profiling has been implemented in order to enable\r
31 * profiling related options and report output.\r
32**/\r
33#define PROFILING_IMPLEMENTED 0\r
34\r
35#define DEFAULT_THRESHOLD 1000 ///< One millisecond.\r
36#define DEFAULT_DISPLAYCOUNT 50\r
37#define MAXIMUM_DISPLAYCOUNT 999999 ///< Arbitrary maximum reasonable number.\r
38\r
39#define PERF_MAXDUR 0xFFFFFFFFFFFFFFFFULL\r
40\r
41/// Determine whether 0 <= C < L. If L == 0, return true regardless of C.\r
42#define WITHIN_LIMIT( C, L) ( ((L) == 0) || ((C) < (L)) )\r
43\r
44/// Structure for storing Timer specific information.\r
45typedef struct {\r
46 UINT64 StartCount; ///< Value timer is initialized with.\r
47 UINT64 EndCount; ///< Value timer has just before it wraps.\r
48 UINT32 Frequency; ///< Timer count frequency in KHz.\r
49 BOOLEAN CountUp; ///< TRUE if the counter counts up.\r
50} TIMER_INFO;\r
51\r
52/** Initialize one PERF_CUM_DATA structure instance for token t.\r
53 *\r
54 * This parameterized macro takes a single argument, t, which is expected\r
55 * to resolve to a pointer to an ASCII string literal. This parameter may\r
56 * take any one of the following forms:\r
57 * - PERF_INIT_CUM_DATA("Token") A string literal\r
58 * - PERF_INIT_CUM_DATA(pointer) A pointer -- CHAR8 *pointer;\r
59 * - PERF_INIT_CUM_DATA(array) Address of an array -- CHAR8 array[N];\r
60**/\r
61#define PERF_INIT_CUM_DATA(t) { 0ULL, PERF_MAXDUR, 0ULL, (t), 0U }\r
62\r
63typedef struct {\r
64 UINT64 Duration; ///< Cumulative duration for this item.\r
65 UINT64 MinDur; ///< Smallest duration encountered.\r
66 UINT64 MaxDur; ///< Largest duration encountered.\r
67 CHAR8 *Name; ///< ASCII name of this item.\r
68 UINT32 Count; ///< Total number of measurements accumulated.\r
69} PERF_CUM_DATA;\r
70\r
71typedef struct {\r
72 UINT32 NumTrace; ///< Number of recorded TRACE performance measurements.\r
73 UINT32 NumProfile; ///< Number of recorded PROFILE performance measurements.\r
74 UINT32 NumIncomplete; ///< Number of measurements with no END value.\r
75 UINT32 NumSummary; ///< Number of summary section measurements.\r
76 UINT32 NumHandles; ///< Number of measurements with handles.\r
77 UINT32 NumPEIMs; ///< Number of measurements of PEIMs.\r
78 UINT32 NumGlobal; ///< Number of measurements with END value and NULL handle.\r
79} PERF_SUMMARY_DATA;\r
80\r
81typedef struct {\r
82 CONST VOID *Handle;\r
83 CONST CHAR8 *Token; ///< Measured token string name.\r
84 CONST CHAR8 *Module; ///< Module string name.\r
85 UINT64 StartTimeStamp; ///< Start time point.\r
86 UINT64 EndTimeStamp; ///< End time point.\r
87 UINT32 Identifier; ///< Identifier.\r
88} MEASUREMENT_RECORD;\r
89\r
90typedef struct {\r
91 CHAR8 *Name; ///< Measured token string name.\r
92 UINT64 CumulativeTime; ///< Accumulated Elapsed Time.\r
93 UINT64 MinTime; ///< Minimum Elapsed Time.\r
94 UINT64 MaxTime; ///< Maximum Elapsed Time.\r
95 UINT32 Count; ///< Number of measurements accumulated.\r
96} PROFILE_RECORD;\r
97\r
98#endif // _EFI_APP_DP_H_\r