Home
last modified time | relevance | path

Searched refs:yyassert (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/target/hexagon/idef-parser/
H A Didef-parser.y169 yyassert(c, &@1, $1.bit_width <= 64,
200 yyassert(c, &@2, $2.imm.type == I,
329 yyassert(c, &@1, $3.type == IMMEDIATE,
331 yyassert(c, &@1, $1.imm.type == VARIABLE,
340 yyassert(c, &@1, !is_inside_ternary(c),
342 yyassert(c, &@1, $3.imm.value == 1,
350 yyassert(c, &@1, !is_inside_ternary(c),
352 yyassert(c, &@1, $3.imm.value == 1,
359 yyassert(c, &@1, !is_inside_ternary(c),
368 yyassert(c, &@1, !is_inside_ternary(c),
[all …]
H A Dparser-helpers.c153 yyassert(c, locp, false, "Unhandled register bit width!\n"); in reg_compose()
207 yyassert(c, locp, false, "Cannot print this expression!"); in imm_print()
240 yyassert(c, locp, false, "Cannot print this expression!"); in rvalue_print()
247 yyassert(c, locp, false, "Unhandled print type!"); in out_assert()
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()
468 yyassert(c, locp, found, "Use of undeclared variable!\n"); in find_variable()
493 yyassert(c, locp, !found, "Redeclaration of variables not allowed!"); in gen_varid_allocate()
538 yyassert(c, locp, false, "Binary comparisons between IMM op IMM and" in gen_bin_cmp()
683 yyassert(c, locp, false, "ASR between IMM op IMM, and IMM op REG" in gen_asr_op()
[all …]
H A Dparser-helpers.h51 #define yyassert(context, locp, condition, msg) \ macro