summaryrefslogtreecommitdiff
path: root/micro_bench
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2016-02-02 10:49:50 -0800
committerChih-Hung Hsieh <chh@google.com>2016-02-02 10:49:50 -0800
commitae4366e358e60d3c1c4cb6c6b7128d11688dd033 (patch)
treed35860e9e12fc07357a3cb28c194b6aba5e26616 /micro_bench
parentb764f45fd9758c8222bc08d7fa4944e8f7da6f40 (diff)
downloadextras-ae4366e358e60d3c1c4cb6c6b7128d11688dd033.tar.gz
Fix/suppress potential memory leaks warnings.
* One simple problem fixed by calling free. * Others are suppressed since we don't care memory leaks in this soon-to-be-obsolete test program. BUG: 26910807 Change-Id: I5ac10115db9644b53e9e8b5fd40a5dc87b2019dc
Diffstat (limited to 'micro_bench')
-rw-r--r--micro_bench/micro_bench.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/micro_bench/micro_bench.cpp b/micro_bench/micro_bench.cpp
index 75d9f8bd..c20f7d83 100644
--- a/micro_bench/micro_bench.cpp
+++ b/micro_bench/micro_bench.cpp
@@ -91,11 +91,19 @@ uint64_t nanoTime() {
return static_cast<uint64_t>(t.tv_sec) * NS_PER_SEC + t.tv_nsec;
}
+// Static analyzer warns about potential memory leak of orig_ptr
+// in getAlignedMemory. That is true and the callers in this program
+// do not free orig_ptr. But, we don't care about that in this
+// going-obsolete test program. So, here is a hack to trick the
+// static analyzer.
+static void *saved_orig_ptr;
+
// Allocate memory with a specific alignment and return that pointer.
// This function assumes an alignment value that is a power of 2.
// If the alignment is 0, then use the pointer returned by malloc.
uint8_t *getAlignedMemory(uint8_t *orig_ptr, int alignment, int or_mask) {
uint64_t ptr = reinterpret_cast<uint64_t>(orig_ptr);
+ saved_orig_ptr = orig_ptr;
if (alignment > 0) {
// When setting the alignment, set it to exactly the alignment chosen.
// The pointer returned will be guaranteed not to be aligned to anything
@@ -447,6 +455,7 @@ int benchmarkMemread(const char *name, const command_data_t &cmd_data, void_func
size_t k;
MAINLOOP_DATA(name, cmd_data, size,
for (k = 0; k < size/sizeof(uint32_t); k++) foo = src[k]);
+ free(src);
return 0;
}