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
|
// SPDX-License-Identifier: BSD-2-Clause
/* Copyright (C) 2015 - 2021 Intel Corporation. */
#pragma once
#include "Configuration.hpp"
#include "VectorIterator.hpp"
#include <cstdlib>
#include <vector>
class FunctionCalls
{
public:
enum
{
FREE,
MALLOC,
CALLOC,
REALLOC,
NUM_OF_FUNCTIONS
};
static const std::string function_name(unsigned type)
{
static std::string names[] = {"free", "malloc", "calloc", "realloc"};
if (type >= NUM_OF_FUNCTIONS)
assert(!"Invalidate input argument!");
return names[type];
}
static unsigned function_type(const std::string &name)
{
for (unsigned i = 0; i < NUM_OF_FUNCTIONS; i++) {
if (function_name(i) == name)
return i;
}
assert(!"Invalid input argument!");
}
static VectorIterator<int>
generate_random_allocator_func_calls(int call_num, int seed,
TypesConf func_calls)
{
std::vector<unsigned> avail_types;
std::srand(seed);
std::vector<int> calls;
for (int i = 0; i < call_num; i++) {
int index;
do {
index = rand() % (NUM_OF_FUNCTIONS);
} while (!func_calls.is_enabled(index));
calls.push_back(index);
}
return VectorIterator<int>::create(calls);
}
};
|