2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2018-10-10 12:53:07 +03:00
|
|
|
#pragma once
|
|
|
|
|
2020-02-25 17:58:24 +03:00
|
|
|
#ifndef __serenity__
|
|
|
|
# include <new>
|
|
|
|
#endif
|
|
|
|
|
2019-04-20 13:58:02 +03:00
|
|
|
#ifdef KERNEL
|
2019-05-28 12:53:16 +03:00
|
|
|
# define AK_MAKE_ETERNAL \
|
|
|
|
public: \
|
|
|
|
void* operator new(size_t size) { return kmalloc_eternal(size); } \
|
|
|
|
\
|
|
|
|
private:
|
2018-11-01 01:19:15 +03:00
|
|
|
#else
|
2019-05-28 12:53:16 +03:00
|
|
|
# define AK_MAKE_ETERNAL
|
2018-11-01 01:19:15 +03:00
|
|
|
#endif
|
|
|
|
|
2020-02-09 17:50:13 +03:00
|
|
|
#if defined(KERNEL)
|
2019-09-16 10:01:44 +03:00
|
|
|
# include <Kernel/Heap/kmalloc.h>
|
2018-10-28 11:36:21 +03:00
|
|
|
#else
|
2019-05-28 12:53:16 +03:00
|
|
|
# include <stdlib.h>
|
2018-10-28 11:36:21 +03:00
|
|
|
|
2019-05-28 12:53:16 +03:00
|
|
|
# define kcalloc calloc
|
|
|
|
# define kmalloc malloc
|
|
|
|
# define kfree free
|
|
|
|
# define krealloc realloc
|
2018-10-28 11:36:21 +03:00
|
|
|
|
2019-05-28 12:53:16 +03:00
|
|
|
# ifdef __serenity__
|
2020-01-25 18:59:21 +03:00
|
|
|
|
2020-05-20 16:52:12 +03:00
|
|
|
inline void* operator new(size_t size)
|
|
|
|
{
|
|
|
|
return kmalloc(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete(void* ptr)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete(void* ptr, size_t)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void* operator new[](size_t size)
|
|
|
|
{
|
|
|
|
return kmalloc(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete[](void* ptr)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator delete[](void* ptr, size_t)
|
|
|
|
{
|
|
|
|
return kfree(ptr);
|
|
|
|
}
|
|
|
|
|
2019-04-05 04:58:40 +03:00
|
|
|
inline void* operator new(size_t, void* ptr)
|
|
|
|
{
|
|
|
|
return ptr;
|
|
|
|
}
|
2020-02-18 11:42:49 +03:00
|
|
|
|
|
|
|
inline void* operator new[](size_t, void* ptr)
|
|
|
|
{
|
|
|
|
return ptr;
|
|
|
|
}
|
2019-05-28 12:53:16 +03:00
|
|
|
# endif
|
2019-04-05 04:58:40 +03:00
|
|
|
|
2019-03-27 14:48:21 +03:00
|
|
|
#endif
|