Home
last modified time | relevance | path

Searched refs:DumpType (Results 1 – 18 of 18) sorted by relevance

/external/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp78 void DWARFContext::dump(raw_ostream &OS, DIDumpType DumpType, bool DumpEH) { in dump() argument
79 if (DumpType == DIDT_All || DumpType == DIDT_Abbrev) { in dump()
84 if (DumpType == DIDT_All || DumpType == DIDT_AbbrevDwo) in dump()
90 if (DumpType == DIDT_All || DumpType == DIDT_Info) { in dump()
96 if ((DumpType == DIDT_All || DumpType == DIDT_InfoDwo) && in dump()
103 if ((DumpType == DIDT_All || DumpType == DIDT_Types) && getNumTypeUnits()) { in dump()
110 if ((DumpType == DIDT_All || DumpType == DIDT_TypesDwo) && in dump()
118 if (DumpType == DIDT_All || DumpType == DIDT_Loc) { in dump()
123 if (DumpType == DIDT_All || DumpType == DIDT_LocDwo) { in dump()
128 if (DumpType == DIDT_All || DumpType == DIDT_Frames) { in dump()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp113 static unsigned DumpType = DIDT_Null; variable
235 DumpOpts.DumpType = DumpType; in getDumpOpts()
399 if (!(DumpType & DIDT_UUID) || DumpType == DIDT_All) in dumpObjectFile()
578 DumpType |= DIDT_##ENUM_NAME; \ in main()
587 DumpType |= DIDT_UUID; in main()
589 DumpType = DIDT_All; in main()
590 if (DumpType == DIDT_Null) { in main()
592 DumpType = DIDT_All; in main()
594 DumpType = DIDT_DebugInfo; in main()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DSignals.inc642 /// "DumpType" for a given Windows Registry key.
646 /// valid values for DumpType are:
658 DWORD DumpType;
659 DWORD TypeSize = sizeof(DumpType);
660 if (ERROR_SUCCESS != ::RegGetValueW(Key, NULL, L"DumpType", RRF_RT_REG_DWORD,
661 NULL, &DumpType,
665 switch (DumpType) {
730 // is NULL or if there is no valid DumpType value at its location).
731 MINIDUMP_TYPE DumpType;
732 if (!GetDumpType(AppSpecificKey, DumpType))
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DSignals.inc655 /// "DumpType" for a given Windows Registry key.
659 /// valid values for DumpType are:
671 DWORD DumpType;
672 DWORD TypeSize = sizeof(DumpType);
673 if (ERROR_SUCCESS != ::RegGetValueW(Key, NULL, L"DumpType", RRF_RT_REG_DWORD,
674 NULL, &DumpType,
678 switch (DumpType) {
743 // is NULL or if there is no valid DumpType value at its location).
744 MINIDUMP_TYPE DumpType;
745 if (!GetDumpType(AppSpecificKey, DumpType))
[all …]
/external/llvm/lib/Support/Windows/
DSignals.inc641 /// "DumpType" for a given Windows Registry key.
645 /// valid values for DumpType are:
657 DWORD DumpType;
658 DWORD TypeSize = sizeof(DumpType);
659 if (ERROR_SUCCESS != ::RegGetValueW(Key, NULL, L"DumpType", RRF_RT_REG_DWORD,
660 NULL, &DumpType,
664 switch (DumpType) {
729 // is NULL or if there is no valid DumpType value at its location).
730 MINIDUMP_TYPE DumpType;
731 if (!GetDumpType(AppSpecificKey, DumpType))
[all …]
/external/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp42 static cl::opt<DIDumpType> DumpType(
89 DICtx->dump(outs(), DumpType); in DumpObjectFile()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwarfdump/fuzzer/
Dllvm-dwarfdump-fuzzer.cpp38 opts.DumpType = DIDT_All; in LLVMFuzzerTestOneInput()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp310 uint64_t DumpType = DumpOpts.DumpType; in dump() local
317 if (DumpType & DIDT_UUID) in dump()
323 bool Explicit = DumpType != DIDT_All && !IsDWO; in dump()
329 bool Should = (DumpType & Mask) && (Explicit || !Section.empty()); in dump()
371 if ((DumpType & DIDT_DebugTypes)) { in dump()
395 if (DumpType & DIDT_DebugMacro) { in dump()
627 if (DumpOpts.DumpType & DIDT_DebugInfo) in verify()
629 if (DumpOpts.DumpType & DIDT_DebugLine) in verify()
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBContext.h42 void dump(raw_ostream &OS, DIDumpType DumpType = DIDT_All,
/external/google-breakpad/src/client/windows/crash_generation/
Dminidump_generator.h105 MINIDUMP_TYPE DumpType,
/external/llvm/lib/DebugInfo/PDB/
DPDBContext.cpp32 void PDBContext::dump(raw_ostream &OS, DIDumpType DumpType, in dump() argument
/external/llvm/include/llvm/DebugInfo/
DDIContext.h141 virtual void dump(raw_ostream &OS, DIDumpType DumpType = DIDT_All,
/external/google-breakpad/src/client/windows/handler/
Dexception_handler.h304 MINIDUMP_TYPE DumpType,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/
DDIContext.h155 unsigned DumpType = DIDT_All; member
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFContext.h84 void dump(raw_ostream &OS, DIDumpType DumpType = DIDT_All,
/external/mesa3d/src/gallium/auxiliary/util/
Ddbghelp.h1257 …BOOL WINAPI MiniDumpWriteDump(HANDLE hProcess,DWORD ProcessId,HANDLE hFile,MINIDUMP_TYPE DumpType,…
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp2302 DumpOpts.DumpType = DwarfDumpType; in DumpObject()
DMachODump.cpp1667 DumpOpts.DumpType = DwarfDumpType; in ProcessMachO()