summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/mupdf/fitz/glyph-cache.h1
-rw-r--r--source/fitz/draw-glyph.c25
-rw-r--r--source/tools/mudraw.c14
3 files changed, 32 insertions, 8 deletions
diff --git a/include/mupdf/fitz/glyph-cache.h b/include/mupdf/fitz/glyph-cache.h
index ae41fcf4..81dbd95c 100644
--- a/include/mupdf/fitz/glyph-cache.h
+++ b/include/mupdf/fitz/glyph-cache.h
@@ -27,5 +27,6 @@ fz_pixmap *fz_render_glyph(fz_context *ctx, fz_font*, int, const fz_matrix *, fz
fz_pixmap *fz_render_stroked_glyph(fz_context *ctx, fz_font*, int, const fz_matrix *, const fz_matrix *, fz_stroke_state *stroke, fz_irect scissor);
void fz_render_t3_glyph_direct(fz_context *ctx, fz_device *dev, fz_font *font, int gid, const fz_matrix *trm, void *gstate, int nestedDepth);
void fz_prepare_t3_glyph(fz_context *ctx, fz_font *font, int gid, int nestedDepth);
+void fz_dump_glyph_cache_stats(fz_context *ctx);
#endif
diff --git a/source/fitz/draw-glyph.c b/source/fitz/draw-glyph.c
index f38f9140..859c8762 100644
--- a/source/fitz/draw-glyph.c
+++ b/source/fitz/draw-glyph.c
@@ -34,6 +34,10 @@ struct fz_glyph_cache_s
{
int refs;
int total;
+#ifndef NDEBUG
+ int num_evictions;
+ int evicted;
+#endif
fz_glyph_cache_entry *entry[GLYPH_HASH_LEN];
fz_glyph_cache_entry *lru_head;
fz_glyph_cache_entry *lru_tail;
@@ -78,7 +82,7 @@ drop_glyph_cache_entry(fz_context *ctx, fz_glyph_cache_entry *entry)
/* The glyph cache lock is always held when this function is called. */
static void
-fz_evict_glyph_cache(fz_context *ctx)
+do_purge(fz_context *ctx)
{
fz_glyph_cache *cache = ctx->glyph_cache;
int i;
@@ -96,7 +100,7 @@ void
fz_purge_glyph_cache(fz_context *ctx)
{
fz_lock(ctx, FZ_LOCK_GLYPHCACHE);
- fz_evict_glyph_cache(ctx);
+ do_purge(ctx);
fz_unlock(ctx, FZ_LOCK_GLYPHCACHE);
}
@@ -110,7 +114,7 @@ fz_drop_glyph_cache_context(fz_context *ctx)
ctx->glyph_cache->refs--;
if (ctx->glyph_cache->refs == 0)
{
- fz_evict_glyph_cache(ctx);
+ do_purge(ctx);
fz_free(ctx, ctx->glyph_cache);
ctx->glyph_cache = NULL;
}
@@ -318,6 +322,10 @@ fz_render_glyph(fz_context *ctx, fz_font *font, int gid, const fz_matrix *ctm, f
cache->total += val->w * val->h;
while (cache->total > MAX_CACHE_SIZE)
{
+#ifndef NDEBUG
+ cache->num_evictions++;
+ cache->evicted += cache->lru_tail->val->w * cache->lru_tail->val->h;
+#endif
drop_glyph_cache_entry(ctx, cache->lru_tail);
}
@@ -339,3 +347,14 @@ fz_render_glyph(fz_context *ctx, fz_font *font, int gid, const fz_matrix *ctm, f
return val;
}
+
+void
+fz_dump_glyph_cache_stats(fz_context *ctx)
+{
+ fz_glyph_cache *cache = ctx->glyph_cache;
+
+ printf("Glyph Cache Size: %d\n", cache->total);
+#ifndef NDEBUG
+ printf("Glyph Cache Evictions: %d (%d bytes)\n", cache->num_evictions, cache->evicted);
+#endif
+}
diff --git a/source/tools/mudraw.c b/source/tools/mudraw.c
index 78b3cfba..7a6ad478 100644
--- a/source/tools/mudraw.c
+++ b/source/tools/mudraw.c
@@ -157,7 +157,7 @@ static int out_cs = CS_UNSET;
static int memtrace_current = 0;
static int memtrace_peak = 0;
static int memtrace_total = 0;
-
+static int showmemory = 0;
static fz_text_sheet *sheet = NULL;
static fz_colorspace *colorspace;
static char *filename;
@@ -771,6 +771,11 @@ static void drawpage(fz_context *ctx, fz_document *doc, int pagenum)
if (showmd5 || showtime)
printf("\n");
+ if (showmemory)
+ {
+ fz_dump_glyph_cache_stats(ctx);
+ }
+
fz_flush_warnings(ctx);
if (mujstest_file && needshot)
@@ -921,7 +926,6 @@ int main(int argc, char **argv)
int c;
fz_context *ctx;
fz_alloc_context alloc_ctx = { NULL, trace_malloc, trace_realloc, trace_free };
- int tracememory = 0;
fz_var(doc);
@@ -937,7 +941,7 @@ int main(int argc, char **argv)
case 'b': alphabits = atoi(fz_optarg); break;
case 'l': showoutline++; break;
case 'm': showtime++; break;
- case 'M': tracememory++; break;
+ case 'M': showmemory++; break;
case 't': showtext++; break;
case 'x': showxml++; break;
case '5': showmd5++; break;
@@ -972,7 +976,7 @@ int main(int argc, char **argv)
mujstest_file = fopen(mujstest_filename, "wb");
}
- ctx = fz_new_context((tracememory == 0 ? NULL : &alloc_ctx), NULL, FZ_STORE_DEFAULT);
+ ctx = fz_new_context((showmemory == 0 ? NULL : &alloc_ctx), NULL, FZ_STORE_DEFAULT);
if (!ctx)
{
fprintf(stderr, "cannot initialise context\n");
@@ -1213,7 +1217,7 @@ int main(int argc, char **argv)
fz_free_context(ctx);
- if (tracememory)
+ if (showmemory)
{
printf("Total memory use = %d bytes\n", memtrace_total);
printf("Peak memory use = %d bytes\n", memtrace_peak);