drgn/libdrgn/vector.c
Omar Sandoval 87b7292aa5 Relicense drgn from GPLv3+ to LGPLv2.1+
drgn is currently licensed as GPLv3+. Part of the long term vision for
drgn is that other projects can use it as a library providing
programmatic interfaces for debugger functionality. A more permissive
license is better suited to this goal. We decided on LGPLv2.1+ as a good
balance between software freedom and permissiveness.

All contributors not employed by Meta were contacted via email and
consented to the license change. The only exception was the author of
commit c4fbf7e589 ("libdrgn: fix for compilation error"), who did not
respond. That commit reverted a single line of code to one originally
written by me in commit 640b1c011d ("libdrgn: embed DWARF index in
DWARF info cache").

Signed-off-by: Omar Sandoval <osandov@osandov.com>
2022-11-01 17:05:16 -07:00

67 lines
1.5 KiB
C

// Copyright (c) Meta Platforms, Inc. and affiliates.
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "vector.h"
bool vector_do_reserve(size_t new_capacity, size_t entry_size, void **data,
size_t *capacity)
{
size_t bytes;
void *new_data;
if (new_capacity <= *capacity || new_capacity == 0)
return true;
if (__builtin_mul_overflow(new_capacity, entry_size, &bytes))
return false;
new_data = realloc(*data, bytes);
if (!new_data)
return false;
*data = new_data;
*capacity = new_capacity;
return true;
}
void vector_do_shrink_to_fit(size_t size, size_t entry_size, void **data,
size_t *capacity)
{
if (*capacity > size) {
if (size > 0) {
/*
* We already have at least size * entry_size bytes
* allocated, so we don't need to worry about overflow.
*/
void *new_data = realloc(*data, size * entry_size);
if (new_data) {
*data = new_data;
*capacity = size;
}
} else {
free(*data);
*data = NULL;
*capacity = 0;
}
}
}
bool vector_reserve_for_append(size_t size, size_t entry_size, void **data,
size_t *capacity)
{
size_t new_capacity, bytes;
void *new_data;
if (size < *capacity)
return true;
if (*capacity == 0)
new_capacity = 1;
else if (__builtin_mul_overflow(2U, *capacity, &new_capacity))
return false;
if (__builtin_mul_overflow(new_capacity, entry_size, &bytes))
return false;
new_data = realloc(*data, bytes);
if (!new_data)
return false;
*data = new_data;
*capacity = new_capacity;
return true;
}