brintos

brintos / llvm-project-archived public Read only

0
0
Text · 3.9 KiB · 04cfbae Raw
112 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_SOURCE_PLUGINS_SYSTEMRUNTIME_MACOSX_APPLEGETITEMINFOHANDLER_H10#define LLDB_SOURCE_PLUGINS_SYSTEMRUNTIME_MACOSX_APPLEGETITEMINFOHANDLER_H11 12#include <map>13#include <mutex>14#include <vector>15 16#include "lldb/Expression/UtilityFunction.h"17#include "lldb/Symbol/CompilerType.h"18#include "lldb/Utility/Status.h"19#include "lldb/lldb-public.h"20 21// This class will insert a UtilityFunction into the inferior process for22// calling libBacktraceRecording's23// __introspection_dispatch_queue_item_get_info()24// function.  The function in the inferior will return a struct by value25// with these members:26//27//     struct get_item_info_return_values28//     {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 address34// space (item_buffer_size in size) which must be mach_vm_deallocate'd by35// lldb.36//37// The AppleGetItemInfoHandler object should persist so that the UtilityFunction38// can be reused multiple times.39 40namespace lldb_private {41 42class AppleGetItemInfoHandler {43public:44  AppleGetItemInfoHandler(lldb_private::Process *process);45 46  ~AppleGetItemInfoHandler();47 48  struct GetItemInfoReturnInfo {49    lldb::addr_t item_buffer_ptr = LLDB_INVALID_ADDRESS; /* the address of the50                                     item buffer from libBacktraceRecording */51    lldb::addr_t item_buffer_size = 0; /* the size of the item buffer from52                                      libBacktraceRecording */53 54    GetItemInfoReturnInfo() = default;55  };56 57  /// Get the information about a work item by calling58  /// __introspection_dispatch_queue_item_get_info.  If there's a page of59  /// memory that needs to be freed, pass in the address and size and it will60  /// be freed before getting the list of queues.61  ///62  /// \param [in] thread63  ///     The thread to run this plan on.64  ///65  /// \param [in] item66  ///     The introspection_dispatch_item_info_ref value for the item of67  ///     interest.68  ///69  /// \param [in] page_to_free70  ///     An address of an inferior process vm page that needs to be71  ///     deallocated,72  ///     LLDB_INVALID_ADDRESS if this is not needed.73  ///74  /// \param [in] page_to_free_size75  ///     The size of the vm page that needs to be deallocated if an address was76  ///     passed in to page_to_free.77  ///78  /// \param [out] error79  ///     This object will be updated with the error status / error string from80  ///     any failures encountered.81  ///82  /// \returns83  ///     The result of the inferior function call execution.  If there was a84  ///     failure of any kind while getting85  ///     the information, the item_buffer_ptr value will be86  ///     LLDB_INVALID_ADDRESS.87  GetItemInfoReturnInfo GetItemInfo(Thread &thread, lldb::addr_t item,88                                    lldb::addr_t page_to_free,89                                    uint64_t page_to_free_size,90                                    lldb_private::Status &error);91 92  void Detach();93 94private:95  lldb::addr_t SetupGetItemInfoFunction(Thread &thread,96                                        ValueList &get_item_info_arglist);97 98  static const char *g_get_item_info_function_name;99  static const char *g_get_item_info_function_code;100 101  lldb_private::Process *m_process;102  std::unique_ptr<UtilityFunction> m_get_item_info_impl_code;103  std::mutex m_get_item_info_function_mutex;104 105  lldb::addr_t m_get_item_info_return_buffer_addr;106  std::mutex m_get_item_info_retbuffer_mutex;107};108 109} // using namespace lldb_private110 111#endif // LLDB_SOURCE_PLUGINS_SYSTEMRUNTIME_MACOSX_APPLEGETITEMINFOHANDLER_H112