mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
8ff48201ca
This change takes an entirely new approach to the incremental linking of pkzip executables. The assets created by zipobj.com are now treated like debug data. After a .com.dbg is compiled, fixupobj.com should be run, so it can apply fixups to the offsets and move the zip directory to the end of the file. Since debug data doesn't get objcopy'd, a new tool has been introduced called zipcopy.com which should be run after objcopy whenever a .com file is created. This is all automated by the `cosmocc` toolchain which is rapidly becoming the new recommended approach. This change also introduces the new C23 checked arithmetic macros.
176 lines
5.7 KiB
C
176 lines
5.7 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
||
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
||
╞══════════════════════════════════════════════════════════════════════════════╡
|
||
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
||
│ │
|
||
│ Permission to use, copy, modify, and/or distribute this software for │
|
||
│ any purpose with or without fee is hereby granted, provided that the │
|
||
│ above copyright notice and this permission notice appear in all copies. │
|
||
│ │
|
||
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
||
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
||
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
||
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
||
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
||
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
||
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
||
│ PERFORMANCE OF THIS SOFTWARE. │
|
||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||
#include "tool/build/lib/interner.h"
|
||
#include "libc/intrin/safemacros.internal.h"
|
||
#include "libc/mem/mem.h"
|
||
#include "libc/nexgen32e/crc32.h"
|
||
#include "libc/runtime/runtime.h"
|
||
#include "libc/stdckdint.h"
|
||
#include "libc/str/str.h"
|
||
#include "libc/x/x.h"
|
||
|
||
#define kInitialItems 16
|
||
|
||
struct InternerObject {
|
||
struct Interner pool;
|
||
size_t i, n;
|
||
struct InternerHash {
|
||
unsigned hash; /* 0 means empty */
|
||
unsigned index;
|
||
} * p;
|
||
};
|
||
|
||
static void rehash(struct InternerObject *it) {
|
||
size_t i, j, n, step;
|
||
struct InternerHash *p;
|
||
n = it->n;
|
||
p = it->p;
|
||
it->p = xcalloc((it->n <<= 1), sizeof(struct InternerHash));
|
||
for (i = 0; i < n; ++i) {
|
||
if (!p[i].hash) continue;
|
||
step = 0;
|
||
do {
|
||
j = (p[i].hash + step * ((step + 1) >> 1)) & (it->n - 1);
|
||
step++;
|
||
} while (it->p[j].hash);
|
||
memcpy(&it->p[j], &p[i], sizeof(p[i]));
|
||
}
|
||
free(p);
|
||
}
|
||
|
||
/**
|
||
* Creates new interner.
|
||
*/
|
||
struct Interner *newinterner(void) {
|
||
struct InternerObject *it;
|
||
it = xcalloc(1, sizeof(*it));
|
||
it->p = xcalloc((it->n = kInitialItems), sizeof(*it->p));
|
||
it->pool.p = xcalloc((it->pool.n = kInitialItems), sizeof(*it->pool.p));
|
||
return &it->pool;
|
||
}
|
||
|
||
/**
|
||
* Destroys interner.
|
||
*/
|
||
void freeinterner(struct Interner *t) {
|
||
struct InternerObject *it = (struct InternerObject *)t;
|
||
if (it) {
|
||
free(it->pool.p);
|
||
free(it->p);
|
||
free(it);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Returns number of unique items interned.
|
||
*/
|
||
size_t interncount(const struct Interner *t) {
|
||
struct InternerObject *it = (struct InternerObject *)t;
|
||
return it->i;
|
||
}
|
||
|
||
/**
|
||
* Interns object.
|
||
*
|
||
* @return index into 𝑡→𝑝 holding equal item
|
||
* @note use consistent size w/ non-string items
|
||
*/
|
||
size_t internobj(struct Interner *t, const void *data, size_t size) {
|
||
char *p2;
|
||
size_t n2;
|
||
char *item;
|
||
unsigned hash;
|
||
struct InternerObject *it;
|
||
size_t i, off, step, need, bytes;
|
||
step = 0;
|
||
item = data;
|
||
it = (struct InternerObject *)t;
|
||
hash = max(1, crc32c(0, data, size));
|
||
do {
|
||
/* it is written that triangle probe halts iff i<n/2 && popcnt(n)==1 */
|
||
i = (hash + step * ((step + 1) >> 1)) & (it->n - 1);
|
||
if (it->p[i].hash == hash && it->p[i].index + size <= it->pool.n &&
|
||
memcmp(item, &it->pool.p[it->p[i].index], size) == 0) {
|
||
return it->p[i].index;
|
||
}
|
||
step++;
|
||
} while (it->p[i].hash);
|
||
if (++it->i == (it->n >> 1)) {
|
||
rehash(it);
|
||
step = 0;
|
||
do {
|
||
i = (hash + step * ((step + 1) >> 1)) & (it->n - 1);
|
||
step++;
|
||
} while (it->p[i].hash);
|
||
}
|
||
off = it->pool.i;
|
||
if (ckd_add(&need, off, size)) abort();
|
||
if (ckd_add(&need, need, 1)) abort();
|
||
if (need > it->pool.n) {
|
||
if (ckd_add(&n2, it->pool.n, 1)) abort();
|
||
do {
|
||
if (ckd_add(&n2, n2, n2 >> 1)) abort();
|
||
} while (need > n2);
|
||
if (ckd_mul(&bytes, n2, sizeof(*it->pool.p))) abort();
|
||
if (!(p2 = realloc(it->pool.p, bytes))) abort();
|
||
it->pool.p = p2;
|
||
it->pool.n = n2;
|
||
}
|
||
memcpy(it->pool.p + off, data, size);
|
||
it->pool.p[off + size] = 0;
|
||
it->p[i].hash = hash;
|
||
it->p[i].index = off;
|
||
it->pool.i += size;
|
||
return off;
|
||
}
|
||
|
||
/**
|
||
* Interns string.
|
||
*
|
||
* The NUL-terminated string 𝑠 is concatenated to the relocatable
|
||
* double-NUL terminated string list 𝑡→𝑝 with de-duplication and
|
||
* preservation of insertion order.
|
||
*
|
||
* @return index into 𝑡→𝑝 holding string equal to 𝑠
|
||
*/
|
||
size_t intern(struct Interner *t, const char *s) {
|
||
return internobj(t, s, strlen(s) + 1);
|
||
}
|
||
|
||
/**
|
||
* Returns true if string is interned.
|
||
*/
|
||
bool isinterned(struct Interner *t, const char *s) {
|
||
unsigned hash;
|
||
size_t i, n, step;
|
||
struct InternerObject *it;
|
||
step = 0;
|
||
n = strlen(s) + 1;
|
||
hash = max(1, crc32c(0, s, n));
|
||
it = (struct InternerObject *)t;
|
||
do {
|
||
i = (hash + step * ((step + 1) >> 1)) & (it->n - 1);
|
||
if (it->p[i].hash == hash && it->p[i].index + n <= it->pool.n &&
|
||
!memcmp(s, &it->pool.p[it->p[i].index], n)) {
|
||
return true;
|
||
}
|
||
step++;
|
||
} while (it->p[i].hash);
|
||
return false;
|
||
}
|