Unverified Commit 21933b77 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #4278 from shuujii/add-length-argument-for-sym_inline_unpack

Add length argument for `sym_inline_unpack()`
parents c769013f 2c8af128
......@@ -69,33 +69,22 @@ sym_inline_pack(const char *name, uint16_t len)
}
static const char*
sym_inline_unpack_with_bit(mrb_sym sym, char *buf, int bit_per_char)
sym_inline_unpack(mrb_sym sym, char *buf, mrb_int *lenp)
{
int bit_per_char = sym&2 ? 5 : 6; /* all lower case if `sym&2` is true */
int i;
for (i=0; i<30/bit_per_char; i++) {
uint32_t bits;
char c;
mrb_assert(sym&1);
bits = sym>>(i*bit_per_char+2) & (1<<bit_per_char)-1;
for (i=0; i<30/bit_per_char; i++) {
uint32_t bits = sym>>(i*bit_per_char+2) & (1<<bit_per_char)-1;
if (bits == 0) break;
c = pack_table[bits-1];
buf[i] = c;
buf[i] = pack_table[bits-1];;
}
buf[i] = '\0';
if (lenp) *lenp = i;
return buf;
}
static const char*
sym_inline_unpack(mrb_sym sym, char *buf)
{
mrb_assert(sym&1);
if (sym&2) { /* all lower case (5bits/char) */
return sym_inline_unpack_with_bit(sym, buf, 5);
}
return sym_inline_unpack_with_bit(sym, buf, 6);
}
#endif
uint8_t
......@@ -248,9 +237,7 @@ mrb_sym2name_len(mrb_state *mrb, mrb_sym sym, mrb_int *lenp)
{
#ifndef MRB_ENABLE_ALL_SYMBOLS
if (sym & 1) { /* inline packed symbol */
sym_inline_unpack(sym, mrb->symbuf);
if (lenp) *lenp = strlen(mrb->symbuf);
return mrb->symbuf;
return sym_inline_unpack(sym, mrb->symbuf, lenp);
}
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment