#include <sys/asm_linkage.h>
#define NOP4 \
nop; \
nop; \
nop; \
nop;
#define NOP16 \
NOP4 \
NOP4 \
NOP4 \
NOP4
#define NOP64 \
NOP16 \
NOP16 \
NOP16 \
NOP16
#define NOP256 \
NOP64 \
NOP64 \
NOP64 \
NOP64
#if defined(lint)
void *
getfp(void)
{
return (NULL);
}
#ifndef UMEM_STANDALONE
void
_breakpoint(void)
{
return;
}
#endif
#else
#if defined(__amd64)
ENTRY(getfp)
movq %rbp, %rax
ret
SET_SIZE(getfp)
#else
ENTRY(getfp)
movl %ebp, %eax
ret
SET_SIZE(getfp)
#endif
#ifndef UMEM_STANDALONE
ENTRY(_breakpoint)
int $3
ret
SET_SIZE(_breakpoint)
#endif
.section ".ptctext", "ax"
.globl _malloc
.type _malloc, @function
.align ASM_ENTRY_ALIGN
_malloc:
jmp umem_malloc;
NOP256
NOP256
#if defined(__amd64)
NOP64
#endif
SET_SIZE(_malloc)
.section ".ptctext","ax"
.globl _free
.type _free, @function
.align ASM_ENTRY_ALIGN
_free:
jmp umem_malloc_free;
NOP256
NOP256
#if defined(__amd64)
NOP64
#endif
SET_SIZE(_free)
ANSI_PRAGMA_WEAK2(malloc,_malloc,function)
ANSI_PRAGMA_WEAK2(free,_free,function)
#endif