Home
last modified time | relevance | path

Searched refs:varid (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/target/hexagon/idef-parser/
H A Dparser-helpers.c443 HexValue *varid) in try_find_variable() argument
445 yyassert(c, locp, varid, "varid to lookup is NULL"); in try_find_variable()
446 yyassert(c, locp, varid->type == VARID, in try_find_variable()
450 if (g_string_equal(varid->var.name, curr->name)) { in try_find_variable()
465 HexValue *varid) in find_variable() argument
467 bool found = try_find_variable(c, locp, dst, varid); in find_variable()
483 HexValue *varid, in gen_varid_allocate() argument
488 bool found = try_find_variable(c, locp, NULL, varid); in gen_varid_allocate()
497 new_var.name = varid->var.name; in gen_varid_allocate()
501 EMIT_HEAD(c, "TCGv_%s %s", bit_suffix, varid->var.name->str); in gen_varid_allocate()
H A Dparser-helpers.h172 HexValue *varid,