mirror of
https://git.checksum.fail/alec/slon.git
synced 2025-12-08 12:09:55 +02:00
Meta: Add files to repository
This commit is contained in:
35
System/FFI/New.HC
Normal file
35
System/FFI/New.HC
Normal file
@@ -0,0 +1,35 @@
|
||||
U0 _ZdlPv()
|
||||
{
|
||||
// operator delete(void*)
|
||||
PUSH_SYSV_REGS
|
||||
GET_SYSV_ARGS
|
||||
Free(p0);
|
||||
POP_SYSV_REGS
|
||||
}
|
||||
|
||||
U0 _ZdlPvm()
|
||||
{
|
||||
// operator delete(void*, unsigned long)
|
||||
PUSH_SYSV_REGS
|
||||
GET_SYSV_ARGS
|
||||
Free(p0);
|
||||
POP_SYSV_REGS
|
||||
}
|
||||
|
||||
U0 _Znwm()
|
||||
{
|
||||
// operator new(unsigned long)
|
||||
PUSH_SYSV_REGS
|
||||
GET_SYSV_ARGS
|
||||
MAlloc(p0, adam_task);
|
||||
POP_SYSV_REGS
|
||||
}
|
||||
|
||||
U0 _ZnwmRKSt9nothrow_t()
|
||||
{
|
||||
// operator new(unsigned long, std::nothrow_t const&)
|
||||
PUSH_SYSV_REGS
|
||||
GET_SYSV_ARGS
|
||||
MAlloc(p0, adam_task);
|
||||
POP_SYSV_REGS
|
||||
}
|
||||
Reference in New Issue
Block a user