Home
last modified time | relevance | path

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

123

/netbsd-src/usr.bin/xlint/lint1/
H A Ddecl.c969 check_bit_field_type(sym_t *dsym, type_t **inout_tp, tspec_t *inout_t) in check_bit_field_type()
1004 dsym->s_type = tp = block_dup_type(gettyp(t = INT)); in check_bit_field_type()
1013 check_bit_field(sym_t *dsym, tspec_t *inout_t, type_t **inout_tp) in check_bit_field()
1016 check_bit_field_type(dsym, inout_tp, inout_t); in check_bit_field()
1025 } else if (tp->t_bit_field_width == 0 && dsym->s_name != unnamed) { in check_bit_field()
1030 if (dsym->s_scl == UNION_MEMBER) { in check_bit_field()
1033 dsym->s_type->t_bitfield = false; in check_bit_field()
1034 dsym->s_bitfield = false;
1107 declare_member(sym_t *dsym) in declare_member()
1110 lint_assert(is_member(dsym)); in declare_member()
966 check_bit_field_type(sym_t * dsym,type_t ** inout_tp,tspec_t * inout_t) check_bit_field_type() argument
1010 check_bit_field(sym_t * dsym,tspec_t * inout_t,type_t ** inout_tp) check_bit_field() argument
1104 declare_member(sym_t * dsym) declare_member() argument
1154 set_bit_field_width(sym_t * dsym,int bit_field_width) set_bit_field_width() argument
1863 check_old_style_definition(const sym_t * rdsym,const sym_t * dsym) check_old_style_definition() argument
1910 declare_extern(sym_t * dsym,bool has_initializer,sbuf_t * renaming) declare_extern() argument
2072 check_redeclaration(sym_t * dsym,bool * dowarn) check_redeclaration() argument
2292 complete_type(sym_t * dsym,sym_t * ssym) complete_type() argument
2557 check_local_hiding(const sym_t * dsym) check_local_hiding() argument
2581 check_local_redeclaration(const sym_t * dsym,sym_t * rdsym) check_local_redeclaration() argument
2616 declare_external_in_block(sym_t * dsym) declare_external_in_block() argument
2668 declare_local(sym_t * dsym,bool has_initializer) declare_local() argument
2823 check_size(const sym_t * dsym) check_size() argument
[all...]
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddsymbolsem.d102 extern(C++) void dsymbolSemantic(Dsymbol dsym, Scope* sc) in dsymbolSemantic() argument
105 dsym.accept(v); in dsymbolSemantic()
225 override void visit(Dsymbol dsym) in visit() argument
227 dsym.error("%p has no semantic routine", dsym); in visit()
233 override void visit(AliasThis dsym) in visit() argument
235 if (dsym.semanticRun != PASS.initial) in visit()
238 if (dsym._scope) in visit()
240 sc = dsym._scope; in visit()
241 dsym._scope = null; in visit()
247 dsym.semanticRun = PASS.semantic; in visit()
[all …]
H A Dimportc.d182 void addDefaultCInitializer(VarDeclaration dsym) in addDefaultCInitializer() argument
185 if (!(dsym.storage_class & (STC.static_ | STC.gshared))) in addDefaultCInitializer()
187 …if (dsym.storage_class & (STC.extern_ | STC.field | STC.in_ | STC.foreach_ | STC.parameter | STC.r… in addDefaultCInitializer()
190 Type t = dsym.type; in addDefaultCInitializer()
193 dsym._init = new VoidInitializer(dsym.loc); in addDefaultCInitializer()
200 auto e = dsym.type.defaultInit(dsym.loc, true); in addDefaultCInitializer()
201 dsym._init = new ExpInitializer(dsym.loc, e); in addDefaultCInitializer()
H A Ddsymbol.h90 void dsymbolSemantic(Dsymbol *dsym, Scope *sc);
91 void semantic2(Dsymbol *dsym, Scope *sc);
92 void semantic3(Dsymbol *dsym, Scope* sc);
H A Ddeclaration.d1910 AggregateDeclaration dsym; variable
1912 extern (D) this(const ref Loc loc, AggregateDeclaration dsym) in this() argument
1914 super(loc, dsym.ident); in this()
1915 this.dsym = dsym; in this()
H A Dsemantic2.d76 extern(C++) void semantic2(Dsymbol dsym, Scope* sc) in semantic2() argument
79 dsym.accept(v); in semantic2()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dimports.cc130 Dsymbol *dsym = d->toAlias (); in visit() local
132 if (dsym == d) in visit()
140 dsym = ((TypeEnum *) type)->sym; in visit()
142 dsym = ((TypeStruct *) type)->sym; in visit()
144 dsym = ((TypeClass *) type)->sym; in visit()
149 if (dsym != d) in visit()
151 dsym->accept (this); in visit()
152 d->isym = dsym->isym; in visit()
H A Dd-codegen.cc65 d_decl_context (Dsymbol *dsym) in d_decl_context() argument
67 Dsymbol *parent = dsym; in d_decl_context()
68 Declaration *decl = dsym->isDeclaration (); in d_decl_context()
69 AggregateDeclaration *ad = dsym->isAggregateDeclaration (); in d_decl_context()
1818 Dsymbol *dsym = callee; in call_by_alias_p() local
1820 while (dsym) in call_by_alias_p()
1822 if (dsym->isTemplateInstance ()) in call_by_alias_p()
1824 else if (dsym->isFuncDeclaration () == caller) in call_by_alias_p()
1826 dsym = dsym->toParent (); in call_by_alias_p()
2150 Dsymbol *dsym = thisfd; in get_frame_for_symbol() local
[all …]
H A Dd-builtins.cc55 Dsymbol *dsym; member
58 : dtype(t), ctype(c), dsym(d) in builtin_data()
593 Dsymbol *dsym = builtin_converted_decls[i].dsym; in d_build_builtins_module() local
594 if (dsym != NULL && !dsym->isAnonymous ()) in d_build_builtins_module()
596 dsym->parent = m; in d_build_builtins_module()
597 members->push (dsym); in d_build_builtins_module()
H A Ddecl.cc1060 decl->csym = aggregate_initializer_decl (sd->dsym); in get_symbol_decl()
2361 build_type_decl (tree type, Dsymbol *dsym) in build_type_decl() argument
2370 const char *name = dsym->parent->isTemplateInstance () in build_type_decl()
2371 ? ((TemplateInstance *) dsym->parent)->toChars () : dsym->ident->toChars (); in build_type_decl()
2373 tree decl = build_decl (make_location_t (dsym->loc), TYPE_DECL, in build_type_decl()
2375 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (d_mangle_decl (dsym))); in build_type_decl()
2378 DECL_CONTEXT (decl) = d_decl_context (dsym); in build_type_decl()
H A Dtoir.cc1474 Dsymbol *dsym = (*s->imports)[i]; in visit() local
1476 if (dsym != NULL) in visit()
1477 build_decl_tree (dsym); in visit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dimports.cc147 Dsymbol *dsym = d->toAlias (); in visit() local
149 if (dsym == d) in visit()
157 dsym = type->isTypeEnum ()->sym; in visit()
159 dsym = type->isTypeStruct ()->sym; in visit()
161 dsym = type->isTypeClass ()->sym; in visit()
166 if (dsym != d) in visit()
167 dsym->accept (this); in visit()
H A Dd-codegen.cc66 d_decl_context (Dsymbol *dsym) in d_decl_context() argument
68 Dsymbol *parent = dsym; in d_decl_context()
69 Declaration *decl = dsym->isDeclaration (); in d_decl_context()
70 AggregateDeclaration *ad = dsym->isAggregateDeclaration (); in d_decl_context()
2107 Dsymbol *dsym = callee; in call_by_alias_p() local
2109 while (dsym) in call_by_alias_p()
2111 if (dsym->isTemplateInstance ()) in call_by_alias_p()
2113 else if (dsym->isFuncDeclaration () == caller) in call_by_alias_p()
2115 dsym = dsym->toParent (); in call_by_alias_p()
2453 Dsymbol *dsym = thisfd; in get_frame_for_symbol() local
[all …]
H A Dd-builtins.cc57 Dsymbol *dsym; member
60 : dtype(t), ctype(c), dsym(d) in builtin_data()
612 Dsymbol *dsym = builtin_converted_decls[i].dsym; in d_build_builtins_module() local
613 if (dsym != NULL && !dsym->isAnonymous ()) in d_build_builtins_module()
615 dsym->parent = m; in d_build_builtins_module()
616 members->push (dsym); in d_build_builtins_module()
H A Ddecl.cc1190 decl->csym = aggregate_initializer_decl (sd->dsym); in get_symbol_decl()
2460 build_type_decl (tree type, Dsymbol *dsym) in build_type_decl() argument
2467 const char *name = dsym->parent->isTemplateInstance () in build_type_decl()
2468 ? ((TemplateInstance *) dsym->parent)->toChars () : dsym->ident->toChars (); in build_type_decl()
2470 tree decl = build_decl (make_location_t (dsym->loc), TYPE_DECL, in build_type_decl()
2472 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (d_mangle_decl (dsym))); in build_type_decl()
2474 DECL_CONTEXT (decl) = d_decl_context (dsym); in build_type_decl()
H A Dtoir.cc1487 Dsymbol *dsym = (*s->imports)[i]; in visit() local
1489 if (dsym != NULL) in visit()
1490 build_decl_tree (dsym); in visit()
/netbsd-src/external/gpl3/gcc/dist/libbacktrace/
H A Dmacho.c875 char *dsym; in macho_add_dsym() local
883 dsym = NULL; in macho_add_dsym()
917 dsym = backtrace_alloc (state, dsymlen, error_callback, data); in macho_add_dsym()
918 if (dsym == NULL) in macho_add_dsym()
921 ps = dsym; in macho_add_dsym()
939 d = backtrace_open (dsym, error_callback, data, &does_not_exist); in macho_add_dsym()
944 backtrace_free (state, dsym, dsymlen, error_callback, data); in macho_add_dsym()
948 if (!macho_add (state, dsym, d, 0, uuid, base_address, 1, in macho_add_dsym()
952 backtrace_free (state, dsym, dsymlen, error_callback, data); in macho_add_dsym()
957 if (dsym != NULL) in macho_add_dsym()
[all …]
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cxxcom/
H A Dpftn.c151 union dimfun *dsym, *ddef; in defid() local
225 dsym = p->sdf; in defid()
230 if (dsym->ddim == NOOFFSET) { in defid()
231 dsym->ddim = ddef->ddim; in defid()
234 dsym->ddim!=ddef->ddim) { in defid()
237 ++dsym; in defid()
241 if (cftnsp == NULL && dsym->dfun == NULL) in defid()
242 dsym->dfun = ddef->dfun; in defid()
244 chkftn(dsym->dfun, ddef->dfun)) in defid()
246 dsym++, ddef++; in defid()
[all …]
/netbsd-src/external/bsd/pcc/dist/pcc/cc/ccom/
H A Dpftn.c178 union dimfun *dsym, *ddef; in defid2() local
256 dsym = p->sdf; in defid2()
261 if (dsym->ddim == NOOFFSET) { in defid2()
262 dsym->ddim = ddef->ddim; in defid2()
265 dsym->ddim!=ddef->ddim) { in defid2()
268 ++dsym; in defid2()
272 if (!oldstyle && dsym->dfun == NULL) in defid2()
273 dsym->dfun = ddef->dfun; in defid2()
275 chkftn(dsym->dfun, ddef->dfun)) in defid2()
277 dsym++, ddef++; in defid2()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dsymbol.cc2208 gfc_copy_dummy_sym (gfc_symbol **dsym, gfc_symbol *sym, int result) in gfc_copy_dummy_sym() argument
2212 rc = gfc_get_symbol (sym->name, NULL, dsym); in gfc_copy_dummy_sym()
2216 if (!gfc_add_type (*dsym, &(sym->ts), &gfc_current_locus)) in gfc_copy_dummy_sym()
2219 if (!gfc_copy_attr (&(*dsym)->attr, &(sym->attr), in gfc_copy_dummy_sym()
2223 if ((*dsym)->attr.dimension) in gfc_copy_dummy_sym()
2224 (*dsym)->as = gfc_copy_array_spec (sym->as); in gfc_copy_dummy_sym()
2226 (*dsym)->attr.class_ok = sym->attr.class_ok; in gfc_copy_dummy_sym()
2228 if ((*dsym) != NULL && !result in gfc_copy_dummy_sym()
2229 && (!gfc_add_dummy(&(*dsym)->attr, (*dsym)->name, NULL) in gfc_copy_dummy_sym()
2230 || !gfc_missing_attr (&(*dsym)->attr, NULL))) in gfc_copy_dummy_sym()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dsymbol.c2201 gfc_copy_dummy_sym (gfc_symbol **dsym, gfc_symbol *sym, int result) in gfc_copy_dummy_sym() argument
2205 rc = gfc_get_symbol (sym->name, NULL, dsym); in gfc_copy_dummy_sym()
2209 if (!gfc_add_type (*dsym, &(sym->ts), &gfc_current_locus)) in gfc_copy_dummy_sym()
2212 if (!gfc_copy_attr (&(*dsym)->attr, &(sym->attr), in gfc_copy_dummy_sym()
2216 if ((*dsym)->attr.dimension) in gfc_copy_dummy_sym()
2217 (*dsym)->as = gfc_copy_array_spec (sym->as); in gfc_copy_dummy_sym()
2219 (*dsym)->attr.class_ok = sym->attr.class_ok; in gfc_copy_dummy_sym()
2221 if ((*dsym) != NULL && !result in gfc_copy_dummy_sym()
2222 && (!gfc_add_dummy(&(*dsym)->attr, (*dsym)->name, NULL) in gfc_copy_dummy_sym()
2223 || !gfc_missing_attr (&(*dsym)->attr, NULL))) in gfc_copy_dummy_sym()
[all …]
/netbsd-src/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_link.c1225 GElf_Sym rsym, fsym, dsym; in process_obj() local
1603 dsym = fsym; in process_obj()
1604 dsym.st_name = istr; in process_obj()
1605 dsym.st_info = GELF_ST_INFO(bind, STT_FUNC); in process_obj()
1606 dsym.st_other = GELF_ST_VISIBILITY(STV_HIDDEN); in process_obj()
1607 (void) gelf_update_sym(data_sym, isym, &dsym); in process_obj()
/netbsd-src/external/zlib/pigz/dist/zopfli/
H A Dsqueeze.c148 int dsym = ZopfliGetDistSymbol(dist); in GetCostStat() local
150 return stats->ll_symbols[lsym] + lbits + stats->d_symbols[dsym] + dbits; in GetCostStat()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DObjdumpOpts.td238 def dsym_EQ : Joined<["--"], "dsym=">,
241 def : Separate<["--"], "dsym">,
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/
H A DOpts.td34 : Eq<"dsym-hint",

123