2012-11-01 15:19:01 +00:00
// Copyright (C) 2003 Dolphin Project.
// 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
2012-11-04 22:01:49 +00:00
// the Free Software Foundation, version 2.0 or later versions.
2012-11-01 15:19:01 +00:00
// 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 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/
2014-12-15 22:09:36 +00:00
# pragma once
2012-11-01 15:19:01 +00:00
# ifndef _WIN32
2023-06-26 14:17:45 +00:00
# ifndef __SWITCH__
2012-11-01 15:19:01 +00:00
# include <sys/mman.h>
2023-06-26 14:17:45 +00:00
# else
# include <switch.h>
# endif // !__SWITCH__
2012-11-01 15:19:01 +00:00
# endif
2013-12-31 05:37:19 +00:00
# include <stdint.h>
2012-11-01 15:19:01 +00:00
2016-08-28 10:09:01 +00:00
// Returns true if we need to avoid setting both writable and executable at the same time (W^X)
bool PlatformIsWXExclusive ( ) ;
# define MEM_PROT_READ 1
# define MEM_PROT_WRITE 2
# define MEM_PROT_EXEC 4
2016-08-28 10:28:17 +00:00
// Note that some platforms go through special contortions to allocate executable memory. So for memory
// that's intended for execution, allocate it first using AllocateExecutableMemory, then modify protection as desired.
2023-04-24 09:42:27 +00:00
// AllocateMemoryPages is simpler and more generic.
// Note that on W^X platforms, this will return writable memory that can later be changed to executable!
2016-08-28 10:28:17 +00:00
void * AllocateExecutableMemory ( size_t size ) ;
2023-04-24 09:42:27 +00:00
void FreeExecutableMemory ( void * ptr , size_t size ) ;
2016-08-28 10:28:17 +00:00
void * AllocateMemoryPages ( size_t size , uint32_t memProtFlags ) ;
// Note that on platforms returning PlatformIsWXExclusive, you cannot set a page to be both readable and writable at the same time.
2017-01-25 17:35:09 +00:00
bool ProtectMemoryPages ( const void * ptr , size_t size , uint32_t memProtFlags ) ;
2016-08-28 10:28:17 +00:00
void FreeMemoryPages ( void * ptr , size_t size ) ;
// Regular aligned memory. Don't try to apply memory protection willy-nilly to memory allocated this way as in-page alignment is unknown (though could be checked).
2024-10-22 19:49:50 +00:00
// No longer asserts, will return nullptr on failure.
2016-08-28 10:28:17 +00:00
void * AllocateAlignedMemory ( size_t size , size_t alignment ) ;
void FreeAlignedMemory ( void * ptr ) ;
2016-08-28 10:09:01 +00:00
2016-08-28 16:07:54 +00:00
int GetMemoryProtectPageSize ( ) ;
2012-11-01 15:19:01 +00:00
2023-04-24 10:03:30 +00:00
// A buffer that uses aligned memory. Can be useful for image processing.
template < typename T , size_t A >
class AlignedVector {
2013-05-01 00:18:35 +00:00
public :
2023-04-24 10:03:30 +00:00
AlignedVector ( ) : buf_ ( 0 ) , size_ ( 0 ) { }
2013-05-01 00:18:35 +00:00
2023-04-24 10:03:30 +00:00
AlignedVector ( size_t size ) : buf_ ( 0 ) {
2013-05-01 00:18:35 +00:00
resize ( size ) ;
}
2023-04-24 10:03:30 +00:00
AlignedVector ( const AlignedVector & o ) : buf_ ( o . buf_ ) , size_ ( o . size_ ) { }
2022-04-17 22:25:59 +00:00
// Move constructor
2023-04-24 10:03:30 +00:00
AlignedVector ( AlignedVector & & o ) noexcept : buf_ ( o . buf_ ) , size_ ( o . size_ ) { o . buf_ = nullptr ; o . size_ = 0 ; }
2022-04-17 22:25:59 +00:00
2023-04-24 10:03:30 +00:00
~ AlignedVector ( ) {
2013-12-30 09:49:05 +00:00
if ( buf_ ! = 0 ) {
2023-04-24 10:03:30 +00:00
FreeAlignedMemory ( buf_ ) ;
2013-05-01 00:18:35 +00:00
}
}
inline T & operator [ ] ( size_t index ) {
return buf_ [ index ] ;
}
// Doesn't preserve contents.
void resize ( size_t size ) {
if ( size_ < size ) {
2013-12-30 09:49:05 +00:00
if ( buf_ ! = 0 ) {
2023-04-24 10:03:30 +00:00
FreeAlignedMemory ( buf_ ) ;
2013-05-01 00:18:35 +00:00
}
2023-04-24 10:03:30 +00:00
buf_ = ( T * ) AllocateAlignedMemory ( size * sizeof ( T ) , A ) ;
2013-05-01 00:18:35 +00:00
size_ = size ;
}
}
T * data ( ) {
return buf_ ;
}
2014-12-07 22:00:14 +00:00
size_t size ( ) const {
2013-05-01 00:18:35 +00:00
return size_ ;
}
private :
T * buf_ ;
size_t size_ ;
} ;