Skip to content
Snippets Groups Projects
Commit b175d94d authored by Petr Rockai's avatar Petr Rockai
Browse files

VM: Add pointer (de)composition utilities to divm.h.

parent 6ebe72f2
No related branches found
No related tags found
No related merge requests found
......@@ -502,6 +502,24 @@ _VMUTIL_INLINE void __vm_cancel( void ) NOTHROW
__vm_ctl_set( _VM_CR_Frame, 0 );
}
typedef struct { uint32_t off, obj; } __vm_pointer_t;
void *memcpy( void *dest, const void * src, unsigned long n ) NOTHROW;
_VMUTIL_INLINE __vm_pointer_t __vm_pointer_split( void *ptr )
{
__vm_pointer_t rv;
memcpy( &rv, &ptr, sizeof( rv ) );
return rv;
}
_VMUTIL_INLINE void *__vm_pointer_make( uint32_t obj, uint32_t off )
{
__vm_pointer_t ptr = { off, obj };
void *rv;
memcpy( &rv, &ptr, sizeof( rv ) );
return rv;
}
EXTERN_END
#endif // __divine__
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment