LLDB mainline
AppleGetItemInfoHandler.h
Go to the documentation of this file.
1//===-- AppleGetItemInfoHandler.h ----------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_SYSTEMRUNTIME_MACOSX_APPLEGETITEMINFOHANDLER_H
10#define LLDB_SOURCE_PLUGINS_SYSTEMRUNTIME_MACOSX_APPLEGETITEMINFOHANDLER_H
11
12#include <map>
13#include <mutex>
14#include <vector>
15
18#include "lldb/Utility/Status.h"
19#include "lldb/lldb-public.h"
20
21// This class will insert a UtilityFunction into the inferior process for
22// calling libBacktraceRecording's
23// __introspection_dispatch_queue_item_get_info()
24// function. The function in the inferior will return a struct by value
25// with these members:
26//
27// struct get_item_info_return_values
28// {
29// introspection_dispatch_item_info_ref *item_buffer;
30// uint64_t item_buffer_size;
31// };
32//
33// The item_buffer pointer is an address in the inferior program's address
34// space (item_buffer_size in size) which must be mach_vm_deallocate'd by
35// lldb.
36//
37// The AppleGetItemInfoHandler object should persist so that the UtilityFunction
38// can be reused multiple times.
39
40namespace lldb_private {
41
43public:
45
47
50 item buffer from libBacktraceRecording */
51 lldb::addr_t item_buffer_size = 0; /* the size of the item buffer from
52 libBacktraceRecording */
53
55 };
56
57 /// Get the information about a work item by calling
58 /// __introspection_dispatch_queue_item_get_info. If there's a page of
59 /// memory that needs to be freed, pass in the address and size and it will
60 /// be freed before getting the list of queues.
61 ///
62 /// \param [in] thread
63 /// The thread to run this plan on.
64 ///
65 /// \param [in] item
66 /// The introspection_dispatch_item_info_ref value for the item of
67 /// interest.
68 ///
69 /// \param [in] page_to_free
70 /// An address of an inferior process vm page that needs to be
71 /// deallocated,
72 /// LLDB_INVALID_ADDRESS if this is not needed.
73 ///
74 /// \param [in] page_to_free_size
75 /// The size of the vm page that needs to be deallocated if an address was
76 /// passed in to page_to_free.
77 ///
78 /// \param [out] error
79 /// This object will be updated with the error status / error string from
80 /// any failures encountered.
81 ///
82 /// \returns
83 /// The result of the inferior function call execution. If there was a
84 /// failure of any kind while getting
85 /// the information, the item_buffer_ptr value will be
86 /// LLDB_INVALID_ADDRESS.
88 lldb::addr_t page_to_free,
89 uint64_t page_to_free_size,
91
92 void Detach();
93
94private:
96 ValueList &get_item_info_arglist);
97
100
102 std::unique_ptr<UtilityFunction> m_get_item_info_impl_code;
104
107};
108
109} // using namespace lldb_private
110
111#endif // LLDB_SOURCE_PLUGINS_SYSTEMRUNTIME_MACOSX_APPLEGETITEMINFOHANDLER_H
static llvm::raw_ostream & error(Stream &strm)
GetItemInfoReturnInfo GetItemInfo(Thread &thread, lldb::addr_t item, lldb::addr_t page_to_free, uint64_t page_to_free_size, lldb_private::Status &error)
Get the information about a work item by calling __introspection_dispatch_queue_item_get_info.
std::unique_ptr< UtilityFunction > m_get_item_info_impl_code
lldb::addr_t SetupGetItemInfoFunction(Thread &thread, ValueList &get_item_info_arglist)
A plug-in interface definition class for debugging a process.
Definition: Process.h:341
An error handling class.
Definition: Status.h:44
#define LLDB_INVALID_ADDRESS
Definition: lldb-defines.h:82
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
uint64_t addr_t
Definition: lldb-types.h:79