All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [PATCH i-g-t 1/3] lib/vec: Add igt_vec
Date: Thu, 30 Jan 2020 17:54:10 +0200	[thread overview]
Message-ID: <20200130155410.GE13686@intel.com> (raw)
In-Reply-To: <158039830112.18112.1082852252008596408@skylake-alporthouse-com>

On Thu, Jan 30, 2020 at 03:31:41PM +0000, Chris Wilson wrote:
> Quoting Ville Syrjala (2020-01-30 15:12:27)
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > 
> > Add a small std::vector lookalike which grows as needed.
> > 
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> >  lib/Makefile.sources |  2 ++
> >  lib/igt_vec.c        | 86 ++++++++++++++++++++++++++++++++++++++++++++
> >  lib/igt_vec.h        | 40 +++++++++++++++++++++
> >  lib/meson.build      |  1 +
> >  4 files changed, 129 insertions(+)
> >  create mode 100644 lib/igt_vec.c
> >  create mode 100644 lib/igt_vec.h
> > 
> > diff --git a/lib/Makefile.sources b/lib/Makefile.sources
> > index 631d6714e5ce..3e573f267e15 100644
> > --- a/lib/Makefile.sources
> > +++ b/lib/Makefile.sources
> > @@ -62,6 +62,8 @@ lib_source_list =             \
> >         igt_sysrq.h             \
> >         igt_x86.h               \
> >         igt_x86.c               \
> > +       igt_vec.c               \
> > +       igt_vec.h               \
> >         igt_vgem.c              \
> >         igt_vgem.h              \
> >         instdone.c              \
> > diff --git a/lib/igt_vec.c b/lib/igt_vec.c
> > new file mode 100644
> > index 000000000000..dc4a6172fc8d
> > --- /dev/null
> > +++ b/lib/igt_vec.c
> > @@ -0,0 +1,86 @@
> > +/*
> > + * Copyright © 2020 Intel Corporation
> > + *
> > + * Permission is hereby granted, free of charge, to any person obtaining a
> > + * copy of this software and associated documentation files (the "Software"),
> > + * to deal in the Software without restriction, including without limitation
> > + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> > + * and/or sell copies of the Software, and to permit persons to whom the
> > + * Software is furnished to do so, subject to the following conditions:
> > + *
> > + * The above copyright notice and this permission notice (including the next
> > + * paragraph) shall be included in all copies or substantial portions of the
> > + * Software.
> > + *
> > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> > + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> > + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
> > + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> > + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> > + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
> > + * IN THE SOFTWARE.
> > + */
> > +
> > +#include <stdlib.h>
> > +#include <string.h>
> > +
> > +#include "igt_core.h"
> > +#include "igt_vec.h"
> > +
> > +void igt_vec_init(struct igt_vec *vec, int elem_size)
> > +{
> > +       memset(vec, 0, sizeof(*vec));
> > +       vec->elem_size = elem_size;
> > +}
> > +
> > +void igt_vec_fini(struct igt_vec *vec)
> > +{
> > +       free(vec->elems);
> > +       memset(vec, 0, sizeof(*vec));
> > +}
> > +
> > +void *igt_vec_elem(const struct igt_vec *vec, int idx)
> > +{
> > +       igt_assert(idx < vec->len);
> > +
> > +       return vec->elems + idx * vec->elem_size;
> > +}
> > +
> > +void igt_vec_push(struct igt_vec *vec, void *elem)
> > +{
> > +       if (vec->len >= vec->size) {
> > +               vec->size = vec->size ? vec->size * 2 : 8;
> > +               vec->elems = realloc(vec->elems, vec->size * vec->elem_size);
> > +               igt_assert(vec->elems);
> > +       }
> > +
> > +       vec->len++;
> > +       memcpy(igt_vec_elem(vec, vec->len - 1), elem, vec->elem_size);
> 
> I would have split this into 
> 
> void *igt_vec_grow(struct igt_vec *vec)
> {
>        if (vec->len++ >= vec->size) {
>                vec->size = vec->size ? vec->size * 2 : 8;
>                vec->elems = realloc(vec->elems, vec->size * vec->elem_size);
>                igt_assert(vec->elems);
>        }
> 
>        return igt_vec_elem(vec, vec->len - 1);
> }
> 
> igt_vec_push(vec, elem)
> {
> 	memcpy(igt_vec_grow(vec), elem, vec->size);
> }
> 
> since we are happy to throw assertions and not worry too much about
> error propagation.

I can paint it like that.

> 
> > +
> > +       vec->len++;
> > +}
> > +
> > +int igt_vec_length(const struct igt_vec *vec)
> > +{
> > +       return vec->len;
> > +}
> > +
> > +int igt_vec_index(const struct igt_vec *vec, void *elem)
> > +{
> > +       for (int i = 0; i < vec->len; i++) {
> > +               if (!memcmp(igt_vec_elem(vec, i), elem, vec->elem_size))
> > +                       return i;
> > +       }
> > +
> > +       return -1;
> > +}
> > +
> > +void igt_vec_remove(struct igt_vec *vec, int idx)
> > +{
> > +       igt_assert(idx < vec->len);
> > +
> > +       if (idx < vec->len - 1)
> > +               memmove(igt_vec_elem(vec, idx),
> > +                       igt_vec_elem(vec, idx + 1),
> > +                       (vec->len - 1 - idx) * vec->elem_size);
> 
> memmove of 0 not to your liking?

Don't think I've ever figured out if it works as expected.

> 
> > +
> > +       vec->len--;
> > +}
> > diff --git a/lib/igt_vec.h b/lib/igt_vec.h
> > new file mode 100644
> > index 000000000000..de2549a45841
> > --- /dev/null
> > +++ b/lib/igt_vec.h
> > @@ -0,0 +1,40 @@
> > +/*
> > + * Copyright © 2020 Intel Corporation
> > + *
> > + * Permission is hereby granted, free of charge, to any person obtaining a
> > + * copy of this software and associated documentation files (the "Software"),
> > + * to deal in the Software without restriction, including without limitation
> > + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> > + * and/or sell copies of the Software, and to permit persons to whom the
> > + * Software is furnished to do so, subject to the following conditions:
> > + *
> > + * The above copyright notice and this permission notice (including the next
> > + * paragraph) shall be included in all copies or substantial portions of the
> > + * Software.
> > + *
> > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> > + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> > + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
> > + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> > + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> > + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
> > + * IN THE SOFTWARE.
> > + */
> > +
> > +#ifndef __IGT_VEC_H__
> > +#define __IGT_VEC_H__
> > +
> > +struct igt_vec {
> > +       void *elems;
> > +       int elem_size, size, len;
> 
> I would have used char[0] and casting just to have a variable length
> struct :)

Then we'd have to reallocate the whole struct to grow it.
Wouldn't work since the caller owns the struct.

> 
> I might have also used longs throughout instead of ints, or in this day
> and age, size_t.

I was actually thinking of something smaller since I doubt anyone
wants to use this with large amounts of data due to O(n).

> 
> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
> -Chris

-- 
Ville Syrjälä
Intel
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  reply	other threads:[~2020-01-30 15:54 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-30 15:12 [igt-dev] [PATCH i-g-t 1/3] lib/vec: Add igt_vec Ville Syrjala
2020-01-30 15:12 ` [igt-dev] [PATCH i-g-t 2/3] lib/igt_kms: Add igt_reduce_format() Ville Syrjala
2020-01-30 15:38   ` Chris Wilson
2020-02-03 16:35   ` [igt-dev] [PATCH i-g-t v2 " Ville Syrjala
2020-01-30 15:12 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_plane_scaling: Don't test every pixel format Ville Syrjala
2020-01-30 15:40   ` Chris Wilson
2020-01-30 15:57     ` Ville Syrjälä
2020-01-30 15:31 ` [igt-dev] [PATCH i-g-t 1/3] lib/vec: Add igt_vec Chris Wilson
2020-01-30 15:54   ` Ville Syrjälä [this message]
2020-01-30 16:00     ` Chris Wilson
2020-01-30 16:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork
2020-02-02  4:41 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-02-03 16:34 ` [igt-dev] [PATCH i-g-t v2 1/3] " Ville Syrjala
2020-02-04 12:36 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/3] lib/vec: Add igt_vec (rev3) Patchwork
2020-02-06 10:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200130155410.GE13686@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.