X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Ffloat.c;h=3e49a4b1fbc7c2c995cb7adc490de0fe49d61d6b;hp=c78cf584feb4f07f9100ed5f8902a046f1027e01;hb=dd6f7e0fae723d0a15c60436c0d6c4d7a123cdf6;hpb=c054553dac076f91196b372fa19efaf2adc4e4f9 diff --git a/types/float.c b/types/float.c index c78cf584..3e49a4b1 100644 --- a/types/float.c +++ b/types/float.c @@ -3,7 +3,9 @@ * * BabelTrace - Float Type Converter * - * Copyright 2010, 2011 - Mathieu Desnoyers + * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation + * + * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -18,115 +20,124 @@ #include #include +#include +#include static -struct type_float *_float_type_new(struct type_class *type_class, - struct declaration_scope *parent_scope); +struct definition *_float_definition_new(struct declaration *declaration, + struct definition_scope *parent_scope, + GQuark field_name, int index, + const char *root_name); static -void _float_type_free(struct type *type); - -void float_copy(struct stream_pos *destp, - const struct format *fdest, - struct stream_pos *srcp, - const struct format *fsrc, - struct type *type) -{ - struct type_float *_float = container_of(type, struct type_float, p); - struct type_class_float *float_class = _float->_class; - - if (fsrc->float_copy == fdest->float_copy) { - fsrc->float_copy(destp, srcp, float_class); - } else { - double v; - - v = fsrc->double_read(srcp, float_class); - fdest->double_write(destp, float_class, v); - } -} +void _float_definition_free(struct definition *definition); static -void _float_type_class_free(struct type_class *type_class) +void _float_declaration_free(struct declaration *declaration) { - struct type_class_float *float_class = - container_of(type_class, struct type_class_float, p); + struct declaration_float *float_declaration = + container_of(declaration, struct declaration_float, p); - type_class_unref(&float_class->exp->p); - type_class_unref(&float_class->mantissa->p); - type_class_unref(&float_class->sign->p); - g_free(float_class); + declaration_unref(&float_declaration->exp->p); + declaration_unref(&float_declaration->mantissa->p); + declaration_unref(&float_declaration->sign->p); + g_free(float_declaration); } -struct type_class_float * -float_type_class_new(const char *name, size_t mantissa_len, - size_t exp_len, int byte_order, size_t alignment) +struct declaration_float * + float_declaration_new(size_t mantissa_len, + size_t exp_len, int byte_order, size_t alignment) { - struct type_class_float *float_class; - struct type_class *type_class; - int ret; - - float_class = g_new(struct type_class_float, 1); - type_class = &float_class->p; - type_class->name = g_quark_from_string(name); - type_class->alignment = alignment; - type_class->copy = float_copy; - type_class->class_free = _float_type_class_free; - type_class->type_new = _float_type_new; - type_class->type_free = _float_type_free; - type_class->ref = 1; - float_class->byte_order = byte_order; - - float_class->sign = integer_type_new(NULL, 1, - byte_order, false, 1); - if (!float_class->mantissa) - goto error_sign; - float_class->mantissa = integer_type_new(NULL, mantissa_len - 1, - byte_order, false, 1); - if (!float_class->mantissa) - goto error_mantissa; - float_class->exp = integer_type_new(NULL, exp_len, - byte_order, true, 1); - if (!float_class->exp) - goto error_exp; - - if (float_class->p.name) { - ret = register_type(&float_class->p); - if (ret) - goto error_register; - } - return float_class; - -error_register: - type_class_unref(&float_class->exp->p); -error_exp: - type_class_unref(&float_class->mantissa->p); -error_mantissa: - type_class_unref(&float_class->sign->p); -error_sign: - g_free(float_class); - return NULL; + struct declaration_float *float_declaration; + struct declaration *declaration; + + float_declaration = g_new(struct declaration_float, 1); + declaration = &float_declaration->p; + declaration->id = CTF_TYPE_FLOAT; + declaration->alignment = alignment; + declaration->declaration_free = _float_declaration_free; + declaration->definition_new = _float_definition_new; + declaration->definition_free = _float_definition_free; + declaration->ref = 1; + float_declaration->byte_order = byte_order; + + float_declaration->sign = integer_declaration_new(1, + byte_order, false, 1, 2, + CTF_STRING_NONE, NULL); + float_declaration->mantissa = integer_declaration_new(mantissa_len - 1, + byte_order, false, 1, 10, + CTF_STRING_NONE, NULL); + float_declaration->exp = integer_declaration_new(exp_len, + byte_order, true, 1, 10, + CTF_STRING_NONE, NULL); + return float_declaration; } static -struct type_float *_float_type_new(struct type_class *type_class, - struct declaration_scope *parent_scope) +struct definition * + _float_definition_new(struct declaration *declaration, + struct definition_scope *parent_scope, + GQuark field_name, int index, + const char *root_name) { - struct type_class_float *float_class = - container_of(type_class, struct type_class_float, p); - struct type_float *_float; + struct declaration_float *float_declaration = + container_of(declaration, struct declaration_float, p); + struct definition_float *_float; + struct definition *tmp; + int ret; - _float = g_new(struct type_float, 1); - type_class_ref(&_float_class->p); - _float->p._class = _float_class; + _float = g_new(struct definition_float, 1); + declaration_ref(&float_declaration->p); + _float->p.declaration = declaration; + _float->declaration = float_declaration; + _float->p.scope = new_definition_scope(parent_scope, field_name, root_name); + _float->p.path = new_definition_path(parent_scope, field_name, root_name); + if (float_declaration->byte_order == LITTLE_ENDIAN) { + tmp = float_declaration->mantissa->p.definition_new(&float_declaration->mantissa->p, + _float->p.scope, g_quark_from_static_string("mantissa"), 0, NULL); + _float->mantissa = container_of(tmp, struct definition_integer, p); + tmp = float_declaration->exp->p.definition_new(&float_declaration->exp->p, + _float->p.scope, g_quark_from_static_string("exp"), 1, NULL); + _float->exp = container_of(tmp, struct definition_integer, p); + tmp = float_declaration->sign->p.definition_new(&float_declaration->sign->p, + _float->p.scope, g_quark_from_static_string("sign"), 2, NULL); + _float->sign = container_of(tmp, struct definition_integer, p); + } else { + tmp = float_declaration->sign->p.definition_new(&float_declaration->sign->p, + _float->p.scope, g_quark_from_static_string("sign"), 0, NULL); + _float->sign = container_of(tmp, struct definition_integer, p); + tmp = float_declaration->exp->p.definition_new(&float_declaration->exp->p, + _float->p.scope, g_quark_from_static_string("exp"), 1, NULL); + _float->exp = container_of(tmp, struct definition_integer, p); + tmp = float_declaration->mantissa->p.definition_new(&float_declaration->mantissa->p, + _float->p.scope, g_quark_from_static_string("mantissa"), 2, NULL); + _float->mantissa = container_of(tmp, struct definition_integer, p); + } _float->p.ref = 1; + /* + * Use INT_MAX order to ensure that all fields of the parent + * scope are seen as being prior to this scope. + */ + _float->p.index = root_name ? INT_MAX : index; + _float->p.name = field_name; _float->value = 0.0; + if (parent_scope) { + ret = register_field_definition(field_name, &_float->p, + parent_scope); + assert(!ret); + } return &_float->p; } static -void _float_type_free(struct type *type) +void _float_definition_free(struct definition *definition) { - struct type_float *_float = container_of(type, struct type_float, p); - - type_class_unref(_float->p._class); + struct definition_float *_float = + container_of(definition, struct definition_float, p); + + definition_unref(&_float->sign->p); + definition_unref(&_float->exp->p); + definition_unref(&_float->mantissa->p); + free_definition_scope(_float->p.scope); + declaration_unref(_float->p.declaration); g_free(_float); }