Home
last modified time | relevance | path

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

/dports/cad/iverilog/verilog-11.0/tgt-vhdl/
H A Dcast.cc251 resizef->add_expr(new vhdl_const_int(newwidth)); in resize()
256 vhdl_expr *vhdl_const_int::to_vector(vhdl_type_name_t name, int w) in to_vector()
264 conv->add_expr(new vhdl_const_int(w)); in to_vector()
321 return new vhdl_const_int(bits_to_int()); in to_integer()
336 return new vhdl_const_int(bit_ == '1' ? 1 : 0); in to_integer()
H A Dexpr.cc136 return new vhdl_const_int(ivl_expr_uvalue(e)); in translate_ulong()
304 conv->add_expr(new vhdl_const_int(width)); in translate_power()
631 vhdl_expr *result = new vhdl_const_int(0); in translate_sfunc_time()
639 vhdl_expr *result = new vhdl_const_int(0); in translate_sfunc_stime()
647 vhdl_expr *result = new vhdl_const_int(0); in translate_sfunc_simtime()
655 vhdl_expr *result = new vhdl_const_int(0); in translate_sfunc_random()
663 vhdl_expr *result = new vhdl_const_int(0); in translate_sfunc_fopen()
H A Dstmt.cc1215 ref->set_slice(new vhdl_const_int(i+base)); in check_against_x()
1225 ref->set_slice(new vhdl_const_int(i+base)); in check_against_x()
1267 ref->set_slice(new vhdl_const_int(i+base)); in process_number()
1278 ref->set_slice(new vhdl_const_int(i+base)); in process_number()
1288 ref->set_slice(new vhdl_const_int(i+base)); in process_number()
1344 ref->set_slice(new vhdl_const_int(i+base)); in process_signal()
1368 bit->set_slice(new vhdl_const_int(i+sbase)); in process_signal()
1387 ref->set_slice(new vhdl_const_int(i+base)); in process_signal()
1397 ref->set_slice(new vhdl_const_int(i+base)); in process_signal()
1407 ref->set_slice(new vhdl_const_int(i+base)); in process_signal()
[all …]
H A Dlpm.cc37 off = new vhdl_const_int(ivl_lpm_base(lpm)); in part_select_base()
75 resize->add_expr(new vhdl_const_int(out_width)); in binop_lpm_to_expr()
H A Dlogic.cc79 vhdl_expr *zero = (new vhdl_const_int(0))->cast(sel->get_type()); in bufif_logic()
H A Dvhdl_syntax.hh238 class vhdl_const_int : public vhdl_expr { class
240 explicit vhdl_const_int(int64_t value) in vhdl_const_int() function in vhdl_const_int
H A Dscope.cc357 ref->set_slice(new vhdl_const_int(pin), 0); in nexus_to_var_ref()
H A Dvhdl_syntax.cc728 void vhdl_const_int::emit(std::ostream &of, int) const in emit()