|
@@ -8,12 +8,57 @@ |
|
|
#include "directives.h" |
|
|
#include "directives.h" |
|
|
|
|
|
|
|
|
/* |
|
|
/* |
|
|
Read in an integer starting at str and ending the character before end. |
|
|
|
|
|
|
|
|
Read in a boolean argument from the given line and store it in *result. |
|
|
|
|
|
|
|
|
Store the value in *result and return true on success; else return false. |
|
|
|
|
|
|
|
|
auto_val is used if the argument's value is "auto". Return true on success |
|
|
|
|
|
and false on failure; in the latter case, *result is not modified. |
|
|
*/ |
|
|
*/ |
|
|
static inline bool read_integer(uint32_t *result, const char *str, const char *end) |
|
|
|
|
|
|
|
|
bool parse_bool(bool *result, const ASMLine *line, const char *directive, bool auto_val) |
|
|
|
|
|
{ |
|
|
|
|
|
const char *arg = line->data + (DIRECTIVE_OFFSET(line, directive) + 1); |
|
|
|
|
|
ssize_t len = line->length - (DIRECTIVE_OFFSET(line, directive) + 1); |
|
|
|
|
|
|
|
|
|
|
|
if (len <= 0 || len > 5) |
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
|
|
switch (len) { |
|
|
|
|
|
case 1: // 0, 1 |
|
|
|
|
|
if (*arg == '0' || *arg == '1') |
|
|
|
|
|
return (*result = *arg - '0'), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
case 2: // on |
|
|
|
|
|
if (!strncmp(arg, "on", 2)) |
|
|
|
|
|
return (*result = true), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
case 3: // off |
|
|
|
|
|
if (!strncmp(arg, "off", 3)) |
|
|
|
|
|
return (*result = false), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
case 4: // true, auto |
|
|
|
|
|
if (!strncmp(arg, "true", 4)) |
|
|
|
|
|
return (*result = true), true; |
|
|
|
|
|
if (!strncmp(arg, "auto", 4)) |
|
|
|
|
|
return (*result = auto_val), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
case 5: // false |
|
|
|
|
|
if (!strncmp(arg, "false", 5)) |
|
|
|
|
|
return (*result = false), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
|
Read in a 32-bit int argument from the given line and store it in *result. |
|
|
|
|
|
|
|
|
|
|
|
Return true on success and false on failure; in the latter case, *result is |
|
|
|
|
|
not modified. |
|
|
|
|
|
*/ |
|
|
|
|
|
bool parse_uint32(uint32_t *result, const ASMLine *line, const char *directive) |
|
|
{ |
|
|
{ |
|
|
|
|
|
const char *str = line->data + (DIRECTIVE_OFFSET(line, directive) + 1); |
|
|
|
|
|
const char *end = str + (line->length - (DIRECTIVE_OFFSET(line, directive) + 1)); |
|
|
|
|
|
|
|
|
if (end - str <= 0) |
|
|
if (end - str <= 0) |
|
|
return false; |
|
|
return false; |
|
|
|
|
|
|
|
@@ -30,7 +75,7 @@ static inline bool read_integer(uint32_t *result, const char *str, const char *e |
|
|
value = (value * 0x10) + 0xA + (*str - 'a'); |
|
|
value = (value * 0x10) + 0xA + (*str - 'a'); |
|
|
else |
|
|
else |
|
|
return false; |
|
|
return false; |
|
|
if (value >= UINT32_MAX) |
|
|
|
|
|
|
|
|
if (value > UINT32_MAX) |
|
|
return false; |
|
|
return false; |
|
|
str++; |
|
|
str++; |
|
|
} |
|
|
} |
|
@@ -40,7 +85,7 @@ static inline bool read_integer(uint32_t *result, const char *str, const char *e |
|
|
if (*str < '0' || *str > '9') |
|
|
if (*str < '0' || *str > '9') |
|
|
return false; |
|
|
return false; |
|
|
value = (value * 10) + (*str - '0'); |
|
|
value = (value * 10) + (*str - '0'); |
|
|
if (value >= UINT32_MAX) |
|
|
|
|
|
|
|
|
if (value > UINT32_MAX) |
|
|
return false; |
|
|
return false; |
|
|
str++; |
|
|
str++; |
|
|
} |
|
|
} |
|
@@ -51,59 +96,29 @@ static inline bool read_integer(uint32_t *result, const char *str, const char *e |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* |
|
|
/* |
|
|
Read in a boolean argument from the given line and store it in *result. |
|
|
|
|
|
|
|
|
Read in a 16-bit int argument from the given line and store it in *result. |
|
|
|
|
|
|
|
|
auto_val is used if the argument's value is "auto". Return true on success |
|
|
|
|
|
and false on failure; in the latter case, *result is not modified. |
|
|
|
|
|
|
|
|
Return true on success and false on failure; in the latter case, *result is |
|
|
|
|
|
not modified. |
|
|
*/ |
|
|
*/ |
|
|
bool parse_bool(bool *result, const ASMLine *line, const char *directive, bool auto_val) |
|
|
|
|
|
|
|
|
bool parse_uint16(uint16_t *result, const ASMLine *line, const char *directive) |
|
|
{ |
|
|
{ |
|
|
const char *arg = line->data + (DIRECTIVE_OFFSET(line, directive) + 1); |
|
|
|
|
|
ssize_t len = line->length - (DIRECTIVE_OFFSET(line, directive) + 1); |
|
|
|
|
|
|
|
|
|
|
|
if (len <= 0 || len > 5) |
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
|
|
switch (len) { |
|
|
|
|
|
case 1: // 0, 1 |
|
|
|
|
|
if (*arg == '0' || *arg == '1') |
|
|
|
|
|
return (*result = *arg - '0'), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
case 2: // on |
|
|
|
|
|
if (!strncmp(arg, "on", 2)) |
|
|
|
|
|
return (*result = true), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
case 3: // off |
|
|
|
|
|
if (!strncmp(arg, "off", 3)) |
|
|
|
|
|
return (*result = false), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
case 4: // true, auto |
|
|
|
|
|
if (!strncmp(arg, "true", 4)) |
|
|
|
|
|
return (*result = true), true; |
|
|
|
|
|
if (!strncmp(arg, "auto", 4)) |
|
|
|
|
|
return (*result = auto_val), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
case 5: // false |
|
|
|
|
|
if (!strncmp(arg, "false", 5)) |
|
|
|
|
|
return (*result = false), true; |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
uint32_t value; |
|
|
|
|
|
if (parse_uint32(&value, line, directive) && value <= UINT16_MAX) |
|
|
|
|
|
return (*result = value), true; |
|
|
return false; |
|
|
return false; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* |
|
|
/* |
|
|
Read in a 32-bit int argument from the given line and store it in *result. |
|
|
|
|
|
|
|
|
Read in an 8-bit int argument from the given line and store it in *result. |
|
|
|
|
|
|
|
|
Return true on success and false on failure; in the latter case, *result is |
|
|
Return true on success and false on failure; in the latter case, *result is |
|
|
not modified. |
|
|
not modified. |
|
|
*/ |
|
|
*/ |
|
|
bool parse_uint32(uint32_t *result, const ASMLine *line, const char *directive) |
|
|
|
|
|
|
|
|
bool parse_uint8(uint8_t *result, const ASMLine *line, const char *directive) |
|
|
{ |
|
|
{ |
|
|
const char *arg = line->data + (DIRECTIVE_OFFSET(line, directive) + 1); |
|
|
|
|
|
ssize_t len = line->length - (DIRECTIVE_OFFSET(line, directive) + 1); |
|
|
|
|
|
|
|
|
|
|
|
uint32_t value; |
|
|
uint32_t value; |
|
|
if (read_integer(&value, arg, arg + len)) |
|
|
|
|
|
|
|
|
if (parse_uint32(&value, line, directive) && value <= UINT8_MAX) |
|
|
return (*result = value), true; |
|
|
return (*result = value), true; |
|
|
return false; |
|
|
return false; |
|
|
} |
|
|
} |