* bcache.c, bcache.h: New files to implement a byte cache.
[deliverable/binutils-gdb.git] / gdb / bcache.h
CommitLineData
2ad5709f
FF
1/* Include file cached obstack implementation.
2 Written by Fred Fish (fnf@cygnus.com)
3 Copyright 1995 Free Software Foundation, Inc.
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21#ifndef BCACHE_H
22#define BCACHE_H 1
23
24#define BCACHE_HASHLENGTH 12 /* Number of bits in hash value */
25#define BCACHE_HASHSIZE (1 << BCACHE_HASHLENGTH)
26#define BCACHE_MAXLENGTH 128
27
28struct hashlink {
29 struct hashlink *next;
30 char data[1];
31};
32
33struct bcache {
34 struct obstack cache;
35 struct hashlink **indextable[BCACHE_MAXLENGTH];
36 int cache_hits;
37 int cache_misses;
38 int cache_bytes;
39 int cache_savings;
40 int bcache_overflows;
41};
42
43extern void *
44bcache PARAMS ((void *bytes, int count, struct bcache *bcachep));
45
46#endif /* BCACHE_H */
This page took 0.026068 seconds and 4 git commands to generate.