summaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-09-12 23:10:32 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-09-12 23:10:32 -0700
commit10680dee1019909374df8990afba41eff8371238 (patch)
treeb46cec4ca461a68cf7eba7913aec404d7a844d42 /struct.c
parentb98e4e9827077e5e74184127324d0b73e0c0a373 (diff)
downloadtxr-10680dee1019909374df8990afba41eff8371238.tar.gz
txr-10680dee1019909374df8990afba41eff8371238.tar.bz2
txr-10680dee1019909374df8990afba41eff8371238.zip
Reduce proliferation of TAG_SHIFT.
* arith.c (num_to_buffer, c_unum, c_dbl_num, c_dbl_unum, c_num, c_fixnum): Use c_n inline function instead of open coding exactly the same thing. * lib.c (c_chr): Likewise. * struct.c (make_struct_type, lookup_slot, lookup_static_slot_desc, static_slot_p): Likewise.
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/struct.c b/struct.c
index 9fcfd2ad..8adf6323 100644
--- a/struct.c
+++ b/struct.c
@@ -538,7 +538,7 @@ val make_struct_type(val name, val supers,
struct stslot *ss = &st->stslot[n];
val key = if2(su, cons(slot, num_fast(su->id)));
val msl = if2(su, gethash(slot_hash, key));
- cnum m = (coerce(cnum, msl) >> TAG_SHIFT) - STATIC_SLOT_BASE;
+ cnum m = c_n(msl) - STATIC_SLOT_BASE;
if (!inherited_p || (opt_compat && opt_compat <= 151)) {
ss->home_type = stype;
@@ -1123,7 +1123,7 @@ static loc lookup_slot(val inst, struct struct_inst *si, val sym)
} else {
val key = cons(sym, num_fast(id));
val sl = gethash(slot_hash, key);
- cnum slnum = coerce(cnum, sl) >> TAG_SHIFT;
+ cnum slnum = c_n(sl);
rcyc_cons(key);
@@ -1157,7 +1157,7 @@ static struct stslot *lookup_static_slot_desc(struct struct_type *st, val sym)
} else if (slot < 0) {
val key = cons(sym, num_fast(id));
val sl = gethash(slot_hash, key);
- cnum slnum = coerce(cnum, sl) >> TAG_SHIFT;
+ cnum slnum = c_n(sl);
rcyc_cons(key);
@@ -1174,7 +1174,7 @@ static struct stslot *lookup_static_slot_desc(struct struct_type *st, val sym)
slot_cache_set_t *set = &slot_cache[id % SLOT_CACHE_SIZE];
val key = cons(sym, num_fast(id));
val sl = gethash(slot_hash, key);
- cnum slnum = coerce(cnum, sl) >> TAG_SHIFT;
+ cnum slnum = c_n(sl);
sym->s.slot_cache = slot_cache;
@@ -1574,7 +1574,7 @@ val static_slot_p(val type, val sym)
if (memq(sym, st->slots)) {
val key = cons(sym, num_fast(st->id));
val sl = gethash(slot_hash, key);
- cnum slnum = coerce(cnum, sl) >> TAG_SHIFT;
+ cnum slnum = c_n(sl);
rcyc_cons(key);