1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
/*
Copyright (c) 2005-2025 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#define __TBB_NO_IMPLICIT_LINKAGE 1
#if _USRDLL
#include <stdlib.h>
#include "common/config.h"
#include "common/utils_assert.h"
#include "tbb/scalable_allocator.h"
extern "C" {
#if _WIN32||_WIN64
extern __declspec(dllexport) void callDll();
#else
extern __TBB_EXPORT void callDll();
extern __TBB_EXPORT int main();
#endif
}
extern "C" void callDll()
{
static const int NUM = 20;
void *ptrs[NUM];
for (int i=0; i<NUM; i++) {
ptrs[i] = scalable_malloc(i*1024);
ASSERT(ptrs[i], nullptr);
}
for (int i=0; i<NUM; i++)
scalable_free(ptrs[i]);
}
extern "C" int main() {
return 0;
}
#else // _USRDLL
#include "common/config.h"
// FIXME: fix the test to support Windows* 8 Store Apps mode.
// For sanitizers, it fails because RUNPATH is lost: https://github.com/google/sanitizers/issues/1219
#if !__TBB_WIN8UI_SUPPORT && !(__GNUC__ && __GNUC__ < 10 && __TBB_USE_SANITIZERS) && __TBB_DYNAMIC_LOAD_ENABLED
#define __TBB_NO_IMPLICIT_LINKAGE 1
#include "common/test.h"
#include "common/utils.h"
#include "common/utils_dynamic_libs.h"
#include "common/utils_report.h"
#include "common/memory_usage.h"
#include "common/spin_barrier.h"
class UseDll {
utils::FunctionAddress run;
public:
UseDll(utils::FunctionAddress runPtr) : run(runPtr) { }
void operator()( std::size_t /*id*/ ) const {
(*run)();
}
};
void LoadThreadsUnload()
{
utils::LIBRARY_HANDLE lib =
utils::OpenLibrary(TEST_LIBRARY_NAME("_test_malloc_used_by_lib"));
ASSERT(lib, "Can't load " TEST_LIBRARY_NAME("_test_malloc_used_by_lib"));
utils::NativeParallelFor(std::size_t(4), UseDll(utils::GetAddress(lib, "callDll")));
utils::CloseLibrary(lib);
}
struct UnloadCallback {
utils::LIBRARY_HANDLE lib;
void operator() () const {
utils::CloseLibrary(lib);
}
};
struct RunWithLoad {
static utils::SpinBarrier startBarr, endBarr;
static UnloadCallback unloadCallback;
static utils::FunctionAddress runPtr;
void operator()(std::size_t id) const {
if (!id) {
utils::LIBRARY_HANDLE lib =
utils::OpenLibrary(TEST_LIBRARY_NAME("_test_malloc_used_by_lib"));
ASSERT(lib, "Can't load " TEST_LIBRARY_NAME("_test_malloc_used_by_lib"));
runPtr = utils::GetAddress(lib, "callDll");
unloadCallback.lib = lib;
}
startBarr.wait();
(*runPtr)();
endBarr.wait(unloadCallback);
}
};
utils::SpinBarrier RunWithLoad::startBarr{}, RunWithLoad::endBarr{};
UnloadCallback RunWithLoad::unloadCallback;
utils::FunctionAddress RunWithLoad::runPtr;
void ThreadsLoadUnload() {
constexpr std::size_t threads = 4;
RunWithLoad::startBarr.initialize(threads);
RunWithLoad::endBarr.initialize(threads);
RunWithLoad body{};
utils::NativeParallelFor(threads, body);
}
//! \brief \ref error_guessing
TEST_CASE("use test as lib") {
const int ITERS = 20;
int i;
std::ptrdiff_t memory_leak = 0;
utils::GetMemoryUsage();
for (int run = 0; run < 2; run++) {
// expect that memory consumption stabilized after several runs
for (i = 0; i < ITERS; i++) {
std::size_t memory_in_use = utils::GetMemoryUsage();
if (run) {
LoadThreadsUnload();
} else {
ThreadsLoadUnload();
}
memory_leak = utils::GetMemoryUsage() - memory_in_use;
if (memory_leak == 0) // possibly too strong?
break;
}
if(i==ITERS) {
// not stabilized, could be leak
REPORT( "Error: memory leak of up to %ld bytes\n", static_cast<long>(memory_leak));
WARN(false);
}
}
}
#endif /* Unsupported configurations */
#endif // _USRDLL
|