Searched refs:die (Results 76 - 100 of 178) sorted by relevance

12345678

/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_attr.c33 _dwarf_attr_alloc(Dwarf_Die die, Dwarf_Attribute *atp, Dwarf_Error *error) argument
37 assert(die != NULL);
41 DWARF_SET_ERROR(die->die_dbg, error, DW_DLE_MEMORY);
51 _dwarf_attr_add(Dwarf_Die die, Dwarf_Attribute atref, Dwarf_Attribute *atp, argument
57 if ((ret = _dwarf_attr_alloc(die, &at, error)) != DW_DLE_NONE)
62 STAILQ_INSERT_TAIL(&die->die_attr, at, at_next);
68 die->die_name = at->u[1].s;
71 die->die_name = at->u[0].s;
85 _dwarf_attr_find(Dwarf_Die die, Dwarf_Half attr) argument
89 STAILQ_FOREACH(at, &die
98 _dwarf_attr_init(Dwarf_Debug dbg, Dwarf_Section *ds, uint64_t *offsetp, int dwarf_size, Dwarf_CU cu, Dwarf_Die die, Dwarf_AttrDef ad, uint64_t form, int indirect, Dwarf_Error *error) argument
373 _dwarf_add_AT_dataref(Dwarf_P_Debug dbg, Dwarf_P_Die die, Dwarf_Half attr, Dwarf_Unsigned pc_value, Dwarf_Unsigned sym_index, const char *secname, Dwarf_P_Attribute *atp, Dwarf_Error *error) argument
404 _dwarf_add_string_attr(Dwarf_P_Die die, Dwarf_P_Attribute *atp, Dwarf_Half attr, char *string, Dwarf_Error *error) argument
441 _dwarf_attr_gen(Dwarf_P_Debug dbg, Dwarf_P_Section ds, Dwarf_Rel_Section drs, Dwarf_CU cu, Dwarf_Die die, int pass2, Dwarf_Error *error) argument
[all...]
H A Ddwarf_ranges.c75 dwarf_get_ranges_a(Dwarf_Debug dbg, Dwarf_Off offset, Dwarf_Die die, argument
80 if (dbg == NULL || die == NULL || ranges == NULL || ret_cnt == NULL) {
85 return (_dwarf_get_ranges(dbg, die->die_cu, offset, ranges, ret_cnt,
H A Ddwarf_pro_frame.c96 dwarf_add_frame_fde(Dwarf_P_Debug dbg, Dwarf_P_Fde fde, Dwarf_P_Die die, argument
101 return (dwarf_add_frame_fde_b(dbg, fde, die, cie, virt_addr, code_len,
106 dwarf_add_frame_fde_b(Dwarf_P_Debug dbg, Dwarf_P_Fde fde, Dwarf_P_Die die, argument
119 (void) die;
/freebsd-11-stable/tools/boot/
H A Dinstall-boot.sh13 die() { function
36 die "No freebsd-boot partition found"
48 die "No freebsd-boot partition found"
61 die "No freebsd-zfs slice found"
81 die "No freebsd-ufs slice found"
/freebsd-11-stable/contrib/elftoolchain/addr2line/
H A Daddr2line.c67 Dwarf_Die die; member in struct:CU
149 handle_high_pc(Dwarf_Die die, Dwarf_Unsigned lopc, Dwarf_Unsigned *hipc) argument
156 ret = dwarf_attr(die, DW_AT_high_pc, &at, &de);
218 collect_func(Dwarf_Debug dbg, Dwarf_Die die, struct Func *parent, struct CU *cu) argument
235 if (dwarf_tag(die, &tag, &de)) {
249 if (dwarf_attrval_unsigned(die, DW_AT_ranges, &ranges_off,
263 if (dwarf_attrval_unsigned(die, DW_AT_low_pc, &lopc, &de) ||
264 dwarf_attrval_unsigned(die, DW_AT_high_pc, &hipc, &de))
266 if (handle_high_pc(die, lopc, &hipc) != DW_DLV_OK)
274 if (dwarf_attrval_string(die, DW_AT_nam
421 check_range(Dwarf_Debug dbg, Dwarf_Die die, Dwarf_Unsigned addr, struct CU **cu) argument
515 Dwarf_Die die, ret_die; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp117 for (const DWARFDebugInfoEntry &die : unit.dies()) {
118 const dw_tag_t tag = die.Tag();
152 const size_t num_attributes = die.GetAttributes(&unit, attributes);
194 const DWARFDebugInfoEntry *parent_die = die.GetParent();
246 DIERef ref = *DWARFDIE(&unit, &die).GetDIERef();
279 bool is_method = DWARFDIE(&unit, &die).IsMethod();
406 DWARFDIE die = dwarf.GetDIE(die_ref); local
407 if (!die)
409 if (SymbolFileDWARF::DIEInDeclContext(&parent_decl_ctx, die))
410 dies.push_back(die);
417 DWARFDIE die = dwarf.GetDIE(die_ref); local
[all...]
H A DSymbolFileDWARF.h144 lldb_private::Type *ResolveType(const DWARFDIE &die,
238 GetDeclContextDIEContainingDIE(const DWARFDIE &die);
253 static DWARFDIE GetParentSymbolContextDIE(const DWARFDIE &die);
271 lldb::user_id_t GetUID(const DWARFBaseDIE &die) { argument
272 return GetUID(die.GetDIERef());
297 const DWARFDIE &die);
349 bool GetFunction(const DWARFDIE &die, lldb_private::SymbolContext &sc);
352 const DWARFDIE &die);
356 const DWARFDIE &die,
359 size_t ParseTypes(const lldb_private::SymbolContext &sc, const DWARFDIE &die,
[all...]
H A DDWARFUnit.cpp157 DWARFDebugInfoEntry die; local
167 while (offset < next_cu_offset && die.Extract(data, this, &offset)) {
168 const bool null_die = die.IsNULL();
181 m_die_array.push_back(die);
207 die.SetParentIndex(m_die_array.size() - die_index_stack[depth - 1]);
214 m_die_array.push_back(die);
229 const bool die_has_children = die.HasChildren();
524 static bool CompareDIEOffset(const DWARFDebugInfoEntry &die, argument
526 return die.GetOffset() < die_offset;
604 const DWARFDebugInfoEntry *die local
678 const DWARFDebugInfoEntry *die = GetUnitDIEPtrOnly(); local
687 const DWARFDebugInfoEntry *die = GetUnitDIEPtrOnly(); local
762 const DWARFDebugInfoEntry *die = GetUnitDIEPtrOnly(); local
784 const DWARFDebugInfoEntry *die = GetUnitDIEPtrOnly(); local
804 const DWARFDebugInfoEntry *die = DIEPtr(); local
[all...]
/freebsd-11-stable/contrib/ntp/scripts/deprecated/
H A Dfreq_adj.in3 die "perl5 needed\n" unless ($] > 5);
11 #die "Found $ncpu CPUs; can only be run on systems with 1 CPU.\n" if ($ncpu > 1);
56 open(DF, $driftfile) || die "Can't open driftfile ($driftfile): $!\n";
62 die "Bogus value in driftfile $driftfile: <$_>\n";
/freebsd-11-stable/tools/tools/commitsdb/
H A Dquery_commit_db21 open DB, "< $dbname" or die "$!\n";
43 die "Can't find $file rev $revision in database\n";
49 open DB, "< $dbname" or die "$!\n";
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cpc/
H A Dtst.platformevent.ksh44 or die "Couldn't run cpustat: \$!\n";
/freebsd-11-stable/tools/tools/nanobsd/
H A Dmtree-dedup.awk59 function die(str) function
138 die("bad path in : " new);
148 die("bad path in : " new);
159 die("bad path in : " new);
/freebsd-11-stable/contrib/gcc/
H A Ddwarf2out.c2742 dw_die_ref die;
3753 #define FOR_EACH_CHILD(die, c, expr) do { \
3754 c = die->die_child; \
3758 } while (c != die->die_child); \
3765 dw_die_ref die;
3778 /* The limbo die list structure. */
3781 dw_die_ref die;
4899 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
4902 if (die == NULL)
4905 if (die
2740 dw_die_ref die; member in struct:dw_val_struct_union::dw_val_die_union
3761 dw_die_ref die; local
3777 dw_die_ref die; local
4892 add_dwarf_attr(dw_die_ref die, dw_attr_ref attr) argument
4912 add_AT_flag(dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag) argument
4932 add_AT_int(dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val) argument
4952 add_AT_unsigned(dw_die_ref die, enum dwarf_attribute attr_kind, unsigned HOST_WIDE_INT unsigned_val) argument
4973 add_AT_long_long(dw_die_ref die, enum dwarf_attribute attr_kind, long unsigned int val_hi, long unsigned int val_low) argument
4988 add_AT_vec(dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int length, unsigned int elt_size, unsigned char *array) argument
5019 add_AT_string(dw_die_ref die, enum dwarf_attribute attr_kind, const char *str) argument
5090 add_AT_die_ref(dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die) argument
5105 add_AT_specification(dw_die_ref die, dw_die_ref targ_die) argument
5138 add_AT_fde_ref(dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde) argument
5151 add_AT_loc(dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc) argument
5169 add_AT_loc_list(dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list) argument
5190 add_AT_addr(dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr) argument
5212 add_AT_file(dw_die_ref die, enum dwarf_attribute attr_kind, struct dwarf_file_data *fd) argument
5235 add_AT_lbl_id(dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id) argument
5249 add_AT_lineptr(dw_die_ref die, enum dwarf_attribute attr_kind, const char *label) argument
5264 add_AT_macptr(dw_die_ref die, enum dwarf_attribute attr_kind, const char *label) argument
5278 add_AT_offset(dw_die_ref die, enum dwarf_attribute attr_kind, unsigned HOST_WIDE_INT offset) argument
5292 add_AT_range_list(dw_die_ref die, enum dwarf_attribute attr_kind, long unsigned int offset) argument
5315 get_AT(dw_die_ref die, enum dwarf_attribute attr_kind) argument
5342 get_AT_low_pc(dw_die_ref die) argument
5354 get_AT_hi_pc(dw_die_ref die) argument
5365 get_AT_string(dw_die_ref die, enum dwarf_attribute attr_kind) argument
5376 get_AT_flag(dw_die_ref die, enum dwarf_attribute attr_kind) argument
5387 get_AT_unsigned(dw_die_ref die, enum dwarf_attribute attr_kind) argument
5395 get_AT_ref(dw_die_ref die, enum dwarf_attribute attr_kind) argument
5403 get_AT_file(dw_die_ref die, enum dwarf_attribute attr_kind) argument
5467 remove_AT(dw_die_ref die, enum dwarf_attribute attr_kind) argument
5512 remove_child_TAG(dw_die_ref die, enum dwarf_tag tag) argument
5534 add_child_die(dw_die_ref die, dw_die_ref child_die) argument
5590 dw_die_ref die = ggc_alloc_cleared (sizeof (die_node)); local
5744 print_die(dw_die_ref die, FILE *outfile) argument
5864 debug_dwarf_die(dw_die_ref die) argument
5992 die_checksum(dw_die_ref die, struct md5_ctx *ctx, int *mark) argument
6222 is_type_die(dw_die_ref die) argument
6303 assign_symbol_names(dw_die_ref die) argument
6417 break_out_includes(dw_die_ref die) argument
6483 add_sibling_attributes(dw_die_ref die) argument
6499 output_location_lists(dw_die_ref die) argument
6518 build_abbrev_table(dw_die_ref die) argument
6610 size_of_die(dw_die_ref die) argument
6697 calc_die_sizes(dw_die_ref die) argument
6717 mark_dies(dw_die_ref die) argument
6730 unmark_dies(dw_die_ref die) argument
6743 unmark_all_dies(dw_die_ref die) argument
6936 output_die_symbol(dw_die_ref die) argument
7061 output_die(dw_die_ref die) argument
7282 output_comp_unit(dw_die_ref die, int output_if_empty) argument
7341 add_pubname(tree decl, dw_die_ref die) argument
7356 add_pubtype(tree decl, dw_die_ref die) argument
7440 add_arange(tree decl, dw_die_ref die) argument
7504 dw_die_ref die = arange_table[i]; local
9743 add_AT_location_description(dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref descr) argument
9770 add_data_member_location_attribute(dw_die_ref die, tree decl) argument
9902 add_const_value_attribute(dw_die_ref die, rtx rtl) argument
10409 add_location_or_const_value_attribute(dw_die_ref die, tree decl, enum dwarf_attribute attr) argument
10662 add_name_attribute(dw_die_ref die, const char *name_string) argument
10676 add_comp_dir_attribute(dw_die_ref die) argument
10838 add_byte_size_attribute(dw_die_ref die, tree tree_node) argument
10888 add_bit_offset_attribute(dw_die_ref die, tree decl) argument
10935 add_bit_size_attribute(dw_die_ref die, tree decl) argument
10949 add_prototyped_attribute(dw_die_ref die, tree func_type) argument
10961 add_abstract_origin_attribute(dw_die_ref die, tree origin) argument
11004 add_pure_or_virtual_attribute(dw_die_ref die, tree func_decl) argument
11026 add_src_coords_attributes(dw_die_ref die, tree decl) argument
11038 add_name_and_src_coords_attributes(dw_die_ref die, tree decl) argument
11725 dw_die_ref die; local
12217 add_call_src_coords_attributes(tree stmt, dw_die_ref die) argument
12229 add_high_low_attributes(tree stmt, dw_die_ref die) argument
12405 dw_die_ref die; local
12463 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo); local
13016 dw_die_ref die; local
14118 verify_marks_clear(dw_die_ref die) argument
14131 prune_unmark_dies(dw_die_ref die) argument
14144 prune_unused_types_walk_attribs(dw_die_ref die) argument
14169 prune_unused_types_mark(dw_die_ref die, int dokids) argument
14211 prune_unused_types_walk(dw_die_ref die) argument
14263 prune_unused_types_update_strings(dw_die_ref die) argument
14291 prune_unused_types_prune(dw_die_ref die) argument
14389 dw_die_ref die = 0; local
[all...]
/freebsd-11-stable/contrib/dtc/
H A Dfstree.c35 die("Couldn't opendir() \"%s\": %s\n", dirname, strerror(errno));
49 die("stat(%s): %s\n", tmpname, strerror(errno));
H A Dflattree.c385 die("Unknown device tree blob version %d\n", version);
443 die("Error writing device tree blob: %s\n",
446 die("Short write on device tree blob\n");
483 die("Unknown device tree blob version %d\n", version);
603 die("Premature end of data parsing flat device tree\n");
627 die("Premature end of data parsing flat device tree\n");
638 die("Premature end of data parsing flat device tree\n");
675 die("String offset %d overruns string table\n",
742 die("Path \"%s\" is not valid as a child of \"%s\"\n",
792 die("Prematur
[all...]
H A Ddtc.c218 die("Invalid argument \"%d\" to -a option\n",
243 die("Invalid argument \"%s\" to -H option\n",
282 die("Can't set both -p and -S\n");
287 die("Couldn't open dependency file %s: %s\n", depname,
310 die("Unknown input format \"%s\"\n", inform);
349 die("Couldn't open output file %s: %s\n",
362 die("Unknown output format \"%s\"\n", outform);
/freebsd-11-stable/usr.bin/systat/
H A Dmain.c188 signal(SIGHUP, die);
189 signal(SIGINT, die);
190 signal(SIGQUIT, die);
191 signal(SIGTERM, die);
204 die(0);
209 die(0);
216 die(0);
319 die(int signo __unused) function
/freebsd-11-stable/tools/regression/iscsi/
H A Discsi-test.sh88 die() { function
112 die "unsupported system"
118 $@ || die "$@ failed"
208 die "unsupported system"
214 [ ! -e LUN0 ] || die "$LUN0 already exists"
215 [ ! -e LUN1 ] || die "$LUN1 already exists"
216 [ ! -e LUN2 ] || die "$LUN2 already exists"
217 [ ! -e LUN3 ] || die "$LUN3 already exists"
241 [ -e $LUN0 ] || die "$LUN0 doesn't exist"
242 [ -e $LUN1 ] || die "
[all...]
/freebsd-11-stable/sys/tools/
H A Dvnode_if.awk48 function die(msg, what) function
199 die("Invalid %s construction", "%%");
211 die("Invalid %s construction", "%!");
227 die("Unable to read through the arguments for \"%s\"",
244 die("No IN/OUT direction for \"%s\".", $0);
255 die("Missing end-of-line ; in \"%s\".", $0);
259 die("Missing var name \"a_foo\" in \"%s\".", $0);
/freebsd-11-stable/contrib/diff/lib/
H A Dc-stack.c117 static void die (int) __attribute__ ((noreturn));
119 die (int signo) function
209 die (signo);
261 return signal (SIGSEGV, die) == SIG_ERR ? -1 : 0;
/freebsd-11-stable/contrib/ipfilter/
H A Dmkfilters6 &irix_mkfilters || regular_mkfilters || die $!;
10 &regular_mkfilters || irix_mkfilters || die $!;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/mdb/tools/common/
H A Ddie.c39 die(char *format, ...) function
/freebsd-11-stable/contrib/amd/scripts/
H A Damd2ldif.in17 my $mapname = $ARGV[0] or die $usage;
18 my $base = $ARGV[1] or die $usage;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dinternal_defs.h69 void NORETURN die();
75 die(); \
91 scudo::die(); \
121 // The superfluous die() call effectively makes this macro NORETURN.
125 die(); \
/freebsd-11-stable/contrib/llvm-project/lld/tools/lld/
H A Dlld.cpp53 LLVM_ATTRIBUTE_NORETURN static void die(const Twine &s) { function
121 die("missing arg value for '-flavor'");
124 die("Unknown flavor: " + StringRef(v[2]));
165 die("lld is a generic driver.\n"

Completed in 363 milliseconds

12345678