sparc64: fix umul and smul insns
[qemu/aliguori-queue.git] / qint.c
blobfb3823a7f416319e57cfe2d69f69fd94f2a19659
1 /*
2 * QInt Module
4 * Copyright (C) 2009 Red Hat Inc.
6 * Authors:
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
13 #include "qint.h"
14 #include "qobject.h"
15 #include "qemu-common.h"
17 static void qint_destroy_obj(QObject *obj);
19 static const QType qint_type = {
20 .code = QTYPE_QINT,
21 .destroy = qint_destroy_obj,
24 /**
25 * qint_from_int(): Create a new QInt from an int64_t
27 * Return strong reference.
29 QInt *qint_from_int(int64_t value)
31 QInt *qi;
33 qi = qemu_malloc(sizeof(*qi));
34 qi->value = value;
35 QOBJECT_INIT(qi, &qint_type);
37 return qi;
40 /**
41 * qint_get_int(): Get the stored integer
43 int64_t qint_get_int(const QInt *qi)
45 return qi->value;
48 /**
49 * qobject_to_qint(): Convert a QObject into a QInt
51 QInt *qobject_to_qint(const QObject *obj)
53 if (qobject_type(obj) != QTYPE_QINT)
54 return NULL;
56 return container_of(obj, QInt, base);
59 /**
60 * qint_destroy_obj(): Free all memory allocated by a
61 * QInt object
63 static void qint_destroy_obj(QObject *obj)
65 assert(obj != NULL);
66 qemu_free(qobject_to_qint(obj));