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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
/*
* Dkmem.c
*
* $Id$
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2018 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "Dk.h"
#include "Dk/Dksystem.h"
#include "Dksimd.h"
void
memzero (void* ptr, int len)
{
memset (ptr, 0, len);
}
void
memset_16 (void* ptr, unsigned char fill, int len)
{
memset (ptr, fill, len);
}
void
int_fill (int * ptr, int n, int len)
{
unsigned int inx = 0;
for (inx = inx; inx < len; inx++)
ptr[inx] = n;
}
void
int64_fill (int64 * ptr, int64 n, int len)
{
unsigned int inx = 0;
for (inx = inx; inx < len; inx++)
ptr[inx] = n;
}
void
int64_fill_nt (int64 * ptr, int64 n, int len)
{
unsigned int inx = 0;
for (inx = inx; inx < len; inx++)
ptr[inx] = n;
}
void
int_asc_fill (int * ptr, int len, int start)
{
unsigned int inx;
for (inx = 0; inx < len; inx++)
ptr[inx] = inx + start;
}
#define cpy(dtp) \
{*(dtp*)target = *(dtp*)source; target += sizeof (dtp); source += sizeof (dtp);}
#define D_cpy(dtp) \
{ target -= sizeof (dtp); source -= sizeof (dtp); *(dtp*)target = *(dtp*)source;}
void
memcpy_16 (void * t, const void * s, size_t len)
{
memcpy (t, s, len);
}
void
memcpy_16_nt (void * t, const void * s, size_t len)
{
memcpy (t, s, len);
}
void
memmove_16 (void * t, const void * s, size_t len)
{
memmove (t, s, len);
}
uint64
rdtsc()
{
#if defined(HAVE_GETHRTIME) || defined(SOLARIS)
return (uint64) gethrtime ();
#elif defined (WIN32)
return __rdtsc ();
#elif defined (__GNUC__) && defined (__x86_64__)
uint32 lo, hi;
/* Serialize */
__asm__ __volatile__ ("xorl %%eax,%%eax\n\tcpuid":::"%rax", "%rbx", "%rcx", "%rdx");
/* We cannot use "=A", since this would use %rax on x86_64 and return only the lower 32bits of the TSC */
__asm__ __volatile__ ("rdtsc":"=a" (lo), "=d" (hi));
return (uint64) hi << 32 | lo;
#elif defined (__GNUC__) && defined (__i386__)
uint64 result;
__asm__ __volatile__ ("rdtsc":"=A" (result));
return result;
#elif defined(__GNUC__) && defined(__ia64__)
uint64 result;
__asm__ __volatile__ ("mov %0=ar.itc":"=r" (result));
return result;
#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__POWERPC__)) && (defined(__64BIT__) || defined(_ARCH_PPC64))
uint64 result;
__asm__ __volatile__ ("mftb %0":"=r" (result));
return result;
#elif defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_REALTIME)
struct timespec t;
clock_gettime(CLOCK_REALTIME, &t);
return (uint64) t.tv_sec * 1000000000 + (uint64) t.tv_nsec;
#else
return 0;
#endif
}
|