1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 1996-2016. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* %CopyrightEnd%
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "sys.h"
#include "erl_vm.h"
#include "global.h"
#include "index.h"
void index_info(fmtfn_t to, void *arg, IndexTable *t)
{
hash_info(to, arg, &t->htable);
erts_print(to, arg, "=index_table:%s\n", t->htable.name);
erts_print(to, arg, "size: %d\n", t->size);
erts_print(to, arg, "limit: %d\n", t->limit);
erts_print(to, arg, "entries: %d\n",t->entries);
}
/*
* Returns size of table in bytes. Stored objects not included.
*/
int
index_table_sz(IndexTable *t)
{
return (sizeof(IndexTable)
- sizeof(Hash)
+ t->size*sizeof(IndexSlot*)
+ hash_table_sz(&(t->htable)));
}
/*
** init a pre allocated or static hash structure
** and allocate buckets.
*/
IndexTable*
erts_index_init(ErtsAlcType_t type, IndexTable* t, char* name,
int size, int limit, HashFunctions fun)
{
Uint base_size = ((limit+INDEX_PAGE_SIZE-1)/INDEX_PAGE_SIZE)*sizeof(IndexSlot*);
hash_init(type, &t->htable, name, 3*size/4, fun);
t->size = 0;
t->limit = limit;
t->entries = 0;
t->type = type;
t->seg_table = (IndexSlot***) erts_alloc(type, base_size);
return t;
}
IndexSlot*
index_put_entry(IndexTable* t, void* tmpl)
{
int ix;
IndexSlot* p = (IndexSlot*) hash_put(&t->htable, tmpl);
if (p->index >= 0) {
return p;
}
ix = t->entries;
if (ix >= t->size) {
Uint sz;
if (ix >= t->limit) {
/* A core dump is unnecessary */
erts_exit(ERTS_DUMP_EXIT, "no more index entries in %s (max=%d)\n",
t->htable.name, t->limit);
}
sz = INDEX_PAGE_SIZE*sizeof(IndexSlot*);
t->seg_table[ix>>INDEX_PAGE_SHIFT] = erts_alloc(t->type, sz);
t->size += INDEX_PAGE_SIZE;
}
p->index = ix;
t->seg_table[ix>>INDEX_PAGE_SHIFT][ix&INDEX_PAGE_MASK] = p;
/*
* Do a write barrier here to allow readers to do lock free iteration.
* erts_index_num_entries() does matching read barrier.
*/
ERTS_SMP_WRITE_MEMORY_BARRIER;
t->entries++;
return p;
}
int index_get(IndexTable* t, void* tmpl)
{
IndexSlot* p = (IndexSlot*) hash_get(&t->htable, tmpl);
if (p != NULL) {
return p->index;
}
return -1;
}
void erts_index_merge(Hash* src, IndexTable* dst)
{
int limit = src->size;
HashBucket** bucket = src->bucket;
int i;
for (i = 0; i < limit; i++) {
HashBucket* b = bucket[i];
IndexSlot* p;
int ix;
while (b) {
Uint sz;
ix = dst->entries++;
if (ix >= dst->size) {
if (ix >= dst->limit) {
erts_exit(ERTS_ERROR_EXIT, "no more index entries in %s (max=%d)\n",
dst->htable.name, dst->limit);
}
sz = INDEX_PAGE_SIZE*sizeof(IndexSlot*);
dst->seg_table[ix>>INDEX_PAGE_SHIFT] = erts_alloc(dst->type, sz);
dst->size += INDEX_PAGE_SIZE;
}
p = (IndexSlot*) b;
p->index = ix;
dst->seg_table[ix>>INDEX_PAGE_SHIFT][ix&INDEX_PAGE_MASK] = p;
b = b->next;
}
}
}
void index_erase_latest_from(IndexTable* t, Uint from_ix)
{
if(from_ix < (Uint)t->entries) {
int ix;
for (ix = from_ix; ix < t->entries; ix++) {
IndexSlot* obj = t->seg_table[ix>>INDEX_PAGE_SHIFT][ix&INDEX_PAGE_MASK];
hash_erase(&t->htable, obj);
}
t->entries = from_ix;
}
else {
ASSERT(from_ix == t->entries);
}
}
|