Home
last modified time | relevance | path

Searched refs:pIIR_TextLiteral (Results 1 – 25 of 25) sorted by relevance

/dports/cad/freehdl/freehdl-0.0.7/freehdl/
H A Dvaul-chunk.h348 pIIR_TextLiteral desig;
370 pIIR_TextLiteral id;
372 VAUL_SimpleName (pIIR_PosInfo pos, pIIR_TextLiteral id) in VAUL_SimpleName()
382 pIIR_TextLiteral suffix;
922 pIIR_TextLiteral id;
1208 …IR_ArchitectureRef (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_EntityDeclaration entity,
1209 …Ref mIIR_ArchitectureRef (int lineno, pIIR_TextLiteral declarator, pIIR_EntityDeclaration entity,
1412 pIIR_TextLiteral mIIR_TextLiteral (pIIR_PosInfo pos, IR_String text);
1413 pIIR_TextLiteral mIIR_TextLiteral (int lineno, IR_String text);
1520 pVAUL_SimpleName mVAUL_SimpleName (int lineno, pIIR_TextLiteral id);
[all …]
H A Dvaul-types.h20 void add(pIIR_TextLiteral);
21 void remove(pIIR_TextLiteral);
24 bool contains(pIIR_TextLiteral);
25 bool is_last(pIIR_TextLiteral);
28 pIIR_TextLiteral *ids;
H A Dvaul-lexer.h44 bool vaul_name_eq(pIIR_TextLiteral i1, pIIR_TextLiteral i2);
45 bool vaul_name_eq(pIIR_TextLiteral i1, const char *n2);
46 bool vaul_name_eq(const char *n1, pIIR_TextLiteral i2);
H A Dvaul-parser.h262 char *id_to_chars (pIIR_TextLiteral id);
279 pIIR_TextLiteral = NULL);
289 pIIR_TextLiteral);
297 pIIR_Declaration find_single_decl (pIIR_TextLiteral,
301 void find_decls (vaul_decl_set &, pIIR_TextLiteral, pIIR_Declaration,
306 void start_decl (pIIR_TextLiteral id);
352 void add_PredefOp(pIIR_PosInfo pos, pIIR_Type ret, pIIR_TextLiteral,
538 pIIR_TextLiteral arch);
606 void invalidate_decl_cache (pIIR_TextLiteral id);
607 bool find_in_decl_cache (vaul_decl_set &dset, pIIR_TextLiteral id,
[all …]
H A Dfire-chunk.h52 typedef IIR_TextLiteral *pIIR_TextLiteral; typedef
1730 pIIR_TextLiteral declarator;
1735 …IIR_Declaration (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_DeclarativeRegion declarative… in IIR_Declaration()
1854 …IIR_TypeDeclaration (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_DeclarativeRegion declara… in IIR_TypeDeclaration()
1864 …IIR_SubtypeDeclaration (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_DeclarativeRegion decl… in IIR_SubtypeDeclaration()
2026 pIIR_TextLiteral library_name;
2029pIIR_TextLiteral declarator, pIIR_DeclarativeRegion declarative_region, pIIR_AttributeValueList at… in IIR_LibraryUnit()
2072 pIIR_TextLiteral architecture_name;
2074pIIR_TextLiteral declarator, pIIR_DeclarativeRegion declarative_region, pIIR_AttributeValueList at… in IIR_ArchitectureRef()
2085pIIR_TextLiteral declarator, pIIR_DeclarativeRegion declarative_region, pIIR_AttributeValueList at… in IIR_PackageDeclaration()
[all …]
/dports/cad/freehdl/freehdl-0.0.7/vaul/
H A Dvaul-chunk.cc2539 …IR_ArchitectureRef (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_EntityDeclaration entity, in mIIR_ArchitectureRef()
2545 …or::mIIR_ArchitectureRef (int lineno, pIIR_TextLiteral declarator, pIIR_EntityDeclaration entity, in mIIR_ArchitectureRef()
3793 pIIR_TextLiteral vaul_node_creator::mIIR_TextLiteral (pIIR_PosInfo pos, IR_String text) in mIIR_TextLiteral()
3795 pIIR_TextLiteral n = new (&hist) IIR_TextLiteral (pos, text); in mIIR_TextLiteral()
3799 pIIR_TextLiteral vaul_node_creator::mIIR_TextLiteral (int lineno, IR_String text) in mIIR_TextLiteral()
3801 pIIR_TextLiteral n = new (&hist) IIR_TextLiteral (make_posinfo(lineno), text); in mIIR_TextLiteral()
3807 pIIR_TextLiteral n = new (&hist) IIR_TextLiteral (pos, IR_String(str, len)); in mIIR_TextLiteral()
3811 pIIR_TextLiteral vaul_node_creator::mIIR_TextLiteral (int lineno, IR_Character *str, int len) in mIIR_TextLiteral()
4381 pVAUL_TopScope vaul_node_creator::mVAUL_TopScope (int lineno, pIIR_TextLiteral declarator) in mVAUL_TopScope()
4447 pVAUL_SimpleName vaul_node_creator::mVAUL_SimpleName (pIIR_PosInfo pos, pIIR_TextLiteral id) in mVAUL_SimpleName()
[all …]
H A Dtree.cc55 vaul_id_set::add (pIIR_TextLiteral id) in add()
63 ids = (pIIR_TextLiteral *)vaul_xrealloc (ids, in add()
64 (n_ids+1)*sizeof(pIIR_TextLiteral *)); in add()
69 vaul_id_set::remove (pIIR_TextLiteral id) in remove()
77 vaul_id_set::contains (pIIR_TextLiteral id) in contains()
86 vaul_id_set::is_last (pIIR_TextLiteral id) in is_last()
H A Ddecls.cc60 psr::id_to_chars (pIIR_TextLiteral id) in id_to_chars()
191 pIIR_TextLiteral id = vaul_name_eq(sn->suffix, "all")? NULL : sn->suffix; in use()
554 pIIR_TextLiteral id) in add_decl()
746 pIIR_TextLiteral name) in add_type_decl()
765 psr::start_decl (pIIR_TextLiteral id) in start_decl()
1125 psr::invalidate_decl_cache (pIIR_TextLiteral id) in invalidate_decl_cache()
1137 psr::find_in_decl_cache (vaul_decl_set &dset, pIIR_TextLiteral id, in find_in_decl_cache()
1168 psr::add_to_decl_cache (vaul_decl_set &dset, pIIR_TextLiteral id, in add_to_decl_cache()
1182 psr::find_decls (vaul_decl_set &ds, pIIR_TextLiteral id, in find_decls()
1243 pIIR_TextLiteral id = pVAUL_SimpleName(n)->id; in find_decls()
H A Dlexer.ll460 vaul_name_eq (pIIR_TextLiteral i1, pIIR_TextLiteral i2)
480 vaul_name_eq (pIIR_TextLiteral i1, const char *n2)
498 vaul_name_eq (const char *n1, pIIR_TextLiteral i2)
H A Dsubprogs.cc55 psr::build_Interface (pIIR_TextLiteral declarator, in build_Interface()
H A Dlexer.cc2158 vaul_name_eq (pIIR_TextLiteral i1, pIIR_TextLiteral i2) in vaul_name_eq()
2178 vaul_name_eq (pIIR_TextLiteral i1, const char *n2) in vaul_name_eq()
2196 vaul_name_eq (const char *n1, pIIR_TextLiteral i2) in vaul_name_eq()
H A Dvaulgens-chunk.cc3094 …(vaulgens_generic_13_mtype) ((void (*)(pIIR_TextLiteral, std::ostream& o))&m_vaul_print_to_ostream…
3095 …(vaulgens_generic_13_mtype) ((void (*)(pIIR_TextLiteral, std::ostream& o))&m_vaul_print_to_ostream…
3096 …(vaulgens_generic_13_mtype) ((void (*)(pIIR_TextLiteral, std::ostream& o))&m_vaul_print_to_ostream…
3097 …(vaulgens_generic_13_mtype) ((void (*)(pIIR_TextLiteral, std::ostream& o))&m_vaul_print_to_ostream…
H A Dvaulgens-chunk.h202 void m_vaul_print_to_ostream (pIIR_TextLiteral , std::ostream& o);
H A Dblocks.cc410 pIIR_TextLiteral arch) in get_architecture()
H A Dexpr.cc400 pIIR_TextLiteral suffix = pVAUL_SelName(n)->suffix; in build_Expr_or_Attr()
616 find_interface_by_id (pIIR_InterfaceList list, pIIR_TextLiteral id) in find_interface_by_id()
1192 pIIR_TextLiteral sfx = pVAUL_SelName(formal)->suffix; in add_partial_choice()
H A Dtypes.cc488 pIIR_TextLiteral sym, pIIR_Type left, in add_PredefOp()
/dports/cad/freehdl/freehdl-0.0.7/doc/
H A Dfireref.texi740 @item @tab @t{pIIR_TextLiteral declarator}
759 @item @tab @t{pIIR_TextLiteral declarator}
779 @item @tab @t{pIIR_TextLiteral declarator}
797 @item @tab @t{pIIR_TextLiteral declarator}
815 @item @tab @t{pIIR_TextLiteral declarator}
835 @item @tab @t{pIIR_TextLiteral declarator}
856 @item @tab @t{pIIR_TextLiteral declarator}
875 @item @tab @t{pIIR_TextLiteral declarator}
901 @item @tab @t{pIIR_TextLiteral declarator}
2120 @item @tab @t{pIIR_TextLiteral declarator}
[all …]
H A Dfire.info2019 pIIR_TextLiteral declarator
2036 pIIR_TextLiteral declarator
2055 pIIR_TextLiteral declarator
2071 pIIR_TextLiteral declarator
2086 pIIR_TextLiteral declarator
2103 pIIR_TextLiteral declarator
2121 pIIR_TextLiteral declarator
2137 pIIR_TextLiteral declarator
2161 pIIR_TextLiteral declarator
3144 pIIR_TextLiteral declarator
[all …]
/dports/cad/freehdl/freehdl-0.0.7/v2cc/
H A Dv2cc-util.h145 pIIR_TextLiteral
162 emit_id(pIIR_TextLiteral idnode, string &str, RegionStack &rstack);
H A Dv2cc-chunk.h72 …V2CC_InternalObjectDeclaration (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_DeclarativeReg… in V2CC_InternalObjectDeclaration()
84 …V2CC_ImplicitSignalDeclaration (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_DeclarativeReg… in V2CC_ImplicitSignalDeclaration()
93 …V2CC_ImplicitSignalDeclaration_WaitFor (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_Declar… in V2CC_ImplicitSignalDeclaration_WaitFor()
102 …V2CC_ImplicitSignalDeclaration_Transaction (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_De… in V2CC_ImplicitSignalDeclaration_Transaction()
114 …V2CC_InternalCode (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_DeclarativeRegion declarati… in V2CC_InternalCode()
126 …V2CC_ImplicitSubtypeDeclaration (pIIR_PosInfo pos, pIIR_TextLiteral declarator, pIIR_DeclarativeRe… in V2CC_ImplicitSubtypeDeclaration()
H A Dv2cc-cdfg-expr.cc238 str += pIIR_TextLiteral(l)->text.to_chars(); in cdfg_emit_lit()
H A Dv2cc-util.cc148 pIIR_TextLiteral
971 emit_id(pIIR_TextLiteral idnode, string &str, RegionStack &rstack) in emit_id()
H A Dv2cc-expr.cc563 str += pIIR_TextLiteral(l)->text.to_chars(); in emit_lit()
H A Dv2cc-explore.cc103 pIIR_TextLiteral new_subtype_name = to_TextLiteral("_t" + to_string(get_unique_int_id())); in build_extended_declaration_list()
4348 char *literal = pIIR_TextLiteral(ale->value)->text.to_chars(); in m_check_expression()
/dports/cad/freehdl/freehdl-0.0.7/examples/v2c/
H A Dv2c.cc435 emit_id (pIIR_TextLiteral idnode) in emit_id()
1475 printf ("%s", pIIR_TextLiteral(l)->text.to_chars()); in emit_lit()