mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-08 00:09:31 +03:00
merge from dev
This commit is contained in:
commit
5cd09cec76
1 changed files with 52 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include <mimalloc.h>
|
//#include <mimalloc.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -41,15 +41,17 @@ static void bench_alloc_large(void); // issue #xxx
|
||||||
static void heap_thread_free_huge();
|
static void heap_thread_free_huge();
|
||||||
static void test_std_string(); // issue #697
|
static void test_std_string(); // issue #697
|
||||||
static void test_thread_local(); // issue #944
|
static void test_thread_local(); // issue #944
|
||||||
|
// static void test_mixed0(); // issue #942
|
||||||
|
static void test_mixed1(); // issue #942
|
||||||
static void test_stl_allocators();
|
static void test_stl_allocators();
|
||||||
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
// mi_stats_reset(); // ignore earlier allocations
|
// mi_stats_reset(); // ignore earlier allocations
|
||||||
|
|
||||||
|
test_mixed1();
|
||||||
//test_std_string();
|
//test_std_string();
|
||||||
test_thread_local();
|
//test_thread_local();
|
||||||
// heap_thread_free_huge();
|
// heap_thread_free_huge();
|
||||||
/*
|
/*
|
||||||
heap_thread_free_huge();
|
heap_thread_free_huge();
|
||||||
|
@ -187,6 +189,53 @@ static void test_stl_allocators() {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
#include <algorithm>
|
||||||
|
#include <chrono>
|
||||||
|
#include <functional>
|
||||||
|
#include <iostream>
|
||||||
|
#include <thread>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
static void test_mixed0() {
|
||||||
|
std::vector<std::unique_ptr<std::size_t>> numbers(1024 * 1024 * 100);
|
||||||
|
std::vector<std::thread> threads(1);
|
||||||
|
|
||||||
|
std::atomic<std::size_t> index{};
|
||||||
|
|
||||||
|
auto start = std::chrono::system_clock::now();
|
||||||
|
|
||||||
|
for (auto& thread : threads) {
|
||||||
|
thread = std::thread{[&index, &numbers]() {
|
||||||
|
while (true) {
|
||||||
|
auto i = index.fetch_add(1, std::memory_order_relaxed);
|
||||||
|
if (i >= numbers.size()) return;
|
||||||
|
|
||||||
|
numbers[i] = std::make_unique<std::size_t>(i);
|
||||||
|
}
|
||||||
|
}};
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto& thread : threads) thread.join();
|
||||||
|
|
||||||
|
auto end = std::chrono::system_clock::now();
|
||||||
|
|
||||||
|
auto duration =
|
||||||
|
std::chrono::duration_cast<std::chrono::milliseconds>(end - start);
|
||||||
|
std::cout << "Running on " << threads.size() << " threads took " << duration
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void asd() {
|
||||||
|
void* p = malloc(128);
|
||||||
|
free(p);
|
||||||
|
}
|
||||||
|
static void test_mixed1() {
|
||||||
|
std::thread thread(asd);
|
||||||
|
thread.join();
|
||||||
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
// issue #691
|
// issue #691
|
||||||
static char* cptr;
|
static char* cptr;
|
||||||
|
|
Loading…
Add table
Reference in a new issue