summaryrefslogtreecommitdiffstats
path: root/tester/covoar/DesiredSymbols.h
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-27 17:02:26 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-03 15:56:53 -0500
commitc159160424dc18b5c71e4bacae0230da3ea16ec1 (patch)
treed2b82dd0c7206532aa2049eb48d57020eb643351 /tester/covoar/DesiredSymbols.h
parentRemove objdumpProcessor global variable (diff)
downloadrtems-tools-c159160424dc18b5c71e4bacae0230da3ea16ec1.tar.bz2
Remove Verbose global variable
Replaced Verbose in app_common with local variables that are passed as a parameter into numerous functions
Diffstat (limited to 'tester/covoar/DesiredSymbols.h')
-rw-r--r--tester/covoar/DesiredSymbols.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/tester/covoar/DesiredSymbols.h b/tester/covoar/DesiredSymbols.h
index 411b818..791b4ea 100644
--- a/tester/covoar/DesiredSymbols.h
+++ b/tester/covoar/DesiredSymbols.h
@@ -222,8 +222,10 @@ namespace Coverage {
/*!
* This method analyzes each symbols coverage map to determine any
* uncovered ranges or branches.
+ *
+ * @param[in] verbose specifies whether to be verbose with output
*/
- void computeUncovered( void );
+ void computeUncovered( bool verbose );
/*!
* This method creates a coverage map for the specified symbol
@@ -234,12 +236,15 @@ namespace Coverage {
* @param[in] symbolName specifies the symbol for which to create
* a coverage map
* @param[in] size specifies the size of the coverage map to create
+ * @param[in] sizeWithoutNops specifies the size without no ops
+ * @param[in] verbose specifies whether to be verbose with output
*/
void createCoverageMap(
const std::string& exefileName,
const std::string& symbolName,
uint32_t size,
- uint32_t sizeWithoutNops
+ uint32_t sizeWithoutNops,
+ bool verbose
);
/*!
@@ -256,8 +261,10 @@ namespace Coverage {
/*!
* This method determines the source lines that correspond to any
* uncovered ranges or branches.
+ *
+ * @param[in] verbose specifies whether to be verbose with output
*/
- void findSourceForUncovered( void );
+ void findSourceForUncovered( bool verbose );
/*!
* This method returns the total number of branches always taken