mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-03-04 02:30:32 +01:00
Jeff Muizelaar pointed out that the severe overallocation implicit in the current version of the glyph cache is obnoxious and prevents him from accepting the trunk into Mozilla. Jeff captured a trace of scaled font and glyph usage during a tp run and presented his analysis in http://lists.cairographics.org/archives/cairo/2009-March/016706.html Using that data, the design was changed to allocate pages of glyphs from a capped global pool but with per-font hash tables. This should allow the glyph cache to have tight memory bounds with fair allocation according to usage. Note that both the old design and the 1.8 glyph cache had essentially unbounded memory constraints, since each scaled font could cache up to 256 glyphs (1.8) or had a reserved page (old), with no limit on the number of active fonts. Currently the eviction policy is a simple random strategy, this gives a 'fair' allotment of the cache, but a LRU variant might perform better. On a sample run of firefox-3.0.7 perusing BBC news in 32 languages: 1.8: cache allocation 8190x, ~1.2 MiB; elapsed 88.2s old: cache allocation 771x, ~13.8 MiB; elapsed 81.7s lean: cache allocation 433x, ~1.8 MiB; elapsed 82.4s
375 lines
11 KiB
C
375 lines
11 KiB
C
/* cairo - a vector graphics library with display and print output
|
|
*
|
|
* Copyright © 2004 Red Hat, Inc.
|
|
* Copyright © 2005 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it either under the terms of the GNU Lesser General Public
|
|
* License version 2.1 as published by the Free Software Foundation
|
|
* (the "LGPL") or, at your option, under the terms of the Mozilla
|
|
* Public License Version 1.1 (the "MPL"). If you do not alter this
|
|
* notice, a recipient may use your version of this file under either
|
|
* the MPL or the LGPL.
|
|
*
|
|
* You should have received a copy of the LGPL along with this library
|
|
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
* You should have received a copy of the MPL along with this library
|
|
* in the file COPYING-MPL-1.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License
|
|
* Version 1.1 (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.mozilla.org/MPL/
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
|
|
* OF ANY KIND, either express or implied. See the LGPL or the MPL for
|
|
* the specific language governing rights and limitations.
|
|
*
|
|
* The Original Code is the cairo graphics library.
|
|
*
|
|
* The Initial Developer of the Original Code is Red Hat, Inc.
|
|
*
|
|
* Contributor(s):
|
|
* Keith Packard <keithp@keithp.com>
|
|
* Graydon Hoare <graydon@redhat.com>
|
|
* Carl Worth <cworth@cworth.org>
|
|
*/
|
|
|
|
#include "cairoint.h"
|
|
|
|
static void
|
|
_cairo_cache_shrink_to_accommodate (cairo_cache_t *cache,
|
|
unsigned long additional);
|
|
|
|
static cairo_bool_t
|
|
_cairo_cache_entry_is_non_zero (const void *entry)
|
|
{
|
|
return ((const cairo_cache_entry_t *) entry)->size;
|
|
}
|
|
|
|
static cairo_status_t
|
|
_cairo_cache_init (cairo_cache_t *cache,
|
|
cairo_cache_keys_equal_func_t keys_equal,
|
|
cairo_cache_predicate_func_t predicate,
|
|
cairo_destroy_func_t entry_destroy,
|
|
unsigned long max_size)
|
|
{
|
|
cache->hash_table = _cairo_hash_table_create (keys_equal);
|
|
if (unlikely (cache->hash_table == NULL))
|
|
return _cairo_error (CAIRO_STATUS_NO_MEMORY);
|
|
|
|
if (predicate == NULL)
|
|
predicate = _cairo_cache_entry_is_non_zero;
|
|
cache->predicate = predicate;
|
|
cache->entry_destroy = entry_destroy;
|
|
|
|
cache->max_size = max_size;
|
|
cache->size = 0;
|
|
|
|
cache->freeze_count = 0;
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
}
|
|
|
|
static void
|
|
_cairo_cache_pluck (void *entry, void *closure)
|
|
{
|
|
_cairo_cache_remove (closure, entry);
|
|
}
|
|
|
|
static void
|
|
_cairo_cache_fini (cairo_cache_t *cache)
|
|
{
|
|
_cairo_hash_table_foreach (cache->hash_table,
|
|
_cairo_cache_pluck,
|
|
cache);
|
|
assert (cache->size == 0);
|
|
_cairo_hash_table_destroy (cache->hash_table);
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_create:
|
|
* @keys_equal: a function to return %TRUE if two keys are equal
|
|
* @entry_destroy: destroy notifier for cache entries
|
|
* @max_size: the maximum size for this cache
|
|
* Returns: the newly created #cairo_cache_t
|
|
*
|
|
* Creates a new cache using the keys_equal() function to determine
|
|
* the equality of entries.
|
|
*
|
|
* Data is provided to the cache in the form of user-derived version
|
|
* of #cairo_cache_entry_t. A cache entry must be able to hold hash
|
|
* code, a size, and the key/value pair being stored in the
|
|
* cache. Sometimes only the key will be necessary, (as in
|
|
* _cairo_cache_lookup()), and in these cases the value portion of the
|
|
* entry need not be initialized.
|
|
*
|
|
* The units for max_size can be chosen by the caller, but should be
|
|
* consistent with the units of the size field of cache entries. When
|
|
* adding an entry with _cairo_cache_insert() if the total size of
|
|
* entries in the cache would exceed max_size then entries will be
|
|
* removed at random until the new entry would fit or the cache is
|
|
* empty. Then the new entry is inserted.
|
|
*
|
|
* There are cases in which the automatic removal of entries is
|
|
* undesired. If the cache entries have reference counts, then it is a
|
|
* simple matter to use the reference counts to ensure that entries
|
|
* continue to live even after being ejected from the cache. However,
|
|
* in some cases the memory overhead of adding a reference count to
|
|
* the entry would be objectionable. In such cases, the
|
|
* _cairo_cache_freeze() and _cairo_cache_thaw() calls can be
|
|
* used to establish a window during which no automatic removal of
|
|
* entries will occur.
|
|
**/
|
|
cairo_cache_t *
|
|
_cairo_cache_create (cairo_cache_keys_equal_func_t keys_equal,
|
|
cairo_cache_predicate_func_t predicate,
|
|
cairo_destroy_func_t entry_destroy,
|
|
unsigned long max_size)
|
|
{
|
|
cairo_status_t status;
|
|
cairo_cache_t *cache;
|
|
|
|
cache = malloc (sizeof (cairo_cache_t));
|
|
if (unlikely (cache == NULL)) {
|
|
status = _cairo_error (CAIRO_STATUS_NO_MEMORY);
|
|
return NULL;
|
|
}
|
|
|
|
status = _cairo_cache_init (cache,
|
|
keys_equal,
|
|
predicate,
|
|
entry_destroy,
|
|
max_size);
|
|
if (unlikely (status)) {
|
|
free (cache);
|
|
return NULL;
|
|
}
|
|
|
|
return cache;
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_destroy:
|
|
* @cache: a cache to destroy
|
|
*
|
|
* Immediately destroys the given cache, freeing all resources
|
|
* associated with it. As part of this process, the entry_destroy()
|
|
* function, (as passed to _cairo_cache_create()), will be called for
|
|
* each entry in the cache.
|
|
**/
|
|
void
|
|
_cairo_cache_destroy (cairo_cache_t *cache)
|
|
{
|
|
_cairo_cache_fini (cache);
|
|
|
|
free (cache);
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_freeze:
|
|
* @cache: a cache with some precious entries in it (or about to be
|
|
* added)
|
|
*
|
|
* Disable the automatic ejection of entries from the cache. For as
|
|
* long as the cache is "frozen", calls to _cairo_cache_insert() will
|
|
* add new entries to the cache regardless of how large the cache
|
|
* grows. See _cairo_cache_thaw().
|
|
*
|
|
* Note: Multiple calls to _cairo_cache_freeze() will stack, in that
|
|
* the cache will remain "frozen" until a corresponding number of
|
|
* calls are made to _cairo_cache_thaw().
|
|
**/
|
|
void
|
|
_cairo_cache_freeze (cairo_cache_t *cache)
|
|
{
|
|
assert (cache->freeze_count >= 0);
|
|
|
|
cache->freeze_count++;
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_thaw:
|
|
* @cache: a cache, just after the entries in it have become less
|
|
* precious
|
|
*
|
|
* Cancels the effects of _cairo_cache_freeze().
|
|
*
|
|
* When a number of calls to _cairo_cache_thaw() is made corresponding
|
|
* to the number of calls to _cairo_cache_freeze() the cache will no
|
|
* longer be "frozen". If the cache had grown larger than max_size
|
|
* while frozen, entries will immediately be ejected (by random) from
|
|
* the cache until the cache is smaller than max_size. Also, the
|
|
* automatic ejection of entries on _cairo_cache_insert() will resume.
|
|
**/
|
|
void
|
|
_cairo_cache_thaw (cairo_cache_t *cache)
|
|
{
|
|
assert (cache->freeze_count > 0);
|
|
|
|
cache->freeze_count--;
|
|
|
|
if (cache->freeze_count == 0)
|
|
_cairo_cache_shrink_to_accommodate (cache, 0);
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_lookup:
|
|
* @cache: a cache
|
|
* @key: the key of interest
|
|
* @entry_return: pointer for return value
|
|
*
|
|
* Performs a lookup in @cache looking for an entry which has a key
|
|
* that matches @key, (as determined by the keys_equal() function
|
|
* passed to _cairo_cache_create()).
|
|
*
|
|
* Return value: %TRUE if there is an entry in the cache that matches
|
|
* @key, (which will now be in *entry_return). %FALSE otherwise, (in
|
|
* which case *entry_return will be %NULL).
|
|
**/
|
|
void *
|
|
_cairo_cache_lookup (cairo_cache_t *cache,
|
|
cairo_cache_entry_t *key)
|
|
{
|
|
return _cairo_hash_table_lookup (cache->hash_table,
|
|
(cairo_hash_entry_t *) key);
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_remove_random:
|
|
* @cache: a cache
|
|
*
|
|
* Remove a random entry from the cache.
|
|
*
|
|
* Return value: %TRUE if an entry was successfully removed.
|
|
* %FALSE if there are no entries that can be removed.
|
|
**/
|
|
static cairo_bool_t
|
|
_cairo_cache_remove_random (cairo_cache_t *cache)
|
|
{
|
|
cairo_cache_entry_t *entry;
|
|
|
|
entry = _cairo_hash_table_random_entry (cache->hash_table,
|
|
cache->predicate);
|
|
if (unlikely (entry == NULL))
|
|
return FALSE;
|
|
|
|
_cairo_cache_remove (cache, entry);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_shrink_to_accommodate:
|
|
* @cache: a cache
|
|
* @additional: additional size requested in bytes
|
|
*
|
|
* If cache is not frozen, eject entries randomly until the size of
|
|
* the cache is at least @additional bytes less than
|
|
* cache->max_size. That is, make enough room to accommodate a new
|
|
* entry of size @additional.
|
|
**/
|
|
static void
|
|
_cairo_cache_shrink_to_accommodate (cairo_cache_t *cache,
|
|
unsigned long additional)
|
|
{
|
|
if (cache->freeze_count)
|
|
return;
|
|
|
|
while (cache->size + additional > cache->max_size) {
|
|
if (! _cairo_cache_remove_random (cache))
|
|
return;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_insert:
|
|
* @cache: a cache
|
|
* @entry: an entry to be inserted
|
|
*
|
|
* Insert @entry into the cache. If an entry exists in the cache with
|
|
* a matching key, then the old entry will be removed first, (and the
|
|
* entry_destroy() callback will be called on it).
|
|
*
|
|
* Return value: %CAIRO_STATUS_SUCCESS if successful or
|
|
* %CAIRO_STATUS_NO_MEMORY if insufficient memory is available.
|
|
**/
|
|
cairo_status_t
|
|
_cairo_cache_insert (cairo_cache_t *cache,
|
|
cairo_cache_entry_t *entry)
|
|
{
|
|
cairo_status_t status;
|
|
|
|
_cairo_cache_shrink_to_accommodate (cache, entry->size);
|
|
|
|
status = _cairo_hash_table_insert (cache->hash_table,
|
|
(cairo_hash_entry_t *) entry);
|
|
if (unlikely (status))
|
|
return status;
|
|
|
|
cache->size += entry->size;
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_remove:
|
|
* @cache: a cache
|
|
* @entry: an entry that exists in the cache
|
|
*
|
|
* Remove an existing entry from the cache.
|
|
**/
|
|
void
|
|
_cairo_cache_remove (cairo_cache_t *cache,
|
|
cairo_cache_entry_t *entry)
|
|
{
|
|
cache->size -= entry->size;
|
|
|
|
_cairo_hash_table_remove (cache->hash_table,
|
|
(cairo_hash_entry_t *) entry);
|
|
|
|
if (cache->entry_destroy)
|
|
cache->entry_destroy (entry);
|
|
}
|
|
|
|
/**
|
|
* _cairo_cache_foreach:
|
|
* @cache: a cache
|
|
* @cache_callback: function to be called for each entry
|
|
* @closure: additional argument to be passed to @cache_callback
|
|
*
|
|
* Call @cache_callback for each entry in the cache, in a
|
|
* non-specified order.
|
|
**/
|
|
void
|
|
_cairo_cache_foreach (cairo_cache_t *cache,
|
|
cairo_cache_callback_func_t cache_callback,
|
|
void *closure)
|
|
{
|
|
_cairo_hash_table_foreach (cache->hash_table,
|
|
cache_callback,
|
|
closure);
|
|
}
|
|
|
|
unsigned long
|
|
_cairo_hash_string (const char *c)
|
|
{
|
|
/* This is the djb2 hash. */
|
|
unsigned long hash = _CAIRO_HASH_INIT_VALUE;
|
|
while (c && *c)
|
|
hash = ((hash << 5) + hash) + *c++;
|
|
return hash;
|
|
}
|
|
|
|
unsigned long
|
|
_cairo_hash_bytes (unsigned long hash,
|
|
const void *ptr,
|
|
unsigned int length)
|
|
{
|
|
const uint8_t *bytes = ptr;
|
|
/* This is the djb2 hash. */
|
|
while (length--)
|
|
hash = ((hash << 5) + hash) + *bytes++;
|
|
return hash;
|
|
}
|