X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Fbitfield.c;h=697748773f413b0171388b85f0315821bf402ab3;hp=e9a9f69662e31ab53af56d051e0426cb9dbe0fd9;hb=11d43b909baeee566511acfec577d4605386fa09;hpb=3c1bd98ad7e7236d2a8f7c6d1c00f94ba73beb23 diff --git a/types/bitfield.c b/types/bitfield.c index e9a9f696..69774877 100644 --- a/types/bitfield.c +++ b/types/bitfield.c @@ -19,81 +19,66 @@ */ #include +#include #include -/* - * Shortcut to integer copy if we copy bit-aligned data with 0 start_offset. - * This skips the bitfield overhead when dealing with enumerations (which use - * the bitfield copy functions). - */ -extern -size_t integer_copy(unsigned char *dest, const struct format *fdest, - const unsigned char *src, const struct format *fsrc, - const struct type_class *type_class); - -size_t bitfield_copy(unsigned char *dest, const struct format *fdest, - const unsigned char *src, const struct format *fsrc, +size_t bitfield_copy(struct stream_pos *dest, const struct format *fdest, + struct stream_pos *src, const struct format *fsrc, const struct type_class *type_class) { struct type_class_bitfield *bitfield_class = container_of(type_class, struct type_class_bitfield, p); struct type_class_integer *int_class = &bitfield_class->p; - if (!(int_class->p.alignment % CHAR_BIT) - && !(int_class->len % CHAR_BIT) - && !(bitfield_class->start_offset % CHAR_BIT)) { - size_t offset = bitfield_class->start_offset / CHAR_BIT; - dest += offset; - src += offset; - return integer_copy(dest, fdest, src, fsrc, type_class); - } - if (!int_class->signedness) { uint64_t v; - v = fsrc->bitfield_unsigned_read(src, - bitfield_class->start_offset, - int_class->len, - int_class->byte_order); - return fdest->bitfield_unsigned_write(dest, - bitfield_class->start_offset, - int_class->len, int_class->byte_order, - v); + v = fsrc->bitfield_unsigned_read(src, bitfield_class); + return fdest->bitfield_unsigned_write(dest, bitfield_class, v); } else { int64_t v; - v = fsrc->bitfield_signed_read(src, - bitfield_class->start_offset, - int_class->len, - int_class->byte_order); - return fdest->bitfield_signed_write(dest, - bitfield_class->start_offset, - int_class->len, int_class->byte_order, - v); + v = fsrc->bitfield_signed_read(src, bitfield_class); + return fdest->bitfield_signed_write(dest, bitfield_class, v); } } -int bitfield_type_new(const char *name, size_t start_offset, - size_t len, int byte_order, int signedness) +void bitfield_type_free(struct type_class_bitfield *bitfield_class) +{ + g_free(bitfield_class); +} + +static void _bitfield_type_free(struct type_class *type_class) { - struct type_class_bitfield bitfield_class; + struct type_class_bitfield *bitfield_class = + container_of(type_class, struct type_class_bitfield, p); + bitfield_type_free(bitfield_class); +} + +struct type_class_bitfield *bitfield_type_new(const char *name, + size_t len, int byte_order, + int signedness, + size_t alignment) +{ + struct type_class_bitfield *bitfield_class; struct type_class_integer *int_class; int ret; - /* - * Freed when type is unregistered. - */ bitfield_class = g_new(struct type_class_bitfield, 1); int_class = &bitfield_class->p; int_class->p.name = g_quark_from_string(name); + int_class->p.alignment = alignment; + int_class->p.copy = bitfield_copy; + int_class->p.free = _bitfield_type_free; int_class->len = len; int_class->byte_order = byte_order; int_class->signedness = signedness; - bitfield_class->start_offset = start_offset; - ret = ctf_register_type(&int_class->p); - if (ret) - g_free(bitfield_class); - return ret; + if (int_class->p.name) { + ret = ctf_register_type(&int_class->p); + if (ret) { + g_free(bitfield_class); + return NULL; + } + } + return bitfield_class; } - -/* TODO: bitfield_type_free */