Home
last modified time | relevance | path

Searched refs:DT_DISPLAY (Results 1 – 5 of 5) sorted by relevance

/dports/cad/verilator/verilator-4.216/src/
H A DV3Assert.cpp373 nodep->displayType(AstDisplayType::DT_DISPLAY); in visit()
392 nodep->displayType(AstDisplayType::DT_DISPLAY); in visit()
H A Dverilog.y3634 | yD_DISPLAY parenE { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, nullptr, nullptr); }
3635 …| yD_DISPLAY '(' exprDispList ')' { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, nullptr, $…
3636 …| yD_DISPLAYB parenE { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, nullptr, nullptr, 'b'…
3637 …| yD_DISPLAYB '(' exprDispList ')' { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, nullptr, …
3638 …| yD_DISPLAYH parenE { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, nullptr, nullptr, 'h'…
3640 …| yD_DISPLAYO parenE { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, nullptr, nullptr, 'o'…
3658 | yD_FDISPLAY '(' expr ')' { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, $3, nullptr); }
3659 …| yD_FDISPLAY '(' expr ',' exprDispList ')' { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, …
3660 …| yD_FDISPLAYB '(' expr ')' { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, $3, nullptr, 'b…
3662 …| yD_FDISPLAYH '(' expr ')' { $$ = new AstDisplay($1,AstDisplayType::DT_DISPLAY, $3, nullptr, 'h…
[all …]
H A DV3Ast.h885 DT_DISPLAY, enumerator
896 : m_e{DT_DISPLAY} {} in AstDisplayType()
904 bool needScopeTracking() const { return m_e != DT_DISPLAY && m_e != DT_WRITE; } in needScopeTracking()
H A DV3Simulate.h1101 case AstDisplayType::DT_DISPLAY: // FALLTHRU in visit()
H A DV3Const.cpp2904 && nodep->displayType() == AstDisplayType::DT_DISPLAY) in stmtDisplayDisplay()
2905 || (prevp->displayType() == AstDisplayType::DT_DISPLAY in stmtDisplayDisplay()
2931 if (prevp->displayType() == AstDisplayType::DT_DISPLAY) { in stmtDisplayDisplay()