Home
last modified time | relevance | path

Searched refs:vhdl_const_bit (Results 1 – 8 of 8) sorted by relevance

/dports/cad/iverilog/verilog-11.0/tgt-vhdl/
H A Dcast.cc80 vhdl_expr *others = w == 1 ? NULL : new vhdl_const_bit('0'); in to_vector()
147 vhdl_const_bit *one = new vhdl_const_bit('1'); in to_boolean()
296 return new vhdl_const_bit(lsb); in to_std_logic()
334 vhdl_expr *vhdl_const_bit::to_integer() in to_integer()
339 vhdl_expr *vhdl_const_bit::to_boolean() in to_boolean()
344 vhdl_expr *vhdl_const_bit::to_std_ulogic() in to_std_ulogic()
349 vhdl_expr *vhdl_const_bit::to_vector(vhdl_type_name_t name, int w) in to_vector()
H A Dlogic.cc75 vhdl_expr *on = new vhdl_const_bit(if0 ? '0' : '1'); in bufif_logic()
98 vhdl_expr *z = new vhdl_const_bit(zbit); in bufif_logic()
150 ws->add_default(new vhdl_const_bit('X')); in comb_udp_logic()
156 vhdl_expr *value = new vhdl_const_bit(row[nin]); in comb_udp_logic()
253 return new vhdl_const_bit('1'); in translate_logic_inputs()
255 return new vhdl_const_bit('0'); in translate_logic_inputs()
H A Dstmt.cc1219 cmp->add_expr(new vhdl_const_bit('z')); in check_against_x()
1228 cmp->add_expr(new vhdl_const_bit('x')); in check_against_x()
1271 cmp->add_expr(new vhdl_const_bit('z')); in process_number()
1281 cmp->add_expr(new vhdl_const_bit('x')); in process_number()
1291 cmp->add_expr(new vhdl_const_bit(bits[i])); in process_number()
1349 cmp->add_expr(new vhdl_const_bit('x')); in process_signal()
1373 cmp->add_expr(new vhdl_const_bit('z')); in process_signal()
1380 cmp->add_expr(new vhdl_const_bit('x')); in process_signal()
1390 cmp->add_expr(new vhdl_const_bit('z')); in process_signal()
1400 cmp->add_expr(new vhdl_const_bit('x')); in process_signal()
H A Dlpm.cc306 vhdl_expr *b1 = new vhdl_const_bit('1'); in draw_mux_lpm()
350 new vhdl_cassign_stmt(out, new vhdl_const_bit('0')); in draw_lpm()
351 s->add_condition(new vhdl_const_bit('1'), f); in draw_lpm()
H A Dscope.cc271 priv->const_driver = new vhdl_const_bit(ivl_const_bits(con)[0]); in draw_nexus()
312 new vhdl_const_bit(def)); in draw_nexus()
314 priv->const_driver = new vhdl_const_bit(def); in draw_nexus()
H A Dvhdl_syntax.hh208 class vhdl_const_bit : public vhdl_expr { class
210 explicit vhdl_const_bit(char bit) in vhdl_const_bit() function in vhdl_const_bit
H A Dexpr.cc128 return new vhdl_const_bit(ivl_expr_bits(e)[0]); in translate_number()
H A Dvhdl_syntax.cc723 void vhdl_const_bit::emit(std::ostream &of, int) const in emit()