mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
Sync VEX/LICENSE.GPL with top-level COPYING file. We used 3 different addresses for writing to the FSF to receive a copy of the GPL. Replace all different variants with an URL <http://www.gnu.org/licenses/>. The following files might still have some slightly different (L)GPL copyright notice because they were derived from other programs: - files under coregrind/m_demangle which come from libiberty: cplus-dem.c, d-demangle.c, demangle.h, rust-demangle.c, safe-ctype.c and safe-ctype.h - coregrind/m_demangle/dyn-string.[hc] derived from GCC. - coregrind/m_demangle/ansidecl.h derived from glibc. - VEX files for FMA detived from glibc: host_generic_maddf.h and host_generic_maddf.c - files under coregrin/m_debuginfo derived from LZO: lzoconf.h, lzodefs.h, minilzo-inl.c and minilzo.h - files under coregrind/m_gdbserver detived from GDB: gdb/signals.h, inferiors.c, regcache.c, regcache.h, regdef.h, remote-utils.c, server.c, server.h, signals.c, target.c, target.h and utils.c Plus the following test files: - none/tests/ppc32/testVMX.c derived from testVMX. - ppc tests derived from QEMU: jm-insns.c, ppc64_helpers.h and test_isa_3_0.c - tests derived from bzip2 (with embedded GPL text in code): hackedbz2.c, origin5-bz2.c, varinfo6.c - tests detived from glibc: str_tester.c, pth_atfork1.c - test detived from GCC libgomp: tc17_sembar.c - performance tests derived from bzip2 or tinycc (with embedded GPL text in code): bz2.c, test_input_for_tinycc.c and tinycc.c
268 lines
7.4 KiB
C
268 lines
7.4 KiB
C
|
|
/*--------------------------------------------------------------------*/
|
|
/*--- Misc simple stuff lacking a better home. misc.c ---*/
|
|
/*--------------------------------------------------------------------*/
|
|
|
|
/*
|
|
This file is part of Valgrind, a dynamic binary instrumentation
|
|
framework.
|
|
|
|
Copyright (C) 2008-2017 OpenWorks LLP
|
|
info@open-works.co.uk
|
|
|
|
This program 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; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
|
|
|
The GNU General Public License is contained in the file COPYING.
|
|
|
|
Neither the names of the U.S. Department of Energy nor the
|
|
University of California nor the names of its contributors may be
|
|
used to endorse or promote products derived from this software
|
|
without prior written permission.
|
|
*/
|
|
|
|
#include "pub_core_basics.h"
|
|
#include "pub_core_libcbase.h"
|
|
#include "pub_core_libcassert.h"
|
|
#include "pub_core_mallocfree.h"
|
|
#include "pub_core_xarray.h"
|
|
|
|
#include "priv_misc.h" /* self */
|
|
|
|
|
|
void* ML_(dinfo_zalloc) ( const HChar* cc, SizeT szB ) {
|
|
void* v;
|
|
vg_assert(szB > 0);
|
|
v = VG_(arena_malloc)( VG_AR_DINFO, cc, szB );
|
|
VG_(memset)(v, 0, szB);
|
|
return v;
|
|
}
|
|
|
|
void ML_(dinfo_shrink_block)( void* ptr, SizeT szB ) {
|
|
VG_(arena_realloc_shrink)( VG_AR_DINFO, ptr, szB );
|
|
}
|
|
|
|
void ML_(dinfo_free) ( void* v ) {
|
|
VG_(arena_free)( VG_AR_DINFO, v );
|
|
}
|
|
|
|
HChar* ML_(dinfo_strdup) ( const HChar* cc, const HChar* str ) {
|
|
return VG_(arena_strdup)( VG_AR_DINFO, cc, str );
|
|
}
|
|
|
|
void* ML_(dinfo_memdup) ( const HChar* cc, const void* str, SizeT nStr ) {
|
|
void* dst = VG_(arena_malloc)( VG_AR_DINFO, cc, nStr );
|
|
VG_(memcpy)(dst, str, nStr);
|
|
return dst;
|
|
}
|
|
|
|
void* ML_(dinfo_realloc) ( const HChar* cc, void* ptr, SizeT new_size ) {
|
|
void* dst = VG_(arena_realloc)( VG_AR_DINFO, cc, ptr, new_size );
|
|
vg_assert(dst);
|
|
return dst;
|
|
}
|
|
|
|
static inline Bool host_is_little_endian ( void ) {
|
|
UInt x = 0x76543210;
|
|
UChar* p = (UChar*)(&x);
|
|
return toBool(*p == 0x10);
|
|
}
|
|
|
|
Short ML_(readUAS_Short)( const UChar* data ) {
|
|
Short r = 0;
|
|
if (host_is_little_endian()) {
|
|
r = data[0]
|
|
| ( ((UInt)data[1]) << 8 );
|
|
} else {
|
|
r = data[1]
|
|
| ( ((UInt)data[0]) << 8 );
|
|
}
|
|
return r;
|
|
}
|
|
|
|
Int ML_(readUAS_Int) ( const UChar* data ) {
|
|
Int r = 0;
|
|
if (host_is_little_endian()) {
|
|
r = data[0]
|
|
| ( ((UInt)data[1]) << 8 )
|
|
| ( ((UInt)data[2]) << 16 )
|
|
| ( ((UInt)data[3]) << 24 );
|
|
} else {
|
|
r = data[3]
|
|
| ( ((UInt)data[2]) << 8 )
|
|
| ( ((UInt)data[1]) << 16 )
|
|
| ( ((UInt)data[0]) << 24 );
|
|
}
|
|
return r;
|
|
}
|
|
|
|
Long ML_(readUAS_Long) ( const UChar* data ) {
|
|
Long r = 0;
|
|
if (host_is_little_endian()) {
|
|
r = data[0]
|
|
| ( ((ULong)data[1]) << 8 )
|
|
| ( ((ULong)data[2]) << 16 )
|
|
| ( ((ULong)data[3]) << 24 )
|
|
| ( ((ULong)data[4]) << 32 )
|
|
| ( ((ULong)data[5]) << 40 )
|
|
| ( ((ULong)data[6]) << 48 )
|
|
| ( ((ULong)data[7]) << 56 );
|
|
} else {
|
|
r = data[7]
|
|
| ( ((ULong)data[6]) << 8 )
|
|
| ( ((ULong)data[5]) << 16 )
|
|
| ( ((ULong)data[4]) << 24 )
|
|
| ( ((ULong)data[3]) << 32 )
|
|
| ( ((ULong)data[2]) << 40 )
|
|
| ( ((ULong)data[1]) << 48 )
|
|
| ( ((ULong)data[0]) << 56 );
|
|
}
|
|
return r;
|
|
}
|
|
|
|
UShort ML_(readUAS_UShort) ( const UChar* data ) {
|
|
UInt r = 0;
|
|
if (host_is_little_endian()) {
|
|
r = data[0]
|
|
| ( ((UInt)data[1]) << 8 );
|
|
} else {
|
|
r = data[1]
|
|
| ( ((UInt)data[0]) << 8 );
|
|
}
|
|
return r;
|
|
}
|
|
|
|
UChar *ML_(writeUAS_UShort) ( UChar* ptr, UShort val ) {
|
|
if (host_is_little_endian()) {
|
|
ptr[0] = val & 0xff;
|
|
ptr[1] = ( val >> 8 ) & 0xff;
|
|
} else {
|
|
ptr[0] = ( val >> 8 ) & 0xff;
|
|
ptr[1] = val & 0xff;
|
|
}
|
|
return ptr + sizeof(UShort);
|
|
}
|
|
|
|
UWord ML_(readUAS_UWord) ( const UChar* data ) {
|
|
if (sizeof(UWord) == sizeof(UInt)) {
|
|
return ML_(read_UInt)(data);
|
|
} else if (sizeof(UWord) == sizeof(ULong)) {
|
|
return ML_(read_ULong)(data);
|
|
} else {
|
|
vg_assert(0);
|
|
}
|
|
}
|
|
|
|
UInt ML_(readUAS_UInt) ( const UChar* data ) {
|
|
UInt r = 0;
|
|
if (host_is_little_endian()) {
|
|
r = data[0]
|
|
| ( ((UInt)data[1]) << 8 )
|
|
| ( ((UInt)data[2]) << 16 )
|
|
| ( ((UInt)data[3]) << 24 );
|
|
} else {
|
|
r = data[3]
|
|
| ( ((UInt)data[2]) << 8 )
|
|
| ( ((UInt)data[1]) << 16 )
|
|
| ( ((UInt)data[0]) << 24 );
|
|
}
|
|
return r;
|
|
}
|
|
|
|
UChar* ML_(writeUAS_UInt) ( UChar* ptr, UInt val ) {
|
|
if (host_is_little_endian()) {
|
|
ptr[0] = val & 0xff;
|
|
ptr[1] = ( val >> 8 ) & 0xff;
|
|
ptr[2] = ( val >> 16 ) & 0xff;
|
|
ptr[3] = ( val >> 24 ) & 0xff;
|
|
} else {
|
|
ptr[0] = ( val >> 24 ) & 0xff;
|
|
ptr[1] = ( val >> 16 ) & 0xff;
|
|
ptr[2] = ( val >> 8 ) & 0xff;
|
|
ptr[3] = val & 0xff;
|
|
}
|
|
return ptr + sizeof(UInt);
|
|
}
|
|
|
|
ULong ML_(readUAS_ULong) ( const UChar* data ) {
|
|
ULong r = 0;
|
|
if (host_is_little_endian()) {
|
|
r = data[0]
|
|
| ( ((ULong)data[1]) << 8 )
|
|
| ( ((ULong)data[2]) << 16 )
|
|
| ( ((ULong)data[3]) << 24 )
|
|
| ( ((ULong)data[4]) << 32 )
|
|
| ( ((ULong)data[5]) << 40 )
|
|
| ( ((ULong)data[6]) << 48 )
|
|
| ( ((ULong)data[7]) << 56 );
|
|
} else {
|
|
r = data[7]
|
|
| ( ((ULong)data[6]) << 8 )
|
|
| ( ((ULong)data[5]) << 16 )
|
|
| ( ((ULong)data[4]) << 24 )
|
|
| ( ((ULong)data[3]) << 32 )
|
|
| ( ((ULong)data[2]) << 40 )
|
|
| ( ((ULong)data[1]) << 48 )
|
|
| ( ((ULong)data[0]) << 56 );
|
|
}
|
|
return r;
|
|
}
|
|
|
|
UChar* ML_(writeUAS_ULong) ( UChar* ptr, ULong val ) {
|
|
if (host_is_little_endian()) {
|
|
ptr[0] = val & 0xff;
|
|
ptr[1] = ( val >> 8 ) & 0xff;
|
|
ptr[2] = ( val >> 16 ) & 0xff;
|
|
ptr[3] = ( val >> 24 ) & 0xff;
|
|
ptr[4] = ( val >> 32 ) & 0xff;
|
|
ptr[5] = ( val >> 40 ) & 0xff;
|
|
ptr[6] = ( val >> 48 ) & 0xff;
|
|
ptr[7] = ( val >> 56 ) & 0xff;
|
|
} else {
|
|
ptr[0] = ( val >> 56 ) & 0xff;
|
|
ptr[1] = ( val >> 48 ) & 0xff;
|
|
ptr[2] = ( val >> 40 ) & 0xff;
|
|
ptr[3] = ( val >> 32 ) & 0xff;
|
|
ptr[4] = ( val >> 24 ) & 0xff;
|
|
ptr[5] = ( val >> 16 ) & 0xff;
|
|
ptr[6] = ( val >> 8 ) & 0xff;
|
|
ptr[7] = val & 0xff;
|
|
}
|
|
return ptr + sizeof(ULong);
|
|
}
|
|
|
|
|
|
Addr ML_(readUAS_Addr) ( const UChar* data ) {
|
|
if (sizeof(Addr) == sizeof(UInt)) {
|
|
return ML_(read_UInt)(data);
|
|
} else if (sizeof(Addr) == sizeof(ULong)) {
|
|
return ML_(read_ULong)(data);
|
|
} else {
|
|
vg_assert(0);
|
|
}
|
|
}
|
|
|
|
UChar* ML_(writeUAS_Addr) ( UChar* ptr, Addr val ) {
|
|
if (sizeof(Addr) == sizeof(UInt)) {
|
|
return ML_(write_UInt)(ptr, val);
|
|
} else if (sizeof(Addr) == sizeof(ULong)) {
|
|
return ML_(write_ULong)(ptr, val);
|
|
} else {
|
|
vg_assert(0);
|
|
}
|
|
}
|
|
|
|
/*--------------------------------------------------------------------*/
|
|
/*--- end misc.c ---*/
|
|
/*--------------------------------------------------------------------*/
|