summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-06-03 09:38:06 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-06-03 09:38:06 +0000
commit52a8e38806f801994b3797251b634378fcbdb6ec (patch)
tree75629bc738e48a1e482d8177ead6b832ec500b09
parent1248a0dc1fe970951fdba063b88d8ad8c96db912 (diff)
downloadrockbox-52a8e38806f801994b3797251b634378fcbdb6ec.tar.gz
rockbox-52a8e38806f801994b3797251b634378fcbdb6ec.zip
Replace bitfield for tagcache tag sets with array of char on SH.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21176 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/tagcache.c43
-rw-r--r--apps/tagcache.h3
2 files changed, 23 insertions, 23 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index 4a542fb702..3d0ab7fbd3 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -107,24 +107,40 @@ static long tempbuf_size; /* Buffer size (TEMPBUF_SIZE). */
static long tempbuf_left; /* Buffer space left. */
static long tempbuf_pos;
-#ifdef CPU_SH
-#define TAGCACHE_IS_UNIQUE(tag) (tagcache_is_unique_tag(tag))
-#define TAGCACHE_IS_SORTED(tag) (tagcache_is_sorted_tag(tag))
+#define SORTED_TAGS_COUNT 8
+#ifdef CPU_SH /* SH lacks a variable shift instruction */
+/* Numeric tags (we can use these tags with conditional clauses). */
+const char tagcache_numeric_tags[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1,
+ 1, 1, 1, 1, 1 };
+
+/* Uniqued tags (we can use these tags with filters and conditional clauses). */
+static const char tagcache_unique_tags[] = { 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0 };
+
+/* Tags we want to get sorted (loaded to the tempbuf). */
+static const char tagcache_sorted_tags[] = { 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0 };
+
+#define TAGCACHE_IS_UNIQUE(tag) ((bool)tagcache_unique_tags[tag])
+#define TAGCACHE_IS_SORTED(tag) ((bool)tagcache_sorted_tags[tag])
+
#else
#define TAGCACHE_IS_UNIQUE(tag) ((1LU << tag) & TAGCACHE_UNIQUE_TAGS)
#define TAGCACHE_IS_SORTED(tag) ((1LU << tag) & TAGCACHE_SORTED_TAGS)
-#endif
/* Tags we want to get sorted (loaded to the tempbuf). */
#define TAGCACHE_SORTED_TAGS ((1LU << tag_artist) | (1LU << tag_album) | \
(1LU << tag_genre) | (1LU << tag_composer) | (1LU << tag_comment) | \
(1LU << tag_albumartist) | (1LU << tag_grouping) | (1LU << tag_title))
-#define SORTED_TAGS_COUNT 8
/* Uniqued tags (we can use these tags with filters and conditional clauses). */
#define TAGCACHE_UNIQUE_TAGS ((1LU << tag_artist) | (1LU << tag_album) | \
(1LU << tag_genre) | (1LU << tag_composer) | (1LU << tag_comment) | \
(1LU << tag_albumartist) | (1LU << tag_grouping))
+#endif
/* String presentation of the tags defined in tagcache.h. Must be in correct order! */
static const char *tags_str[] = { "artist", "album", "genre", "title",
@@ -268,23 +284,6 @@ const char* tagcache_tag_to_str(int tag)
return tags_str[tag];
}
-#ifdef CPU_SH
-bool tagcache_is_numeric_tag(int type)
-{
- return (1LU << type) & TAGCACHE_NUMERIC_TAGS;
-}
-
-static bool tagcache_is_unique_tag(int type)
-{
- return (1LU << type) & TAGCACHE_UNIQUE_TAGS;
-}
-
-static bool tagcache_is_sorted_tag(int type)
-{
- return (1LU << type) & TAGCACHE_UNIQUE_TAGS;
-}
-#endif
-
#ifdef HAVE_DIRCACHE
/**
* Returns true if specified flag is still present, i.e., dircache
diff --git a/apps/tagcache.h b/apps/tagcache.h
index 8863ecb7df..d7047178e1 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -104,7 +104,8 @@ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title,
(1LU << tag_virt_entryage) | (1LU << tag_virt_autoscore))
#ifdef CPU_SH
-#define TAGCACHE_IS_NUMERIC(tag) (tagcache_is_numeric_tag(tag))
+extern const char tagcache_numeric_tags[];
+#define TAGCACHE_IS_NUMERIC(tag) ((bool)tagcache_numeric_tags[tag])
#else
#define TAGCACHE_IS_NUMERIC(tag) ((1LU << tag) & TAGCACHE_NUMERIC_TAGS)
#endif