blob: 4bcf505b0f3dbbeff788045979f51842e0cfde7c (
plain)
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
|
#ifndef _PCILIB_PAGECPY_H
#define _PCILIB_PAGECPY_H
#include <stdio.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* This function should be used to move large blocks of non-cached memory between
* aligned memory locations. The function will determine the CPU model and alginment
* and call appropriate implementation. If nothing suitable found, standard memcpy
* will be used. It is OK to call on small or unligned data, the standard memcpy
* will be executed in this case. The memory regions should not intersect.
* Only AVX implementation so far.
* @param[out] dst - destination memory region
* @param[in] src - source memory region
* @param[in] size - size of memory region in bytes.
* @return - `dst` or NULL on error
*/
void pcilib_pagecpy(void *dst, const void *src, size_t size);
#ifdef __cplusplus
}
#endif
#endif /* _PCILIB_PAGECPY_H */
|