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
|
/*
* Copyright (c) 2013-2015 Mellanox Technologies, Inc.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include "oshmem/constants.h"
#include "oshmem/include/shmem.h"
#include "oshmem/include/shmemx.h"
#include "oshmem/shmem/shmem_api_logger.h"
#include "oshmem/runtime/runtime.h"
#include "oshmem/mca/memheap/memheap.h"
#if OSHMEM_PROFILING
#include "oshmem/include/pshmem.h"
#include "oshmem/include/pshmemx.h"
#pragma weak shmem_malloc = pshmem_malloc
#pragma weak shmem_calloc = pshmem_calloc
#pragma weak shmalloc = pshmalloc
#pragma weak shmem_malloc_with_hints = pshmem_malloc_with_hints
#include "oshmem/shmem/c/profile-defines.h"
#endif
static inline void* _shmalloc(size_t size);
void* shmem_malloc(size_t size)
{
return _shmalloc(size);
}
void* shmem_calloc(size_t count, size_t size)
{
size_t req_sz = count * size;
if (!req_sz) return NULL;
void *ptr = _shmalloc(req_sz);
if (ptr) {
memset(ptr, 0, req_sz);
}
return ptr;
}
void* shmalloc(size_t size)
{
return _shmalloc(size);
}
static inline void* _shmalloc(size_t size)
{
int rc;
void* pBuff = NULL;
RUNTIME_CHECK_INIT();
RUNTIME_CHECK_WITH_MEMHEAP_SIZE(size);
SHMEM_MUTEX_LOCK(shmem_internal_mutex_alloc);
rc = MCA_MEMHEAP_CALL(alloc(size, &pBuff));
SHMEM_MUTEX_UNLOCK(shmem_internal_mutex_alloc);
if (OSHMEM_SUCCESS != rc) {
SHMEM_API_VERBOSE(10,
"Allocation with shmalloc(size=%lu) failed.",
(unsigned long)size);
return NULL ;
}
#if OSHMEM_SPEC_COMPAT == 1
shmem_barrier_all();
#endif
return pBuff;
}
void* shmem_malloc_with_hints(size_t size, long hint)
{
int rc;
void* pBuff = NULL;
if (!hint) {
return _shmalloc(size);
}
RUNTIME_CHECK_INIT();
RUNTIME_CHECK_WITH_MEMHEAP_SIZE(size);
SHMEM_MUTEX_LOCK(shmem_internal_mutex_alloc);
rc = mca_memheap_alloc_with_hint(size, hint, &pBuff);
SHMEM_MUTEX_UNLOCK(shmem_internal_mutex_alloc);
if (OSHMEM_SUCCESS != rc) {
SHMEM_API_VERBOSE(10,
"Allocation with shmalloc(size=%lu) failed.",
(unsigned long)size);
return NULL ;
}
#if OSHMEM_SPEC_COMPAT == 1
shmem_barrier_all();
#endif
return pBuff;
}
|