Searched refs:debug_line (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/cctools-845/ld/
H A Ddebugline.h28 PC will be relative to the file the debug_line section is in. */
41 /* Create a line_reader_data, given address and size of the debug_line section.
43 for an incorrectly large size in the debug_line section.
44 LITTLE_ENDIAN is set if the debug_line section is for a little-endian
47 struct line_reader_data * line_open (const uint8_t * debug_line,
71 /* Find the region (START->pc through END->pc) in the debug_line
74 the way around the debug_line information. It will return false if
H A Ddebugline.c190 /* Read a debug_line section. */
193 line_open (const uint8_t * debug_line, size_t debug_line_size, argument
210 lnd->cpos = debug_line;
238 if (lnd_length < header_length + (lnd->cpos - debug_line)
258 lnd->end = debug_line + header_length + (dwarf_size_64 ? 22 : 10);
318 lnd->end = debug_line + lnd_length + (dwarf_size_64 ? 12 : 4);
493 /* Find the region (START->pc through END->pc) in the debug_line
496 the way around the debug_line information. It will return false if
H A Dpass1.c6026 struct section * debug_line = NULL; local
6068 debug_line = s;
6102 if (! debug_line || stmt_list == (uint64_t) -1)
6112 subsequence describes the source files which the debug_line information
6140 if (stmt_list >= debug_line->size){
6146 lrd = line_open ((const uint8_t *) cur_obj->obj_addr + debug_line->offset
6148 debug_line->size - stmt_list, little_endian);
/macosx-10.9.5/ruby-104/ruby/
H A Daddr2line.c236 char **debug_line, line_info_t *lines)
257 p = *debug_line;
404 *debug_line = p;
409 char *debug_line, unsigned long size, line_info_t *lines)
411 char *debug_line_end = debug_line + size;
412 while (debug_line < debug_line_end) {
413 parse_debug_line_cu(num_traces, traces, &debug_line, lines);
415 if (debug_line != debug_line_end) {
416 kprintf("Unexpected size of .debug_line in %s\n",
528 if (!strcmp(section_name, ".debug_line")) {
235 parse_debug_line_cu(int num_traces, void **traces, char **debug_line, line_info_t *lines) argument
408 parse_debug_line(int num_traces, void **traces, char *debug_line, unsigned long size, line_info_t *lines) argument
[all...]

Completed in 156 milliseconds