2020-08-11 16:34:22 +02:00
|
|
|
/*
|
2022-09-05 10:39:42 +02:00
|
|
|
* Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg.
|
|
|
|
* All rights reserved. This file is part of MD-Bench.
|
|
|
|
* Use of this source code is governed by a LGPL-3.0
|
|
|
|
* license that can be found in the LICENSE file.
|
2020-08-11 16:34:22 +02:00
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2020-08-18 14:27:28 +02:00
|
|
|
#include <string.h>
|
2020-08-11 16:34:22 +02:00
|
|
|
#include <errno.h>
|
2022-08-09 18:53:53 +02:00
|
|
|
#include <util.h>
|
2020-08-11 16:34:22 +02:00
|
|
|
|
2022-08-09 18:53:53 +02:00
|
|
|
void *allocate(int alignment, size_t bytesize) {
|
2022-08-12 18:12:29 +02:00
|
|
|
void *ptr;
|
2020-08-11 16:34:22 +02:00
|
|
|
int errorCode;
|
|
|
|
|
2022-08-09 18:53:53 +02:00
|
|
|
errorCode = posix_memalign(&ptr, alignment, bytesize);
|
|
|
|
if(errorCode == EINVAL) {
|
|
|
|
fprintf(stderr, "Error: Alignment parameter is not a power of two\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2020-08-11 16:34:22 +02:00
|
|
|
|
2022-08-09 18:53:53 +02:00
|
|
|
if(errorCode == ENOMEM) {
|
|
|
|
fprintf(stderr, "Error: Insufficient memory to fulfill the request\n");
|
|
|
|
exit(EXIT_FAILURE);
|
2020-08-11 16:34:22 +02:00
|
|
|
}
|
|
|
|
|
2022-08-09 18:53:53 +02:00
|
|
|
if(ptr == NULL) {
|
2020-08-11 16:34:22 +02:00
|
|
|
fprintf(stderr, "Error: posix_memalign failed!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
2020-08-18 14:27:28 +02:00
|
|
|
|
2022-08-12 04:19:38 +02:00
|
|
|
void *reallocate(void* ptr, int alignment, size_t new_bytesize, size_t old_bytesize) {
|
|
|
|
void *newarray = allocate(alignment, new_bytesize);
|
2020-08-18 14:27:28 +02:00
|
|
|
if(ptr != NULL) {
|
2022-08-12 04:19:38 +02:00
|
|
|
memcpy(newarray, ptr, old_bytesize);
|
2020-08-18 14:27:28 +02:00
|
|
|
free(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return newarray;
|
|
|
|
}
|