Searched refs:info (Results 251 - 275 of 1698) sorted by last modified time

<<11121314151617181920>>

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h166 void Append(const ProcessInstanceInfo &info) { m_infos.push_back(info); } argument
176 bool GetInfoAtIndex(size_t idx, ProcessInstanceInfo &info) { argument
178 info = m_infos[idx];
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h556 Stream *stream); // Optional stream to receive first stop info
559 Stream *stream); // Optional stream to receive first stop info
1360 void FinalizeFileActions(ProcessLaunchInfo &info);
H A DProcess.h698 /// Attach to an existing process using the process attach info.
707 /// The process attach info.
1312 virtual bool GetProcessInfo(ProcessInstanceInfo &info);
H A DABI.h129 virtual void AugmentRegisterInfo(RegisterInfo &info);
141 bool GetRegisterInfoByName(ConstString name, RegisterInfo &info);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h250 MatchRegOp(const RegisterInfo &info);
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/
H A DReaderWriterYAML.cpp262 YamlContext *info = reinterpret_cast<YamlContext *>(ctxt); local
263 assert(info->_registry);
265 if (info->_registry->referenceKindToString(kind.ns, kind.arch, kind.value,
274 YamlContext *info = reinterpret_cast<YamlContext *>(ctxt); local
275 assert(info->_registry);
276 if (info->_registry->referenceKindFromString(scalar, kind.ns, kind.arch,
411 io.enumCase(value, "objc-image-info",
421 io.enumCase(value, "unwind-info", DefinedAtom::typeProcessedUnwindInfo);
693 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
694 assert(info !
705 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
727 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
757 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
792 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
838 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
859 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1009 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1025 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1041 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1075 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1094 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1117 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1151 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1167 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1186 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
1192 YamlContext *info = reinterpret_cast<YamlContext *>(io.getContext()); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DObjCPass.cpp37 Data.info.version = 0;
48 Data.info.flags = (uint32_t)objCConstraint;
52 Data.info.flags = 0;
56 Data.info.flags |= (swiftVersion << 8);
58 normalized::write32(Data.bytes + 4, Data.info.flags, isBig);
91 objc_image_info info; member in union:lld::mach_o::ObjCImageInfoAtom::__anon1152
105 // Add the image info.
H A DMachONormalizedFileToAtoms.cpp138 /// Returns info on how to atomize a section of the specified ContentType.
389 // Get info on how to atomize section.
872 const Section &info,
880 auto infoData = dataExtractorFromSection(normalizedFile, info);
941 // Find the interesting debug info sections.
1440 // If this is a debug-info section parse it specially.
1490 // providing unwind info for) and itself (FDE -> CIE). These aren't
871 readCompUnit(const NormalizedFile &normalizedFile, const Section &info, const Section &abbrev, const Section &strings, StringRef path) argument
H A DMachONormalizedFileFromAtoms.cpp445 auto *info = new (_allocator) SegmentInfo(segName); local
449 info->init_access = VM_PROT_READ | VM_PROT_EXECUTE;
451 info->init_access = 0;
453 info->init_access = VM_PROT_READ;
456 info->init_access = VM_PROT_READ | VM_PROT_WRITE;
467 info->max_access = 0;
471 info->max_access = VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE;
475 info->max_access = info->init_access;
478 _segmentInfos.push_back(info);
1227 DylibInfo info; local
1257 DylibInfo &info = _dylibInfo[dep.path]; local
[all...]
H A DMachOLinkingContext.cpp117 for (ArchInfo *info = _s_archInfos; !info->archName.empty(); ++info) {
118 if ((info->cputype == cputype) && (info->cpusubtype == cpusubtype))
119 return info->arch;
126 for (ArchInfo *info = _s_archInfos; !info->archName.empty(); ++info) {
127 if (info
928 OrderFileNode info; local
[all...]
H A DFile.h305 AtomAndFlags info(weakDef);
306 _nameToAtom[name] = info;
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DInputFiles.cpp237 if (Optional<DILineInfo> info = file.getDILineInfo(&sec, offset))
238 return createFileLineMsg(info->FileName, info->Line);
283 // using DWARF debug info.
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DDWARF.cpp21 [](ErrorInfoBase &info) { warn(info.message()); });
60 // input object file lacks some debug info.
90 // using DWARF debug info.
93 DILineInfo info; local
97 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, info))
98 return info;
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DPDB.cpp107 /// Link info for each import file in the symbol table into the PDB.
455 pdb::InfoStream &info = cantFail(pdbFile.getPDBInfoStream()); local
457 auto it = typeServerIndexMappings.emplace(info.getGuid(), CVIndexMap());
1092 // These appear to relate to .Net assembly info.
1210 // type information, file checksums, and the string table. Add type info to
1217 // If the .debug$T sections fail to merge, assume there is no debug info.
1223 warn("Cannot use debug info for '" + toString(file) + "' [LNK4099]\n" +
H A DDebugTypes.cpp192 pdb::InfoStream &info = cantFail(pdbFile.getPDBInfoStream()); local
197 if (info.getGuid() != ts.getGuid())
233 // debug info will simply be missing from the final PDB - that is the default
256 Expected<pdb::InfoStream &> info = pdbFile.getPDBInfoStream(); local
258 if (!info)
259 return info.takeError();
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A Dlibunwind.cpp103 // specical case altering IP to re-find info (being called by personality
106 unw_proc_info_t info; local
108 co->getInfo(&info);
114 // this should actually be - info.gp. LLVM doesn't currently support
116 if (info.gp)
117 co->setReg(UNW_REG_SP, co->getReg(UNW_REG_SP) + info.gp);
167 /// Get unwind info at cursor position in stack frame.
169 unw_proc_info_t *info) {
170 _LIBUNWIND_TRACE_API("__unw_get_proc_info(cursor=%p, &info=%p)",
171 static_cast<void *>(cursor), static_cast<void *>(info));
168 __unw_get_proc_info(unw_cursor_t *cursor, unw_proc_info_t *info) argument
[all...]
H A DUnwindLevel1-gcc-ext.c95 unw_proc_info_t info; local
99 if (__unw_get_proc_info(&cursor, &info) == UNW_ESUCCESS)
100 return (void *)(intptr_t) info.start_ip;
190 /// Find DWARF unwind info for an address 'pc' in some function.
197 unw_proc_info_t info; local
201 __unw_get_proc_info(&cursor, &info);
202 bases->tbase = (uintptr_t)info.extra;
204 bases->func = (uintptr_t)info.start_ip;
206 (void *)(intptr_t) info.unwind_info);
207 return (void *)(intptr_t) info
[all...]
H A DUnwindCursor.hpp510 // Update some fields of the unwind info now, since we have them.
1506 // Save off parsed FDE info
1550 // do a binary search of top level index to find page with unwind info
1867 // Found info in table, done unless encoding says to use dwarf.
1871 // found info in dwarf, done
1876 // If unwind table has entry, but entry says there is no unwind info,
1877 // record that we have no unwind info.
1886 // If there is SEH unwind info, look there next.
1892 // If there is dwarf unwind info, look there next.
1895 // found info i
2007 getInfo(unw_proc_info_t *info) argument
[all...]
H A DAddressSpace.hpp75 dyld_unwind_sections* info) {
87 info->mh = (const struct mach_header *)mh;
88 info->dwarf_section = getsectiondata(mh, "__TEXT", "__eh_frame", &info->dwarf_section_length);
89 info->compact_unwind_section = getsectiondata(mh, "__TEXT", "__unwind_info", &info->compact_unwind_section_length);
91 if (!info->dwarf_section) {
92 info->dwarf_section_length = 0;
95 if (!info->compact_unwind_section) {
96 info
74 _dyld_find_unwind_sections(void* addr, dyld_unwind_sections* info) argument
395 findUnwindSections(pint_t targetAddr, UnwindInfoSections &info) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dthread.cpp99 SYSTEM_INFO info;
100 GetSystemInfo(&info);
101 return info.dwNumberOfProcessors;
H A Ddebug.cpp33 _LIBCPP_NORETURN void __libcpp_abort_debug_function(__libcpp_debug_info const& info) { argument
34 std::fprintf(stderr, "%s\n", info.what().c_str());
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cpp177 const char *FName = FLoc.get()->info.function;
H A Dubsan_handlers.cpp772 const char *FName = FLoc.get()->info.function;
779 const char *DstModule = FLoc.get()->info.module;
H A Dubsan_diag.cpp99 const AddressInfo &AI = Loc.getSymbolizedStack()->info;
163 const AddressInfo &Info = Loc.getSymbolizedStack()->info;
436 // Suppress by function or source file name from debug info.
438 const AddressInfo &AI = Stack.get()->info;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp71 AddressInfo *info = &ssb->tail->info; local
73 info->function = internal_strdup(function_name);
76 info->file = internal_strdup(file);
78 info->line = line;
79 info->column = column;
99 frame->info.function = internal_strdup(func_buf);
100 frame->info.file = internal_strdup(file_buf);
101 frame->info.line = line;
102 frame->info
110 DataInfo info; local
[all...]

Completed in 281 milliseconds

<<11121314151617181920>>