dxd - dynax driver framework 2.6.0d208
cross platform open source driver development framework
Loading...
Searching...
No Matches
dxd::multichannel::stream< channel_t >::clock::monitor Class Reference

clock::monitor buffer to be shared with user client mappings to measure jitter and latencies at various levels (IRQ, DPC, ASIO) More...

#include <dxd_stream.h>

Inheritance diagram for dxd::multichannel::stream< channel_t >::clock::monitor:
Collaboration diagram for dxd::multichannel::stream< channel_t >::clock::monitor:

Public Member Functions

void free ()
void free ()
 kernel map free
os_result initialize (::IOMemoryDescriptor *iokit_memory_descriptor)
 IOKit memory initializer.
os_result initialize (::IOMemoryDescriptor *iokit_memory_descriptor, size_t offset, size_t size)
 IOKit memory initializer.
os_result initialize (const void *data, size_t size)
 IOKit memory initializer from kernel virtual addresses.
os_result initialize (const::MDL *mdl)
os_result initialize (const::MDL *mdl, size_t offset, size_t size)
os_result initialize (size_t size, unsigned int limit=64, unsigned int alignment=0, bool contigous=false)
 IOKit buffer initializer.
os_result initialize (void *data, size_t size)
 IOKit memory initializer from kernel virtual addresses.
os_result initialize (::IOMemoryDescriptor *iokit_memory_descriptor, size_t offset=0)
 IOKit kernel map initializer.
dxd::os_result initialize ()
 operator const dx::stream::clock::monitor * () const
 operator const::IOMemoryDescriptor * () const
 IOKit IOMemoryDescriptor* implicit cast.
 operator const::IOMemoryDescriptor * () const
 IOKit IOMemoryDescriptor* implicit cast.
 operator const::IOMemoryMap * () const
 operator dx::stream::clock::monitor * () const
 operator uint64_t () const
 IOKit physical address (only relevant for contigous memory).
 operator uint64_t () const
 IOKit physical address (only relevant for contigous memory).
const dx::stream::clock::monitoroperator-> () const
 operator to use mapping like pointer
 operator::IOMemoryDescriptor * ()
 operator::IOMemoryDescriptor * ()
 operator::IOMemoryMap * ()
 operator::MDL * () const
 operator::MDL * () const
size_t size () const
 IOKit memory size.
size_t size () const
 IOKit memory size.
size_t size () const
 kernel mapping size

Public Attributes

dx::stream::clock::monitorcache =nullptr
os_result status
 IOKit memory status.
os_result status
 IOKit memory status.
os_result status
 status of mapping object

Protected Attributes

dx::stream::clock::monitor_vm
 kernel virtual address mapping
::IOMemoryMap * iokit_memory_map

Detailed Description

template<typename channel_t = int>
class dxd::multichannel::stream< channel_t >::clock::monitor

clock::monitor buffer to be shared with user client mappings to measure jitter and latencies at various levels (IRQ, DPC, ASIO)

Member Function Documentation

◆ free() [1/2]

void dxd::buffer< scope_t, 64, 0, false >::free ( )
inlineinherited

◆ free() [2/2]

void dxd::map< scope_t, dx::stream::clock::monitor >::free ( )
inlineinherited

kernel map free

Checks if kernel mapping already exists and

does not call unmap(): IOMemoryMap instances will unmap themselves upon free, ie. when the last client with a reference calls release. unmap() forces the IOMemoryMap to destroy the mapping it represents, regardless of the number of clients. releases the map object.

◆ initialize() [1/9]

os_result dxd::memory< scope_t >::initialize ( ::IOMemoryDescriptor * iokit_memory_descriptor)
inlineinherited

IOKit memory initializer.

◆ initialize() [2/9]

os_result dxd::memory< scope_t >::initialize ( ::IOMemoryDescriptor * iokit_memory_descriptor,
size_t offset,
size_t size )
inlineinherited

IOKit memory initializer.

◆ initialize() [3/9]

os_result dxd::memory< dx::kernel >::initialize ( const void * data,
size_t size )
inherited

IOKit memory initializer from kernel virtual addresses.

Allows re-initialization.

Creates OS memory descriptor from kernel space data,size and

wires it down and synchronizes it.

Parameters
datavirtual read only kernel base address of range to create memory descriptor from
sizesize of range to create memory descriptor from

◆ initialize() [4/9]

os_result dxd::memory< scope_t >::initialize ( const::MDL * mdl)
inlineinherited

in contrast to an IOKit MemoryDescriptor MDLs do not support reference counting. take care when creating a dxd::memory from a dxd::buffer: although the dxd::memory holds an MDL to the buffer the buffer itself is not retained after the dxd::buffer is released!

◆ initialize() [5/9]

os_result dxd::memory< scope_t >::initialize ( const::MDL * mdl,
size_t offset,
size_t size )
inlineinherited

◆ initialize() [6/9]

os_result dxd::buffer< scope_t, 64, 0, false >::initialize ( size_t size,
unsigned int limit = limit_t,
unsigned int alignment = alignment_t,
bool contigous = contigous_t )
inlineinherited

IOKit buffer initializer.

Allows re-initialization.

Creates a buffer and associated memory descriptor.

Wires down the backing store memory.

Parameters
sizesize to be alloced by buffer object
limitlimit physical memory address space
alignmentenforce physical memory alignment
contigousenforce contiguos physical memory

◆ initialize() [7/9]

os_result dxd::memory< dx::kernel >::initialize ( void * data,
size_t size )
inherited

IOKit memory initializer from kernel virtual addresses.

Allows re-initialization.

Creates OS memory descriptor from kernel space data,size and

wires it down and synchronizes it.

Parameters
datavirtual kernel base address of range to create memory descriptor from
sizesize of range to create memory descriptor from

◆ initialize() [8/9]

os_result dxd::map< scope_t, dx::stream::clock::monitor >::initialize ( ::IOMemoryDescriptor * iokit_memory_descriptor,
size_t offset = 0 )
inlineinherited

IOKit kernel map initializer.

map<kernel> maps an IOMemoryDescriptor (typically cast of a dxd::memory or buffer class) into the kernel address space.

https://developer.apple.com/library/content/qa/qa1197/_index.html

Allows re-initialization.

Checks buffer object,

maps the buffer into the kernel (will fail if offset is given)

and obtains a kernel virtual address (apply offset here instead).

Parameters
iokit_memory_descriptorIOMemoryDescriptor to be mapped into the kernel address space
offsetoffset into memory descriptor to create mapping

◆ initialize() [9/9]

template<typename channel_t = int>
dxd::os_result dxd::multichannel::stream< channel_t >::clock::monitor::initialize ( )
inline
Here is the call graph for this function:

◆ operator const dx::stream::clock::monitor *()

dxd::map< scope_t, dx::stream::clock::monitor >::operator const dx::stream::clock::monitor * ( ) const
inlineinherited

◆ operator const::IOMemoryDescriptor *() [1/2]

dxd::memory< scope_t >::operator const::IOMemoryDescriptor * ( ) const
inlineinherited

IOKit IOMemoryDescriptor* implicit cast.

◆ operator const::IOMemoryDescriptor *() [2/2]

dxd::memory< scope_t >::operator const::IOMemoryDescriptor * ( ) const
inlineinherited

IOKit IOMemoryDescriptor* implicit cast.

◆ operator const::IOMemoryMap *()

dxd::map< scope_t, dx::stream::clock::monitor >::operator const::IOMemoryMap * ( ) const
inlineinherited

◆ operator dx::stream::clock::monitor *()

dxd::map< scope_t, dx::stream::clock::monitor >::operator dx::stream::clock::monitor * ( ) const
inlineinherited

◆ operator uint64_t() [1/2]

dxd::memory< scope_t >::operator uint64_t ( ) const
inlineinherited

IOKit physical address (only relevant for contigous memory).

◆ operator uint64_t() [2/2]

dxd::memory< scope_t >::operator uint64_t ( ) const
inlineinherited

IOKit physical address (only relevant for contigous memory).

◆ operator->()

const dx::stream::clock::monitor * dxd::map< scope_t, dx::stream::clock::monitor >::operator-> ( ) const
inlineinherited

operator to use mapping like pointer

◆ operator::IOMemoryDescriptor *() [1/2]

dxd::memory< scope_t >::operator::IOMemoryDescriptor * ( )
inlineinherited

◆ operator::IOMemoryDescriptor *() [2/2]

dxd::memory< scope_t >::operator::IOMemoryDescriptor * ( )
inlineinherited

◆ operator::IOMemoryMap *()

dxd::map< scope_t, dx::stream::clock::monitor >::operator::IOMemoryMap * ( )
inlineinherited

◆ operator::MDL *() [1/2]

dxd::memory< scope_t >::operator::MDL * ( ) const
inlineinherited

◆ operator::MDL *() [2/2]

dxd::memory< scope_t >::operator::MDL * ( ) const
inlineinherited

◆ size() [1/3]

size_t dxd::memory< scope_t >::size ( ) const
inlineinherited

IOKit memory size.

◆ size() [2/3]

size_t dxd::memory< scope_t >::size ( ) const
inlineinherited

IOKit memory size.

◆ size() [3/3]

size_t dxd::map< scope_t, dx::stream::clock::monitor >::size ( ) const
inlineinherited

kernel mapping size

Member Data Documentation

◆ _vm

dx::stream::clock::monitor* dxd::map< scope_t, dx::stream::clock::monitor >::_vm
protectedinherited

kernel virtual address mapping

◆ cache

template<typename channel_t = int>
dx::stream::clock::monitor* dxd::multichannel::stream< channel_t >::clock::monitor::cache =nullptr

◆ iokit_memory_map

::IOMemoryMap* dxd::map< scope_t, dx::stream::clock::monitor >::iokit_memory_map
protectedinherited

◆ status [1/3]

os_result dxd::memory< scope_t >::status
inherited

IOKit memory status.

status of memory object

◆ status [2/3]

os_result dxd::memory< scope_t >::status
inherited

IOKit memory status.

status of memory object

◆ status [3/3]

os_result dxd::map< scope_t, dx::stream::clock::monitor >::status
inherited

status of mapping object


The documentation for this class was generated from the following file:

(c) copyright 2009 dynamic acoustics e.U. generated on

a closed source license may be obtained by requesting a written permission from dynamic acoustics e.U.
however - governmental use generally and military use especially is strictly prohibited though.