28 std::optional<FileSpec> outfileSpec = core_options.
GetOutputFile();
29 const auto &outfile = outfileSpec.value();
30 HANDLE process_handle = ::OpenProcess(
31 PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, process_sp->GetID());
32 const std::string file_name = outfile.GetPath();
33 std::wstring wide_name;
34 wide_name.resize(file_name.size() + 1);
35 char *result_ptr =
reinterpret_cast<char *
>(&wide_name[0]);
36 const llvm::UTF8 *error_ptr =
nullptr;
37 if (!llvm::ConvertUTF8toWide(
sizeof(
wchar_t), file_name, result_ptr,
43 ::CreateFileW(wide_name.c_str(), GENERIC_WRITE, FILE_SHARE_READ, NULL,
44 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
46 ::MiniDumpWriteDump(process_handle, process_sp->GetID(), file_handle,
47 MiniDumpWithFullMemoryInfo, NULL, NULL, NULL);
48 ::CloseHandle(file_handle);
49 ::CloseHandle(process_handle);