Searched refs:file_idx (Results 1 - 11 of 11) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
H A DFileLineResolver.cpp56 uint32_t file_idx = cu->GetSupportFiles().FindFileIndex(start_file_idx, m_file_spec, false); local
57 if (file_idx != UINT32_MAX)
66 while (file_idx != UINT32_MAX)
68 line_table->FineLineEntriesForFileIndex (file_idx, append, m_sc_list);
71 file_idx = cu->GetSupportFiles().FindFileIndex(file_idx + 1, m_file_spec, false);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfoEntry.h51 dw_uleb128_t file_idx; member in union:DWARFDebugMacinfoEntry::__anon3806
H A DDWARFDebugMacinfoEntry.cpp68 s->Printf(" line:%u file index: '%u'\n", (uint32_t)m_line, (uint32_t)m_op2.file_idx);
110 m_op2.file_idx = mac_info_data.GetULEB128(offset_ptr);
H A DDWARFDebugLine.h98 bool GetFile(uint32_t file_idx, std::string& file, std::string& dir) const;
H A DDWARFDebugLine.cpp977 bool DWARFDebugLine::Prologue::GetFile(uint32_t file_idx, std::string& path, std::string& directory) const argument
979 uint32_t idx = file_idx - 1; // File indexes are 1 based...
H A DSymbolFileDWARF.cpp2904 uint32_t file_idx = UINT32_MAX; local
2910 file_idx = sc.comp_unit->GetSupportFiles().FindFileIndex (1, file_spec, true);
2911 if (file_idx == UINT32_MAX)
2924 file_idx = sc.comp_unit->GetSupportFiles().FindFileIndex (1, file_spec, true);
2926 if (file_idx != UINT32_MAX)
2929 uint32_t line_idx = line_table->FindLineEntryIndexByFileIndex (0, file_idx, line, false, &sc.line_entry);
2965 line_idx = line_table->FindLineEntryIndexByFileIndex (line_idx + 1, file_idx, found_line, true, &sc.line_entry);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DLineTable.h81 uint16_t file_idx,
99 uint16_t file_idx,
159 /// Finds the next line entry that has a matching \a file_idx and
166 /// @param[out] file_idx
193 uint32_t file_idx,
206 FineLineEntriesForFileIndex (uint32_t file_idx,
279 file_idx (0),
300 file_idx (_file_idx),
318 file_idx = 0;
341 SCALAR_COMPARE (lhs.file_idx, rh
367 uint16_t file_idx:11, ///< The file index into CompileUnit's file table, or zero if there is no file information. member in struct:lldb_private::LineTable::Entry
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
H A DCompileUnit.cpp284 uint32_t file_idx = 0; local
288 file_idx = GetSupportFiles().FindFileIndex (1, *file_spec_ptr, true);
289 if (file_idx == UINT32_MAX)
299 file_idx = support_files.FindFileIndex (1, support_files.GetFileSpecAtIndex(0), full);
300 if (file_idx == UINT32_MAX)
301 file_idx = 0;
305 return line_table->FindLineEntryIndexByFileIndex (start_idx, file_idx, line, exact, line_entry_ptr);
335 uint32_t file_idx = GetSupportFiles().FindFileIndex (1, file_spec, true);
336 while (file_idx != UINT32_MAX)
338 file_indexes.push_back (file_idx);
[all...]
H A DLineTable.cpp43 uint16_t file_idx,
51 Entry entry(file_addr, line, column, file_idx, is_start_of_statement, is_start_of_basic_block, is_prologue_end, is_epilogue_begin, is_terminal_entry);
88 uint16_t file_idx,
98 Entry entry(file_addr, line, column, file_idx, is_start_of_statement, is_start_of_basic_block, is_prologue_end, is_epilogue_begin, is_terminal_entry);
158 LT_COMPARE (a.file_idx, b.file_idx);
274 line_entry.file = m_comp_unit->GetSupportFiles().GetFileSpecAtIndex (entry.file_idx);
310 if (find (begin_pos, end_pos, m_entries[idx].file_idx) == end_pos)
347 LineTable::FindLineEntryIndexByFileIndex (uint32_t start_idx, uint32_t file_idx, uint32_t line, bool exact, LineEntry* line_entry_ptr) argument
358 if (m_entries[idx].file_idx !
38 InsertLineEntry( lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry ) argument
82 AppendLineEntryToSequence( LineSequence* sequence, lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry ) argument
395 FineLineEntriesForFileIndex(uint32_t file_idx, bool append, SymbolContextList &sc_list) argument
[all...]
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_xar.c232 int file_idx; member in struct:xar
2434 file->id = xar->file_idx++;
/freebsd-10-stable/contrib/gcc/
H A Ddwarf2out.c7636 struct dwarf_file_data * file_idx; /* Index in input file table. */
7723 fi->file_idx = d;
7888 backmap[files[i].file_idx->emitted_number - 1] = i;
7893 int file_idx = backmap[i];
7894 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
7896 dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
7625 struct dwarf_file_data * file_idx; /* Index in input file table. */ member in struct:file_info
7882 int file_idx = backmap[i]; local

Completed in 278 milliseconds