158947cf8SJonas Devlieghere //===-- SBReproducer.cpp ----------------------------------------*- C++ -*-===//
258947cf8SJonas Devlieghere //
3023f9998SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4023f9998SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
5023f9998SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
658947cf8SJonas Devlieghere //
758947cf8SJonas Devlieghere //===----------------------------------------------------------------------===//
858947cf8SJonas Devlieghere 
958947cf8SJonas Devlieghere #include "SBReproducerPrivate.h"
1058947cf8SJonas Devlieghere 
11baf5664fSJonas Devlieghere #include "SBReproducerPrivate.h"
1258947cf8SJonas Devlieghere #include "lldb/API/LLDB.h"
1358947cf8SJonas Devlieghere #include "lldb/API/SBAddress.h"
1458947cf8SJonas Devlieghere #include "lldb/API/SBAttachInfo.h"
1558947cf8SJonas Devlieghere #include "lldb/API/SBBlock.h"
1658947cf8SJonas Devlieghere #include "lldb/API/SBBreakpoint.h"
1758947cf8SJonas Devlieghere #include "lldb/API/SBCommandInterpreter.h"
1858947cf8SJonas Devlieghere #include "lldb/API/SBData.h"
1958947cf8SJonas Devlieghere #include "lldb/API/SBDebugger.h"
2058947cf8SJonas Devlieghere #include "lldb/API/SBDeclaration.h"
2158947cf8SJonas Devlieghere #include "lldb/API/SBError.h"
2258947cf8SJonas Devlieghere #include "lldb/API/SBFileSpec.h"
2358947cf8SJonas Devlieghere #include "lldb/API/SBHostOS.h"
2458947cf8SJonas Devlieghere #include "lldb/API/SBReproducer.h"
2558947cf8SJonas Devlieghere 
2658947cf8SJonas Devlieghere #include "lldb/Host/FileSystem.h"
2758947cf8SJonas Devlieghere 
2858947cf8SJonas Devlieghere using namespace lldb;
2958947cf8SJonas Devlieghere using namespace lldb_private;
3058947cf8SJonas Devlieghere using namespace lldb_private::repro;
3158947cf8SJonas Devlieghere 
32baf5664fSJonas Devlieghere static void SetFileHandleRedirect(SBDebugger *, FILE *, bool) {
33baf5664fSJonas Devlieghere   // Do nothing.
34baf5664fSJonas Devlieghere }
35baf5664fSJonas Devlieghere 
36baf5664fSJonas Devlieghere static bool GetDefaultArchitectureRedirect(char *arch_name,
37baf5664fSJonas Devlieghere                                            size_t arch_name_len) {
38baf5664fSJonas Devlieghere   // The function is writing to its argument. Without the redirect it would
39baf5664fSJonas Devlieghere   // write into the replay buffer.
40*9ebe71a4SJonas Devlieghere   char buffer[1024];
41baf5664fSJonas Devlieghere   return SBDebugger::GetDefaultArchitecture(buffer, arch_name_len);
42baf5664fSJonas Devlieghere }
43baf5664fSJonas Devlieghere 
44baf5664fSJonas Devlieghere SBRegistry::SBRegistry() {
45baf5664fSJonas Devlieghere 
46baf5664fSJonas Devlieghere   // Custom implementation.
47baf5664fSJonas Devlieghere   Register(&invoke<void (SBDebugger::*)(
48baf5664fSJonas Devlieghere                FILE *, bool)>::method<&SBDebugger::SetErrorFileHandle>::doit,
49baf5664fSJonas Devlieghere            &SetFileHandleRedirect);
50baf5664fSJonas Devlieghere   Register(&invoke<void (SBDebugger::*)(
51baf5664fSJonas Devlieghere                FILE *, bool)>::method<&SBDebugger::SetOutputFileHandle>::doit,
52baf5664fSJonas Devlieghere            &SetFileHandleRedirect);
53baf5664fSJonas Devlieghere   Register<bool(char *, size_t)>(static_cast<bool (*)(char *, size_t)>(
54baf5664fSJonas Devlieghere                                      &SBDebugger::GetDefaultArchitecture),
55baf5664fSJonas Devlieghere                                  &GetDefaultArchitectureRedirect);
56baf5664fSJonas Devlieghere 
57baf5664fSJonas Devlieghere   {
58baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAddress, ());
59baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAddress, (const lldb::SBAddress &));
60baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAddress, (lldb::SBSection, lldb::addr_t));
61baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAddress, (lldb::addr_t, lldb::SBTarget &));
62baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBAddress &,
63baf5664fSJonas Devlieghere                          SBAddress, operator=,(const lldb::SBAddress &));
64baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBAddress, IsValid, ());
65baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAddress, Clear, ());
66baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAddress, SetAddress,
67baf5664fSJonas Devlieghere                          (lldb::SBSection, lldb::addr_t));
68baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBAddress, GetFileAddress, ());
69baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBAddress, GetLoadAddress,
70baf5664fSJonas Devlieghere                                (const lldb::SBTarget &));
71baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAddress, SetLoadAddress,
72baf5664fSJonas Devlieghere                          (lldb::addr_t, lldb::SBTarget &));
73baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAddress, OffsetAddress, (lldb::addr_t));
74baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSection, SBAddress, GetSection, ());
75baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBAddress, GetOffset, ());
76baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAddress, GetDescription, (lldb::SBStream &));
77baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModule, SBAddress, GetModule, ());
78baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContext, SBAddress, GetSymbolContext,
79baf5664fSJonas Devlieghere                          (uint32_t));
80baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBCompileUnit, SBAddress, GetCompileUnit, ());
81baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFunction, SBAddress, GetFunction, ());
82baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBlock, SBAddress, GetBlock, ());
83baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbol, SBAddress, GetSymbol, ());
84baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBLineEntry, SBAddress, GetLineEntry, ());
85baf5664fSJonas Devlieghere   }
86baf5664fSJonas Devlieghere   {
87baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, ());
88baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, (lldb::pid_t));
89baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, (const char *, bool));
90baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, (const char *, bool, bool));
91baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, (const lldb::SBAttachInfo &));
92baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAttachInfo &,
93baf5664fSJonas Devlieghere                          SBAttachInfo, operator=,(const lldb::SBAttachInfo &));
94baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::pid_t, SBAttachInfo, GetProcessID, ());
95baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetProcessID, (lldb::pid_t));
96baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetResumeCount, ());
97baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetResumeCount, (uint32_t));
98baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBAttachInfo, GetProcessPluginName, ());
99baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetProcessPluginName,
100baf5664fSJonas Devlieghere                          (const char *));
101baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetExecutable, (const char *));
102baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetExecutable, (lldb::SBFileSpec));
103baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAttachInfo, GetWaitForLaunch, ());
104baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetWaitForLaunch, (bool));
105baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetWaitForLaunch, (bool, bool));
106baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAttachInfo, GetIgnoreExisting, ());
107baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetIgnoreExisting, (bool));
108baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetUserID, ());
109baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetGroupID, ());
110baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAttachInfo, UserIDIsValid, ());
111baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAttachInfo, GroupIDIsValid, ());
112baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetUserID, (uint32_t));
113baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetGroupID, (uint32_t));
114baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetEffectiveUserID, ());
115baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetEffectiveGroupID, ());
116baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAttachInfo, EffectiveUserIDIsValid, ());
117baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAttachInfo, EffectiveGroupIDIsValid, ());
118baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetEffectiveUserID, (uint32_t));
119baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetEffectiveGroupID, (uint32_t));
120baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::pid_t, SBAttachInfo, GetParentProcessID, ());
121baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetParentProcessID, (lldb::pid_t));
122baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBAttachInfo, ParentProcessIDIsValid, ());
123baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBListener, SBAttachInfo, GetListener, ());
124baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBAttachInfo, SetListener, (lldb::SBListener &));
125baf5664fSJonas Devlieghere   }
126baf5664fSJonas Devlieghere   {
127baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBlock, ());
128baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBlock, (const lldb::SBBlock &));
129baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBBlock &,
130baf5664fSJonas Devlieghere                          SBBlock, operator=,(const lldb::SBBlock &));
131baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBlock, IsValid, ());
132baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBlock, IsInlined, ());
133baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBlock, GetInlinedName, ());
134baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBBlock,
135baf5664fSJonas Devlieghere                                GetInlinedCallSiteFile, ());
136baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBBlock, GetInlinedCallSiteLine, ());
137baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBBlock, GetInlinedCallSiteColumn, ());
138baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetParent, ());
139baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetContainingInlinedBlock, ());
140baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetSibling, ());
141baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetFirstChild, ());
142baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBlock, GetDescription, (lldb::SBStream &));
143baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBBlock, GetNumRanges, ());
144baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBBlock, GetRangeStartAddress,
145baf5664fSJonas Devlieghere                          (uint32_t));
146baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBBlock, GetRangeEndAddress,
147baf5664fSJonas Devlieghere                          (uint32_t));
148baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBBlock, GetRangeIndexForBlockAddress,
149baf5664fSJonas Devlieghere                          (lldb::SBAddress));
150baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
151baf5664fSJonas Devlieghere         lldb::SBValueList, SBBlock, GetVariables,
152baf5664fSJonas Devlieghere         (lldb::SBFrame &, bool, bool, bool, lldb::DynamicValueType));
153baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValueList, SBBlock, GetVariables,
154baf5664fSJonas Devlieghere                          (lldb::SBTarget &, bool, bool, bool));
155baf5664fSJonas Devlieghere   }
156baf5664fSJonas Devlieghere   {
157baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpoint, ());
158baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpoint, (const lldb::SBBreakpoint &));
159baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpoint, (const lldb::BreakpointSP &));
160baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBBreakpoint &,
161baf5664fSJonas Devlieghere                          SBBreakpoint, operator=,(const lldb::SBBreakpoint &));
162baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool,
163baf5664fSJonas Devlieghere                          SBBreakpoint, operator==,(const lldb::SBBreakpoint &));
164baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool,
165baf5664fSJonas Devlieghere                          SBBreakpoint, operator!=,(const lldb::SBBreakpoint &));
166baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::break_id_t, SBBreakpoint, GetID, ());
167baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBreakpoint, IsValid, ());
168baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, ClearAllBreakpointSites, ());
169baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpointLocation, SBBreakpoint,
170baf5664fSJonas Devlieghere                          FindLocationByAddress, (lldb::addr_t));
171baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::break_id_t, SBBreakpoint,
172baf5664fSJonas Devlieghere                          FindLocationIDByAddress, (lldb::addr_t));
173baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpointLocation, SBBreakpoint,
174baf5664fSJonas Devlieghere                          FindLocationByID, (lldb::break_id_t));
175baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpointLocation, SBBreakpoint,
176baf5664fSJonas Devlieghere                          GetLocationAtIndex, (uint32_t));
177baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetEnabled, (bool));
178baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpoint, IsEnabled, ());
179baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetOneShot, (bool));
180baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBreakpoint, IsOneShot, ());
181baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpoint, IsInternal, ());
182baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetIgnoreCount, (uint32_t));
183baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetCondition, (const char *));
184baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBBreakpoint, GetCondition, ());
185baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetAutoContinue, (bool));
186baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpoint, GetAutoContinue, ());
187baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBBreakpoint, GetHitCount, ());
188baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBBreakpoint, GetIgnoreCount, ());
189baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetThreadID, (lldb::tid_t));
190baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::tid_t, SBBreakpoint, GetThreadID, ());
191baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetThreadIndex, (uint32_t));
192baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBBreakpoint, GetThreadIndex, ());
193baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetThreadName, (const char *));
194baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBreakpoint, GetThreadName, ());
195baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetQueueName, (const char *));
196baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBreakpoint, GetQueueName, ());
197baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(size_t, SBBreakpoint, GetNumResolvedLocations,
198baf5664fSJonas Devlieghere                                ());
199baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(size_t, SBBreakpoint, GetNumLocations, ());
200baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetCommandLineCommands,
201baf5664fSJonas Devlieghere                          (lldb::SBStringList &));
202baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpoint, GetCommandLineCommands,
203baf5664fSJonas Devlieghere                          (lldb::SBStringList &));
204baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpoint, GetDescription,
205baf5664fSJonas Devlieghere                          (lldb::SBStream &));
206baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpoint, GetDescription,
207baf5664fSJonas Devlieghere                          (lldb::SBStream &, bool));
208baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBBreakpoint, AddLocation,
209baf5664fSJonas Devlieghere                          (lldb::SBAddress &));
210baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, SetScriptCallbackFunction,
211baf5664fSJonas Devlieghere                          (const char *));
212baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBBreakpoint, SetScriptCallbackBody,
213baf5664fSJonas Devlieghere                          (const char *));
214baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpoint, AddName, (const char *));
215baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, RemoveName, (const char *));
216baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpoint, MatchesName, (const char *));
217baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpoint, GetNames, (lldb::SBStringList &));
218baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBBreakpoint, EventIsBreakpointEvent,
219baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
220baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::BreakpointEventType, SBBreakpoint,
221baf5664fSJonas Devlieghere                                 GetBreakpointEventTypeFromEvent,
222baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
223baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBBreakpoint, SBBreakpoint,
224baf5664fSJonas Devlieghere                                 GetBreakpointFromEvent,
225baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
226baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBBreakpointLocation, SBBreakpoint,
227baf5664fSJonas Devlieghere                                 GetBreakpointLocationAtIndexFromEvent,
228baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &, uint32_t));
229baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(uint32_t, SBBreakpoint,
230baf5664fSJonas Devlieghere                                 GetNumBreakpointLocationsFromEvent,
231baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
232baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBreakpoint, IsHardware, ());
233baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpointList, (lldb::SBTarget &));
234baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(size_t, SBBreakpointList, GetSize, ());
235baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBBreakpointList,
236baf5664fSJonas Devlieghere                          GetBreakpointAtIndex, (size_t));
237baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBBreakpointList,
238baf5664fSJonas Devlieghere                          FindBreakpointByID, (lldb::break_id_t));
239baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointList, Append,
240baf5664fSJonas Devlieghere                          (const lldb::SBBreakpoint &));
241baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointList, AppendByID,
242baf5664fSJonas Devlieghere                          (lldb::break_id_t));
243baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointList, AppendIfUnique,
244baf5664fSJonas Devlieghere                          (const lldb::SBBreakpoint &));
245baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointList, Clear, ());
246baf5664fSJonas Devlieghere   }
247baf5664fSJonas Devlieghere   {
248baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpointLocation, ());
249baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpointLocation,
250baf5664fSJonas Devlieghere                               (const lldb::BreakpointLocationSP &));
251baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpointLocation,
252baf5664fSJonas Devlieghere                               (const lldb::SBBreakpointLocation &));
253baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
254baf5664fSJonas Devlieghere         const lldb::SBBreakpointLocation &,
255baf5664fSJonas Devlieghere         SBBreakpointLocation, operator=,(const lldb::SBBreakpointLocation &));
256baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBreakpointLocation, IsValid, ());
257baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBBreakpointLocation, GetAddress, ());
258baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBBreakpointLocation, GetLoadAddress,
259baf5664fSJonas Devlieghere                          ());
260baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetEnabled, (bool));
261baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointLocation, IsEnabled, ());
262baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBBreakpointLocation, GetHitCount, ());
263baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBBreakpointLocation, GetIgnoreCount, ());
264baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetIgnoreCount,
265baf5664fSJonas Devlieghere                          (uint32_t));
266baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetCondition,
267baf5664fSJonas Devlieghere                          (const char *));
268baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBBreakpointLocation, GetCondition, ());
269baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetAutoContinue, (bool));
270baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointLocation, GetAutoContinue, ());
271baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetScriptCallbackFunction,
272baf5664fSJonas Devlieghere                          (const char *));
273baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBBreakpointLocation,
274baf5664fSJonas Devlieghere                          SetScriptCallbackBody, (const char *));
275baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetCommandLineCommands,
276baf5664fSJonas Devlieghere                          (lldb::SBStringList &));
277baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointLocation, GetCommandLineCommands,
278baf5664fSJonas Devlieghere                          (lldb::SBStringList &));
279baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetThreadID,
280baf5664fSJonas Devlieghere                          (lldb::tid_t));
281baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::tid_t, SBBreakpointLocation, GetThreadID, ());
282baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetThreadIndex,
283baf5664fSJonas Devlieghere                          (uint32_t));
284baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBBreakpointLocation, GetThreadIndex,
285baf5664fSJonas Devlieghere                                ());
286baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetThreadName,
287baf5664fSJonas Devlieghere                          (const char *));
288baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBreakpointLocation,
289baf5664fSJonas Devlieghere                                GetThreadName, ());
290baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetQueueName,
291baf5664fSJonas Devlieghere                          (const char *));
292baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBreakpointLocation, GetQueueName,
293baf5664fSJonas Devlieghere                                ());
294baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointLocation, IsResolved, ());
295baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointLocation, GetDescription,
296baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
297baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::break_id_t, SBBreakpointLocation, GetID, ());
298baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBBreakpointLocation,
299baf5664fSJonas Devlieghere                          GetBreakpoint, ());
300baf5664fSJonas Devlieghere   }
301baf5664fSJonas Devlieghere   {
302baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpointName, ());
303baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpointName,
304baf5664fSJonas Devlieghere                               (lldb::SBTarget &, const char *));
305baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpointName,
306baf5664fSJonas Devlieghere                               (lldb::SBBreakpoint &, const char *));
307baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBreakpointName,
308baf5664fSJonas Devlieghere                               (const lldb::SBBreakpointName &));
309baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
310baf5664fSJonas Devlieghere         const lldb::SBBreakpointName &,
311baf5664fSJonas Devlieghere         SBBreakpointName, operator=,(const lldb::SBBreakpointName &));
312baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
313baf5664fSJonas Devlieghere         bool, SBBreakpointName, operator==,(const lldb::SBBreakpointName &));
314baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
315baf5664fSJonas Devlieghere         bool, SBBreakpointName, operator!=,(const lldb::SBBreakpointName &));
316baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBreakpointName, IsValid, ());
317baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBreakpointName, GetName, ());
318baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetEnabled, (bool));
319baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointName, IsEnabled, ());
320baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetOneShot, (bool));
321baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBreakpointName, IsOneShot, ());
322baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetIgnoreCount, (uint32_t));
323baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBBreakpointName, GetIgnoreCount, ());
324baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetCondition, (const char *));
325baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBBreakpointName, GetCondition, ());
326baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetAutoContinue, (bool));
327baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointName, GetAutoContinue, ());
328baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetThreadID, (lldb::tid_t));
329baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::tid_t, SBBreakpointName, GetThreadID, ());
330baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetThreadIndex, (uint32_t));
331baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBBreakpointName, GetThreadIndex, ());
332baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetThreadName, (const char *));
333baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBreakpointName, GetThreadName,
334baf5664fSJonas Devlieghere                                ());
335baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetQueueName, (const char *));
336baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBreakpointName, GetQueueName,
337baf5664fSJonas Devlieghere                                ());
338baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetCommandLineCommands,
339baf5664fSJonas Devlieghere                          (lldb::SBStringList &));
340baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointName, GetCommandLineCommands,
341baf5664fSJonas Devlieghere                          (lldb::SBStringList &));
342baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBreakpointName, GetHelpString,
343baf5664fSJonas Devlieghere                                ());
344baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetHelpString, (const char *));
345baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointName, GetDescription,
346baf5664fSJonas Devlieghere                          (lldb::SBStream &));
347baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetScriptCallbackFunction,
348baf5664fSJonas Devlieghere                          (const char *));
349baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBBreakpointName, SetScriptCallbackBody,
350baf5664fSJonas Devlieghere                          (const char *));
351baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBreakpointName, GetAllowList, ());
352baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetAllowList, (bool));
353baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointName, GetAllowDelete, ());
354baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetAllowDelete, (bool));
355baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBreakpointName, GetAllowDisable, ());
356baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBreakpointName, SetAllowDisable, (bool));
357baf5664fSJonas Devlieghere   }
358baf5664fSJonas Devlieghere   {} {
359baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBroadcaster, ());
360baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBroadcaster, (const char *));
361baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBBroadcaster, (const lldb::SBBroadcaster &));
362baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
363baf5664fSJonas Devlieghere         const lldb::SBBroadcaster &,
364baf5664fSJonas Devlieghere         SBBroadcaster, operator=,(const lldb::SBBroadcaster &));
365baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBroadcaster, BroadcastEventByType,
366baf5664fSJonas Devlieghere                          (uint32_t, bool));
367baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBroadcaster, BroadcastEvent,
368baf5664fSJonas Devlieghere                          (const lldb::SBEvent &, bool));
369baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBroadcaster, AddInitialEventsToListener,
370baf5664fSJonas Devlieghere                          (const lldb::SBListener &, uint32_t));
371baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBBroadcaster, AddListener,
372baf5664fSJonas Devlieghere                          (const lldb::SBListener &, uint32_t));
373baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBBroadcaster, GetName, ());
374baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBroadcaster, EventTypeHasListeners,
375baf5664fSJonas Devlieghere                          (uint32_t));
376baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBBroadcaster, RemoveListener,
377baf5664fSJonas Devlieghere                          (const lldb::SBListener &, uint32_t));
378baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBBroadcaster, IsValid, ());
379baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBBroadcaster, Clear, ());
380baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
381baf5664fSJonas Devlieghere         bool, SBBroadcaster, operator==,(const lldb::SBBroadcaster &));
382baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
383baf5664fSJonas Devlieghere         bool, SBBroadcaster, operator!=,(const lldb::SBBroadcaster &));
384baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
385baf5664fSJonas Devlieghere         bool, SBBroadcaster, operator<,(const lldb::SBBroadcaster &));
386baf5664fSJonas Devlieghere   }
387baf5664fSJonas Devlieghere   {
388baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommandInterpreterRunOptions, ());
389baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreterRunOptions,
390baf5664fSJonas Devlieghere                                GetStopOnContinue, ());
391baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreterRunOptions,
392baf5664fSJonas Devlieghere                          SetStopOnContinue, (bool));
393baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreterRunOptions,
394baf5664fSJonas Devlieghere                                GetStopOnError, ());
395baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreterRunOptions, SetStopOnError,
396baf5664fSJonas Devlieghere                          (bool));
397baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreterRunOptions,
398baf5664fSJonas Devlieghere                                GetStopOnCrash, ());
399baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreterRunOptions, SetStopOnCrash,
400baf5664fSJonas Devlieghere                          (bool));
401baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreterRunOptions,
402baf5664fSJonas Devlieghere                                GetEchoCommands, ());
403baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreterRunOptions, SetEchoCommands,
404baf5664fSJonas Devlieghere                          (bool));
405baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreterRunOptions,
406baf5664fSJonas Devlieghere                                GetEchoCommentCommands, ());
407baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreterRunOptions,
408baf5664fSJonas Devlieghere                          SetEchoCommentCommands, (bool));
409baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreterRunOptions,
410baf5664fSJonas Devlieghere                                GetPrintResults, ());
411baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreterRunOptions, SetPrintResults,
412baf5664fSJonas Devlieghere                          (bool));
413baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreterRunOptions,
414baf5664fSJonas Devlieghere                                GetAddToHistory, ());
415baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreterRunOptions, SetAddToHistory,
416baf5664fSJonas Devlieghere                          (bool));
417baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommandInterpreter,
418baf5664fSJonas Devlieghere                               (lldb_private::CommandInterpreter *));
419baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommandInterpreter,
420baf5664fSJonas Devlieghere                               (const lldb::SBCommandInterpreter &));
421baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
422baf5664fSJonas Devlieghere         const lldb::SBCommandInterpreter &,
423baf5664fSJonas Devlieghere         SBCommandInterpreter, operator=,(const lldb::SBCommandInterpreter &));
424baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreter, IsValid, ());
425baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, CommandExists,
426baf5664fSJonas Devlieghere                          (const char *));
427baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, AliasExists,
428baf5664fSJonas Devlieghere                          (const char *));
429baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, IsActive, ());
430baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandInterpreter, WasInterrupted, ());
431baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBCommandInterpreter,
432baf5664fSJonas Devlieghere                          GetIOHandlerControlSequence, (char));
433baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ReturnStatus, SBCommandInterpreter,
434baf5664fSJonas Devlieghere                          HandleCommand,
435baf5664fSJonas Devlieghere                          (const char *, lldb::SBCommandReturnObject &, bool));
436baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ReturnStatus, SBCommandInterpreter,
437baf5664fSJonas Devlieghere                          HandleCommand,
438baf5664fSJonas Devlieghere                          (const char *, lldb::SBExecutionContext &,
439baf5664fSJonas Devlieghere                           lldb::SBCommandReturnObject &, bool));
440baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreter, HandleCommandsFromFile,
441baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &, lldb::SBExecutionContext &,
442baf5664fSJonas Devlieghere                           lldb::SBCommandInterpreterRunOptions &,
443baf5664fSJonas Devlieghere                           lldb::SBCommandReturnObject));
444baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int, SBCommandInterpreter, HandleCompletion,
445baf5664fSJonas Devlieghere                          (const char *, const char *, const char *, int, int,
446baf5664fSJonas Devlieghere                           lldb::SBStringList &));
447baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int, SBCommandInterpreter,
448baf5664fSJonas Devlieghere                          HandleCompletionWithDescriptions,
449baf5664fSJonas Devlieghere                          (const char *, const char *, const char *, int, int,
450baf5664fSJonas Devlieghere                           lldb::SBStringList &, lldb::SBStringList &));
451baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int, SBCommandInterpreter,
452baf5664fSJonas Devlieghere                          HandleCompletionWithDescriptions,
453baf5664fSJonas Devlieghere                          (const char *, uint32_t, int, int,
454baf5664fSJonas Devlieghere                           lldb::SBStringList &, lldb::SBStringList &));
455baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
456baf5664fSJonas Devlieghere         int, SBCommandInterpreter, HandleCompletion,
457baf5664fSJonas Devlieghere         (const char *, uint32_t, int, int, lldb::SBStringList &));
458baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, HasCommands, ());
459baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, HasAliases, ());
460baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, HasAliasOptions, ());
461baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBCommandInterpreter, GetProcess, ());
462baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBDebugger, SBCommandInterpreter, GetDebugger,
463baf5664fSJonas Devlieghere                          ());
464baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, GetPromptOnQuit, ());
465baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreter, SetPromptOnQuit, (bool));
466baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreter, AllowExitCodeOnQuit,
467baf5664fSJonas Devlieghere                          (bool));
468baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, HasCustomQuitExitCode, ());
469baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int, SBCommandInterpreter, GetQuitStatus, ());
470baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreter, ResolveCommand,
471baf5664fSJonas Devlieghere                          (const char *, lldb::SBCommandReturnObject &));
472baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreter,
473baf5664fSJonas Devlieghere                          SourceInitFileInHomeDirectory,
474baf5664fSJonas Devlieghere                          (lldb::SBCommandReturnObject &));
475baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandInterpreter,
476baf5664fSJonas Devlieghere                          SourceInitFileInCurrentWorkingDirectory,
477baf5664fSJonas Devlieghere                          (lldb::SBCommandReturnObject &));
478baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBroadcaster, SBCommandInterpreter,
479baf5664fSJonas Devlieghere                          GetBroadcaster, ());
480baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBCommandInterpreter,
481baf5664fSJonas Devlieghere                                 GetBroadcasterClass, ());
482baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBCommandInterpreter,
483baf5664fSJonas Devlieghere                                 GetArgumentTypeAsCString,
484baf5664fSJonas Devlieghere                                 (const lldb::CommandArgumentType));
485baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBCommandInterpreter,
486baf5664fSJonas Devlieghere                                 GetArgumentDescriptionAsCString,
487baf5664fSJonas Devlieghere                                 (const lldb::CommandArgumentType));
488baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBCommandInterpreter,
489baf5664fSJonas Devlieghere                                 EventIsCommandInterpreterEvent,
490baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
491baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBCommand, SBCommandInterpreter,
492baf5664fSJonas Devlieghere                          AddMultiwordCommand, (const char *, const char *));
493baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
494baf5664fSJonas Devlieghere         lldb::SBCommand, SBCommandInterpreter, AddCommand,
495baf5664fSJonas Devlieghere         (const char *, lldb::SBCommandPluginInterface *, const char *));
496baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBCommand, SBCommandInterpreter, AddCommand,
497baf5664fSJonas Devlieghere                          (const char *, lldb::SBCommandPluginInterface *,
498baf5664fSJonas Devlieghere                           const char *, const char *));
499baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommand, ());
500baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommand, IsValid, ());
501baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBCommand, GetName, ());
502baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBCommand, GetHelp, ());
503baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBCommand, GetHelpLong, ());
504baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommand, SetHelp, (const char *));
505baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommand, SetHelpLong, (const char *));
506baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBCommand, SBCommand, AddMultiwordCommand,
507baf5664fSJonas Devlieghere                          (const char *, const char *));
508baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
509baf5664fSJonas Devlieghere         lldb::SBCommand, SBCommand, AddCommand,
510baf5664fSJonas Devlieghere         (const char *, lldb::SBCommandPluginInterface *, const char *));
511baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBCommand, SBCommand, AddCommand,
512baf5664fSJonas Devlieghere                          (const char *, lldb::SBCommandPluginInterface *,
513baf5664fSJonas Devlieghere                           const char *, const char *));
514baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBCommand, GetFlags, ());
515baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommand, SetFlags, (uint32_t));
516baf5664fSJonas Devlieghere   }
517baf5664fSJonas Devlieghere   {
518baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommandReturnObject, ());
519baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommandReturnObject,
520baf5664fSJonas Devlieghere                               (const lldb::SBCommandReturnObject &));
521baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommandReturnObject,
522baf5664fSJonas Devlieghere                               (lldb_private::CommandReturnObject *));
523baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb_private::CommandReturnObject *,
524baf5664fSJonas Devlieghere                          SBCommandReturnObject, Release, ());
525baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
526baf5664fSJonas Devlieghere         const lldb::SBCommandReturnObject &,
527baf5664fSJonas Devlieghere         SBCommandReturnObject, operator=,(const lldb::SBCommandReturnObject &));
528baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommandReturnObject, IsValid, ());
529baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBCommandReturnObject, GetOutput, ());
530baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBCommandReturnObject, GetError, ());
531baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBCommandReturnObject, GetOutputSize, ());
532baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBCommandReturnObject, GetErrorSize, ());
533baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBCommandReturnObject, PutOutput, (FILE *));
534baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBCommandReturnObject, PutError, (FILE *));
535baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, Clear, ());
536baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ReturnStatus, SBCommandReturnObject, GetStatus,
537baf5664fSJonas Devlieghere                          ());
538baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, SetStatus,
539baf5664fSJonas Devlieghere                          (lldb::ReturnStatus));
540baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandReturnObject, Succeeded, ());
541baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandReturnObject, HasResult, ());
542baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, AppendMessage,
543baf5664fSJonas Devlieghere                          (const char *));
544baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, AppendWarning,
545baf5664fSJonas Devlieghere                          (const char *));
546baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommandReturnObject, GetDescription,
547baf5664fSJonas Devlieghere                          (lldb::SBStream &));
548baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, SetImmediateOutputFile,
549baf5664fSJonas Devlieghere                          (FILE *));
550baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, SetImmediateErrorFile,
551baf5664fSJonas Devlieghere                          (FILE *));
552baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, SetImmediateOutputFile,
553baf5664fSJonas Devlieghere                          (FILE *, bool));
554baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, SetImmediateErrorFile,
555baf5664fSJonas Devlieghere                          (FILE *, bool));
556baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, PutCString,
557baf5664fSJonas Devlieghere                          (const char *, int));
558baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBCommandReturnObject, GetOutput,
559baf5664fSJonas Devlieghere                          (bool));
560baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBCommandReturnObject, GetError, (bool));
561baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, SetError,
562baf5664fSJonas Devlieghere                          (lldb::SBError &, const char *));
563baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommandReturnObject, SetError, (const char *));
564baf5664fSJonas Devlieghere   }
565baf5664fSJonas Devlieghere   {
566baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommunication, ());
567baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCommunication, (const char *));
568baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommunication, IsValid, ());
569baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommunication, GetCloseOnEOF, ());
570baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBCommunication, SetCloseOnEOF, (bool));
571baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ConnectionStatus, SBCommunication, Connect,
572baf5664fSJonas Devlieghere                          (const char *));
573baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ConnectionStatus, SBCommunication,
574baf5664fSJonas Devlieghere                          AdoptFileDesriptor, (int, bool));
575baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ConnectionStatus, SBCommunication, Disconnect,
576baf5664fSJonas Devlieghere                          ());
577baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCommunication, IsConnected, ());
578baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommunication, ReadThreadStart, ());
579baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommunication, ReadThreadStop, ());
580baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCommunication, ReadThreadIsRunning, ());
581baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBroadcaster, SBCommunication, GetBroadcaster,
582baf5664fSJonas Devlieghere                          ());
583baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBCommunication,
584baf5664fSJonas Devlieghere                                 GetBroadcasterClass, ());
585baf5664fSJonas Devlieghere   }
586baf5664fSJonas Devlieghere   {
587baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCompileUnit, ());
588baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBCompileUnit, (const lldb::SBCompileUnit &));
589baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
590baf5664fSJonas Devlieghere         const lldb::SBCompileUnit &,
591baf5664fSJonas Devlieghere         SBCompileUnit, operator=,(const lldb::SBCompileUnit &));
592baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBCompileUnit, GetFileSpec,
593baf5664fSJonas Devlieghere                                ());
594baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBCompileUnit, GetNumLineEntries, ());
595baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBLineEntry, SBCompileUnit,
596baf5664fSJonas Devlieghere                                GetLineEntryAtIndex, (uint32_t));
597baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBCompileUnit, FindLineEntryIndex,
598baf5664fSJonas Devlieghere                                (uint32_t, uint32_t, lldb::SBFileSpec *));
599baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBCompileUnit, FindLineEntryIndex,
600baf5664fSJonas Devlieghere                                (uint32_t, uint32_t, lldb::SBFileSpec *, bool));
601baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBCompileUnit, GetNumSupportFiles, ());
602baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeList, SBCompileUnit, GetTypes, (uint32_t));
603baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBCompileUnit,
604baf5664fSJonas Devlieghere                                GetSupportFileAtIndex, (uint32_t));
605baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBCompileUnit, FindSupportFileIndex,
606baf5664fSJonas Devlieghere                          (uint32_t, const lldb::SBFileSpec &, bool));
607baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::LanguageType, SBCompileUnit, GetLanguage, ());
608baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBCompileUnit, IsValid, ());
609baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
610baf5664fSJonas Devlieghere         bool, SBCompileUnit, operator==,(const lldb::SBCompileUnit &));
611baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
612baf5664fSJonas Devlieghere         bool, SBCompileUnit, operator!=,(const lldb::SBCompileUnit &));
613baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBCompileUnit, GetDescription,
614baf5664fSJonas Devlieghere                          (lldb::SBStream &));
615baf5664fSJonas Devlieghere   }
616baf5664fSJonas Devlieghere   {
617baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBData, ());
618baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBData, (const lldb::SBData &));
619baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBData &,
620baf5664fSJonas Devlieghere                          SBData, operator=,(const lldb::SBData &));
621baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, IsValid, ());
622baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint8_t, SBData, GetAddressByteSize, ());
623baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBData, SetAddressByteSize, (uint8_t));
624baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBData, Clear, ());
625baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBData, GetByteSize, ());
626baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ByteOrder, SBData, GetByteOrder, ());
627baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBData, SetByteOrder, (lldb::ByteOrder));
628baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(float, SBData, GetFloat,
629baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
630baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(double, SBData, GetDouble,
631baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
632baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(long double, SBData, GetLongDouble,
633baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
634baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBData, GetAddress,
635baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
636baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint8_t, SBData, GetUnsignedInt8,
637baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
638baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint16_t, SBData, GetUnsignedInt16,
639baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
640baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBData, GetUnsignedInt32,
641baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
642baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBData, GetUnsignedInt64,
643baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
644baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int8_t, SBData, GetSignedInt8,
645baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
646baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int16_t, SBData, GetSignedInt16,
647baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
648baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int32_t, SBData, GetSignedInt32,
649baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
650baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int64_t, SBData, GetSignedInt64,
651baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
652baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBData, GetString,
653baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::offset_t));
654baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, GetDescription,
655baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::addr_t));
656baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, Append, (const lldb::SBData &));
657baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBData, SBData, CreateDataFromCString,
658baf5664fSJonas Devlieghere                                 (lldb::ByteOrder, uint32_t, const char *));
659baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(
660baf5664fSJonas Devlieghere         lldb::SBData, SBData, CreateDataFromUInt64Array,
661baf5664fSJonas Devlieghere         (lldb::ByteOrder, uint32_t, uint64_t *, size_t));
662baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(
663baf5664fSJonas Devlieghere         lldb::SBData, SBData, CreateDataFromUInt32Array,
664baf5664fSJonas Devlieghere         (lldb::ByteOrder, uint32_t, uint32_t *, size_t));
665baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBData, SBData, CreateDataFromSInt64Array,
666baf5664fSJonas Devlieghere                                 (lldb::ByteOrder, uint32_t, int64_t *, size_t));
667baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBData, SBData, CreateDataFromSInt32Array,
668baf5664fSJonas Devlieghere                                 (lldb::ByteOrder, uint32_t, int32_t *, size_t));
669baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBData, SBData, CreateDataFromDoubleArray,
670baf5664fSJonas Devlieghere                                 (lldb::ByteOrder, uint32_t, double *, size_t));
671baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, SetDataFromCString, (const char *));
672baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, SetDataFromUInt64Array,
673baf5664fSJonas Devlieghere                          (uint64_t *, size_t));
674baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, SetDataFromUInt32Array,
675baf5664fSJonas Devlieghere                          (uint32_t *, size_t));
676baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, SetDataFromSInt64Array,
677baf5664fSJonas Devlieghere                          (int64_t *, size_t));
678baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, SetDataFromSInt32Array,
679baf5664fSJonas Devlieghere                          (int32_t *, size_t));
680baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBData, SetDataFromDoubleArray,
681baf5664fSJonas Devlieghere                          (double *, size_t));
682baf5664fSJonas Devlieghere   }
683baf5664fSJonas Devlieghere   {
684baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBInputReader, SetIsDone, (bool));
685baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBInputReader, IsActive, ());
686baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBDebugger, ());
687baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBDebugger, (const lldb::DebuggerSP &));
688baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBDebugger, (const lldb::SBDebugger &));
689baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBDebugger &,
690baf5664fSJonas Devlieghere                          SBDebugger, operator=,(const lldb::SBDebugger &));
691baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(void, SBDebugger, Initialize, ());
692baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBError, SBDebugger,
693baf5664fSJonas Devlieghere                                 InitializeWithErrorHandling, ());
694baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(void, SBDebugger, Terminate, ());
695baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, Clear, ());
696baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBDebugger, SBDebugger, Create, ());
697baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBDebugger, SBDebugger, Create, (bool));
698baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(void, SBDebugger, Destroy,
699baf5664fSJonas Devlieghere                                 (lldb::SBDebugger &));
700baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(void, SBDebugger, MemoryPressureDetected, ());
701baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBDebugger, IsValid, ());
702baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SetAsync, (bool));
703baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, GetAsync, ());
704baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SkipLLDBInitFiles, (bool));
705baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SkipAppInitFiles, (bool));
7067e23df44SJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SetInputFileHandle, (FILE *, bool));
707baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(FILE *, SBDebugger, GetInputFileHandle, ());
708baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(FILE *, SBDebugger, GetOutputFileHandle, ());
709baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(FILE *, SBDebugger, GetErrorFileHandle, ());
710baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SaveInputTerminalState, ());
711baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, RestoreInputTerminalState, ());
712baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBCommandInterpreter, SBDebugger,
713baf5664fSJonas Devlieghere                          GetCommandInterpreter, ());
714baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, HandleCommand, (const char *));
715baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBListener, SBDebugger, GetListener, ());
716baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
717baf5664fSJonas Devlieghere         void, SBDebugger, HandleProcessEvent,
718baf5664fSJonas Devlieghere         (const lldb::SBProcess &, const lldb::SBEvent &, FILE *, FILE *));
719baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSourceManager, SBDebugger, GetSourceManager,
720baf5664fSJonas Devlieghere                          ());
721baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBDebugger, SetDefaultArchitecture,
722baf5664fSJonas Devlieghere                                 (const char *));
723baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ScriptLanguage, SBDebugger, GetScriptingLanguage,
724baf5664fSJonas Devlieghere                          (const char *));
725baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBDebugger, GetVersionString, ());
726baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBDebugger, StateAsCString,
727baf5664fSJonas Devlieghere                                 (lldb::StateType));
728baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBStructuredData, SBDebugger,
729baf5664fSJonas Devlieghere                                 GetBuildConfiguration, ());
730baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBDebugger, StateIsRunningState,
731baf5664fSJonas Devlieghere                                 (lldb::StateType));
732baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBDebugger, StateIsStoppedState,
733baf5664fSJonas Devlieghere                                 (lldb::StateType));
734baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
735baf5664fSJonas Devlieghere         lldb::SBTarget, SBDebugger, CreateTarget,
736baf5664fSJonas Devlieghere         (const char *, const char *, const char *, bool, lldb::SBError &));
737baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBDebugger,
738baf5664fSJonas Devlieghere                          CreateTargetWithFileAndTargetTriple,
739baf5664fSJonas Devlieghere                          (const char *, const char *));
740baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBDebugger,
741baf5664fSJonas Devlieghere                          CreateTargetWithFileAndArch,
742baf5664fSJonas Devlieghere                          (const char *, const char *));
743baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBDebugger, CreateTarget,
744baf5664fSJonas Devlieghere                          (const char *));
745baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBDebugger, GetDummyTarget, ());
746baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, DeleteTarget, (lldb::SBTarget &));
747baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBDebugger, GetTargetAtIndex,
748baf5664fSJonas Devlieghere                          (uint32_t));
749baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBDebugger, GetIndexOfTarget,
750baf5664fSJonas Devlieghere                          (lldb::SBTarget));
751baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBDebugger, FindTargetWithProcessID,
752baf5664fSJonas Devlieghere                          (lldb::pid_t));
753baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBDebugger, FindTargetWithFileAndArch,
754baf5664fSJonas Devlieghere                          (const char *, const char *));
755baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBDebugger, GetNumTargets, ());
756baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBDebugger, GetSelectedTarget, ());
757baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SetSelectedTarget,
758baf5664fSJonas Devlieghere                          (lldb::SBTarget &));
759baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBPlatform, SBDebugger, GetSelectedPlatform, ());
760baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SetSelectedPlatform,
761baf5664fSJonas Devlieghere                          (lldb::SBPlatform &));
762baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBDebugger, GetNumPlatforms, ());
763baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBPlatform, SBDebugger, GetPlatformAtIndex,
764baf5664fSJonas Devlieghere                          (uint32_t));
765baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBDebugger, GetNumAvailablePlatforms, ());
766baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBStructuredData, SBDebugger,
767baf5664fSJonas Devlieghere                          GetAvailablePlatformInfoAtIndex, (uint32_t));
768baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, DispatchInputInterrupt, ());
769baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, DispatchInputEndOfFile, ());
770baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, PushInputReader,
771baf5664fSJonas Devlieghere                          (lldb::SBInputReader &));
772baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, RunCommandInterpreter, (bool, bool));
773baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, RunCommandInterpreter,
774baf5664fSJonas Devlieghere                          (bool, bool, lldb::SBCommandInterpreterRunOptions &,
775baf5664fSJonas Devlieghere                           int &, bool &, bool &));
776baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBDebugger, RunREPL,
777baf5664fSJonas Devlieghere                          (lldb::LanguageType, const char *));
778baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBDebugger, SBDebugger,
779baf5664fSJonas Devlieghere                                 FindDebuggerWithID, (int));
780baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBDebugger, GetInstanceName, ());
781baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBError, SBDebugger, SetInternalVariable,
782baf5664fSJonas Devlieghere                                 (const char *, const char *, const char *));
783baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBStringList, SBDebugger,
784baf5664fSJonas Devlieghere                                 GetInternalVariableValue,
785baf5664fSJonas Devlieghere                                 (const char *, const char *));
786baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBDebugger, GetTerminalWidth, ());
787baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SetTerminalWidth, (uint32_t));
788baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBDebugger, GetPrompt, ());
789baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SetPrompt, (const char *));
790baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBDebugger, GetReproducerPath, ());
791baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::ScriptLanguage, SBDebugger,
792baf5664fSJonas Devlieghere                                GetScriptLanguage, ());
793baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SetScriptLanguage,
794baf5664fSJonas Devlieghere                          (lldb::ScriptLanguage));
795baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, SetUseExternalEditor, (bool));
796baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, GetUseExternalEditor, ());
797baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, SetUseColor, (bool));
798baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBDebugger, GetUseColor, ());
799baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, GetDescription, (lldb::SBStream &));
800baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::user_id_t, SBDebugger, GetID, ());
801baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBDebugger, SetCurrentPlatform,
802baf5664fSJonas Devlieghere                          (const char *));
803baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, SetCurrentPlatformSDKRoot,
804baf5664fSJonas Devlieghere                          (const char *));
805baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBDebugger, GetCloseInputOnEOF, ());
806baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDebugger, SetCloseInputOnEOF, (bool));
807baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeCategory, SBDebugger, GetCategory,
808baf5664fSJonas Devlieghere                          (const char *));
809baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeCategory, SBDebugger, GetCategory,
810baf5664fSJonas Devlieghere                          (lldb::LanguageType));
811baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeCategory, SBDebugger, CreateCategory,
812baf5664fSJonas Devlieghere                          (const char *));
813baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, DeleteCategory, (const char *));
814baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBDebugger, GetNumCategories, ());
815baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeCategory, SBDebugger, GetCategoryAtIndex,
816baf5664fSJonas Devlieghere                          (uint32_t));
817baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeCategory, SBDebugger, GetDefaultCategory,
818baf5664fSJonas Devlieghere                          ());
819baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFormat, SBDebugger, GetFormatForType,
820baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
821baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeSummary, SBDebugger, GetSummaryForType,
822baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
823baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFilter, SBDebugger, GetFilterForType,
824baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
825baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeSynthetic, SBDebugger, GetSyntheticForType,
826baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
827baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDebugger, EnableLog,
828baf5664fSJonas Devlieghere                          (const char *, const char **));
829baf5664fSJonas Devlieghere   }
830baf5664fSJonas Devlieghere   {
831baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBDeclaration, ());
832baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBDeclaration, (const lldb::SBDeclaration &));
833baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
834baf5664fSJonas Devlieghere         const lldb::SBDeclaration &,
835baf5664fSJonas Devlieghere         SBDeclaration, operator=,(const lldb::SBDeclaration &));
836baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBDeclaration, IsValid, ());
837baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBDeclaration, GetFileSpec,
838baf5664fSJonas Devlieghere                                ());
839baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBDeclaration, GetLine, ());
840baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBDeclaration, GetColumn, ());
841baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDeclaration, SetFileSpec, (lldb::SBFileSpec));
842baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDeclaration, SetLine, (uint32_t));
843baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBDeclaration, SetColumn, (uint32_t));
844baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
845baf5664fSJonas Devlieghere         bool, SBDeclaration, operator==,(const lldb::SBDeclaration &));
846baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
847baf5664fSJonas Devlieghere         bool, SBDeclaration, operator!=,(const lldb::SBDeclaration &));
848baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBDeclaration, GetDescription,
849baf5664fSJonas Devlieghere                          (lldb::SBStream &));
850baf5664fSJonas Devlieghere   }
851baf5664fSJonas Devlieghere   {
852baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBError, ());
853baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBError, (const lldb::SBError &));
854baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBError &,
855baf5664fSJonas Devlieghere                          SBError, operator=,(const lldb::SBError &));
856baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBError, GetCString, ());
857baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBError, Clear, ());
858baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBError, Fail, ());
859baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBError, Success, ());
860baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBError, GetError, ());
861baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::ErrorType, SBError, GetType, ());
862baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBError, SetError, (uint32_t, lldb::ErrorType));
863baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBError, SetErrorToErrno, ());
864baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBError, SetErrorToGenericError, ());
865baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBError, SetErrorString, (const char *));
866baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBError, IsValid, ());
867baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBError, GetDescription, (lldb::SBStream &));
868baf5664fSJonas Devlieghere   }
869baf5664fSJonas Devlieghere   {
870baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBEvent, ());
871baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBEvent, (uint32_t, const char *, uint32_t));
872baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBEvent, (lldb::EventSP &));
873baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBEvent, (lldb_private::Event *));
874baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBEvent, (const lldb::SBEvent &));
875baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBEvent &,
876baf5664fSJonas Devlieghere                          SBEvent, operator=,(const lldb::SBEvent &));
877baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBEvent, GetDataFlavor, ());
878baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBEvent, GetType, ());
879baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBBroadcaster, SBEvent, GetBroadcaster,
880baf5664fSJonas Devlieghere                                ());
881baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBEvent, GetBroadcasterClass, ());
882baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBEvent, BroadcasterMatchesPtr,
883baf5664fSJonas Devlieghere                          (const lldb::SBBroadcaster *));
884baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBEvent, BroadcasterMatchesRef,
885baf5664fSJonas Devlieghere                          (const lldb::SBBroadcaster &));
886baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBEvent, Clear, ());
887baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBEvent, IsValid, ());
888baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBEvent, GetCStringFromEvent,
889baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
890baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBEvent, GetDescription, (lldb::SBStream &));
891baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBEvent, GetDescription,
892baf5664fSJonas Devlieghere                                (lldb::SBStream &));
893baf5664fSJonas Devlieghere   }
894baf5664fSJonas Devlieghere   {
895baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, ());
896baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext,
897baf5664fSJonas Devlieghere                               (const lldb::SBExecutionContext &));
898baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext,
899baf5664fSJonas Devlieghere                               (lldb::ExecutionContextRefSP));
900baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBTarget &));
901baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBProcess &));
902baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (lldb::SBThread));
903baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBFrame &));
904baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
905baf5664fSJonas Devlieghere         const lldb::SBExecutionContext &,
906baf5664fSJonas Devlieghere         SBExecutionContext, operator=,(const lldb::SBExecutionContext &));
907baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBTarget, SBExecutionContext, GetTarget,
908baf5664fSJonas Devlieghere                                ());
909baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBProcess, SBExecutionContext, GetProcess,
910baf5664fSJonas Devlieghere                                ());
911baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBExecutionContext, GetThread,
912baf5664fSJonas Devlieghere                                ());
913baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFrame, SBExecutionContext, GetFrame, ());
914baf5664fSJonas Devlieghere   }
915baf5664fSJonas Devlieghere   {
916baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExpressionOptions, ());
917baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBExpressionOptions,
918baf5664fSJonas Devlieghere                               (const lldb::SBExpressionOptions &));
919baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
920baf5664fSJonas Devlieghere         const lldb::SBExpressionOptions &,
921baf5664fSJonas Devlieghere         SBExpressionOptions, operator=,(const lldb::SBExpressionOptions &));
922baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBExpressionOptions, GetCoerceResultToId,
923baf5664fSJonas Devlieghere                                ());
924baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetCoerceResultToId,
925baf5664fSJonas Devlieghere                          (bool));
926baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBExpressionOptions, GetUnwindOnError, ());
927baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetUnwindOnError, (bool));
928baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBExpressionOptions, GetIgnoreBreakpoints,
929baf5664fSJonas Devlieghere                                ());
930baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetIgnoreBreakpoints,
931baf5664fSJonas Devlieghere                          (bool));
932baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::DynamicValueType, SBExpressionOptions,
933baf5664fSJonas Devlieghere                                GetFetchDynamicValue, ());
934baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetFetchDynamicValue,
935baf5664fSJonas Devlieghere                          (lldb::DynamicValueType));
936baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBExpressionOptions,
937baf5664fSJonas Devlieghere                                GetTimeoutInMicroSeconds, ());
938baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetTimeoutInMicroSeconds,
939baf5664fSJonas Devlieghere                          (uint32_t));
940baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBExpressionOptions,
941baf5664fSJonas Devlieghere                                GetOneThreadTimeoutInMicroSeconds, ());
942baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions,
943baf5664fSJonas Devlieghere                          SetOneThreadTimeoutInMicroSeconds, (uint32_t));
944baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBExpressionOptions, GetTryAllThreads, ());
945baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetTryAllThreads, (bool));
946baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBExpressionOptions, GetStopOthers, ());
947baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetStopOthers, (bool));
948baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBExpressionOptions, GetTrapExceptions,
949baf5664fSJonas Devlieghere                                ());
950baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetTrapExceptions, (bool));
951baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetLanguage,
952baf5664fSJonas Devlieghere                          (lldb::LanguageType));
953baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBExpressionOptions, GetGenerateDebugInfo, ());
954baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetGenerateDebugInfo,
955baf5664fSJonas Devlieghere                          (bool));
956baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBExpressionOptions, GetSuppressPersistentResult,
957baf5664fSJonas Devlieghere                          ());
958baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetSuppressPersistentResult,
959baf5664fSJonas Devlieghere                          (bool));
960baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBExpressionOptions, GetPrefix,
961baf5664fSJonas Devlieghere                                ());
962baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetPrefix, (const char *));
963baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBExpressionOptions, GetAutoApplyFixIts, ());
964baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetAutoApplyFixIts, (bool));
965baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBExpressionOptions, GetTopLevel, ());
966baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetTopLevel, (bool));
967baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBExpressionOptions, GetAllowJIT, ());
968baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBExpressionOptions, SetAllowJIT, (bool));
969baf5664fSJonas Devlieghere   }
970baf5664fSJonas Devlieghere   {
971baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFileSpec, ());
972baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFileSpec, (const lldb::SBFileSpec &));
973baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFileSpec, (const char *));
974baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFileSpec, (const char *, bool));
975baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBFileSpec &,
976baf5664fSJonas Devlieghere                          SBFileSpec, operator=,(const lldb::SBFileSpec &));
977baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFileSpec, IsValid, ());
978baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFileSpec, Exists, ());
979baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBFileSpec, ResolveExecutableLocation, ());
980baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(int, SBFileSpec, ResolvePath,
981baf5664fSJonas Devlieghere                                 (const char *, char *, size_t));
982baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBFileSpec, GetFilename, ());
983baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBFileSpec, GetDirectory, ());
984baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBFileSpec, SetFilename, (const char *));
985baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBFileSpec, SetDirectory, (const char *));
986baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBFileSpec, GetPath, (char *, size_t));
987baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFileSpec, GetDescription,
988baf5664fSJonas Devlieghere                                (lldb::SBStream &));
989baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBFileSpec, AppendPathComponent, (const char *));
990baf5664fSJonas Devlieghere   }
991baf5664fSJonas Devlieghere   {
992baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFileSpecList, ());
993baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFileSpecList, (const lldb::SBFileSpecList &));
994baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
995baf5664fSJonas Devlieghere         const lldb::SBFileSpecList &,
996baf5664fSJonas Devlieghere         SBFileSpecList, operator=,(const lldb::SBFileSpecList &));
997baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBFileSpecList, GetSize, ());
998baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBFileSpecList, Append,
999baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
1000baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBFileSpecList, AppendIfUnique,
1001baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
1002baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBFileSpecList, Clear, ());
1003baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBFileSpecList, FindFileIndex,
1004baf5664fSJonas Devlieghere                          (uint32_t, const lldb::SBFileSpec &, bool));
1005baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const lldb::SBFileSpec, SBFileSpecList,
1006baf5664fSJonas Devlieghere                                GetFileSpecAtIndex, (uint32_t));
1007baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFileSpecList, GetDescription,
1008baf5664fSJonas Devlieghere                                (lldb::SBStream &));
1009baf5664fSJonas Devlieghere   }
1010baf5664fSJonas Devlieghere   {
1011baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFrame, ());
1012baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFrame, (const lldb::StackFrameSP &));
1013baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFrame, (const lldb::SBFrame &));
1014baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBFrame &,
1015baf5664fSJonas Devlieghere                          SBFrame, operator=,(const lldb::SBFrame &));
1016baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsValid, ());
1017baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBSymbolContext, SBFrame, GetSymbolContext,
1018baf5664fSJonas Devlieghere                                (uint32_t));
1019baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBModule, SBFrame, GetModule, ());
1020baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBCompileUnit, SBFrame, GetCompileUnit,
1021baf5664fSJonas Devlieghere                                ());
1022baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFunction, SBFrame, GetFunction, ());
1023baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBSymbol, SBFrame, GetSymbol, ());
1024baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBBlock, SBFrame, GetBlock, ());
1025baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBBlock, SBFrame, GetFrameBlock, ());
1026baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBLineEntry, SBFrame, GetLineEntry, ());
1027baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBFrame, GetFrameID, ());
1028baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBFrame, GetCFA, ());
1029baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBFrame, GetPC, ());
1030baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBFrame, SetPC, (lldb::addr_t));
1031baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBFrame, GetSP, ());
1032baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBFrame, GetFP, ());
1033baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBFrame, GetPCAddress, ());
1034baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBFrame, Clear, ());
1035baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, GetValueForVariablePath,
1036baf5664fSJonas Devlieghere                          (const char *));
1037baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, GetValueForVariablePath,
1038baf5664fSJonas Devlieghere                          (const char *, lldb::DynamicValueType));
1039baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, FindVariable, (const char *));
1040baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, FindVariable,
1041baf5664fSJonas Devlieghere                          (const char *, lldb::DynamicValueType));
1042baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, FindValue,
1043baf5664fSJonas Devlieghere                          (const char *, lldb::ValueType));
1044baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1045baf5664fSJonas Devlieghere         lldb::SBValue, SBFrame, FindValue,
1046baf5664fSJonas Devlieghere         (const char *, lldb::ValueType, lldb::DynamicValueType));
1047baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsEqual, (const lldb::SBFrame &));
1048baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
1049baf5664fSJonas Devlieghere                                SBFrame, operator==,(const lldb::SBFrame &));
1050baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
1051baf5664fSJonas Devlieghere                                SBFrame, operator!=,(const lldb::SBFrame &));
1052baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBFrame, GetThread, ());
1053baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBFrame, Disassemble, ());
1054baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValueList, SBFrame, GetVariables,
1055baf5664fSJonas Devlieghere                          (bool, bool, bool, bool));
1056baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValueList, SBFrame, GetVariables,
1057baf5664fSJonas Devlieghere                          (bool, bool, bool, bool, lldb::DynamicValueType));
1058baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValueList, SBFrame, GetVariables,
1059baf5664fSJonas Devlieghere                          (const lldb::SBVariablesOptions &));
1060baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValueList, SBFrame, GetRegisters, ());
1061baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, FindRegister, (const char *));
1062baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBFrame, GetDescription, (lldb::SBStream &));
1063baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, EvaluateExpression,
1064baf5664fSJonas Devlieghere                          (const char *));
1065baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, EvaluateExpression,
1066baf5664fSJonas Devlieghere                          (const char *, lldb::DynamicValueType));
1067baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, EvaluateExpression,
1068baf5664fSJonas Devlieghere                          (const char *, lldb::DynamicValueType, bool));
1069baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, EvaluateExpression,
1070baf5664fSJonas Devlieghere                          (const char *, const lldb::SBExpressionOptions &));
1071baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBFrame, IsInlined, ());
1072baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsInlined, ());
1073baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBFrame, IsArtificial, ());
1074baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsArtificial, ());
1075baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBFrame, GetFunctionName, ());
1076baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::LanguageType, SBFrame, GuessLanguage, ());
1077baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBFrame, GetFunctionName, ());
1078baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBFrame, GetDisplayFunctionName, ());
1079baf5664fSJonas Devlieghere   }
1080baf5664fSJonas Devlieghere   {
1081baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFunction, ());
1082baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBFunction, (const lldb::SBFunction &));
1083baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBFunction &,
1084baf5664fSJonas Devlieghere                          SBFunction, operator=,(const lldb::SBFunction &));
1085baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBFunction, IsValid, ());
1086baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetName, ());
1087baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetDisplayName, ());
1088baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetMangledName, ());
1089baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
1090baf5664fSJonas Devlieghere         bool, SBFunction, operator==,(const lldb::SBFunction &));
1091baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
1092baf5664fSJonas Devlieghere         bool, SBFunction, operator!=,(const lldb::SBFunction &));
1093baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBFunction, GetDescription, (lldb::SBStream &));
1094baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions,
1095baf5664fSJonas Devlieghere                          (lldb::SBTarget));
1096baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions,
1097baf5664fSJonas Devlieghere                          (lldb::SBTarget, const char *));
1098baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBFunction, GetStartAddress, ());
1099baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBFunction, GetEndAddress, ());
1100baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBFunction, GetArgumentName, (uint32_t));
1101baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBFunction, GetPrologueByteSize, ());
1102baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBFunction, GetType, ());
1103baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBlock, SBFunction, GetBlock, ());
1104baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::LanguageType, SBFunction, GetLanguage, ());
1105baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBFunction, GetIsOptimized, ());
1106baf5664fSJonas Devlieghere   }
1107baf5664fSJonas Devlieghere   {
1108baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBFileSpec, SBHostOS, GetProgramFileSpec,
1109baf5664fSJonas Devlieghere                                 ());
1110baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBFileSpec, SBHostOS, GetLLDBPythonPath,
1111baf5664fSJonas Devlieghere                                 ());
1112baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBFileSpec, SBHostOS, GetLLDBPath,
1113baf5664fSJonas Devlieghere                                 (lldb::PathType));
1114baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBFileSpec, SBHostOS,
1115baf5664fSJonas Devlieghere                                 GetUserHomeDirectory, ());
1116baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(void, SBHostOS, ThreadCreated, (const char *));
1117baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBHostOS, ThreadCancel,
1118baf5664fSJonas Devlieghere                                 (lldb::thread_t, lldb::SBError *));
1119baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBHostOS, ThreadDetach,
1120baf5664fSJonas Devlieghere                                 (lldb::thread_t, lldb::SBError *));
1121baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(
1122baf5664fSJonas Devlieghere         bool, SBHostOS, ThreadJoin,
1123baf5664fSJonas Devlieghere         (lldb::thread_t, lldb::thread_result_t *, lldb::SBError *));
1124baf5664fSJonas Devlieghere   }
1125baf5664fSJonas Devlieghere   {
1126baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBInstruction, ());
1127baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBInstruction, (const lldb::SBInstruction &));
1128baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1129baf5664fSJonas Devlieghere         const lldb::SBInstruction &,
1130baf5664fSJonas Devlieghere         SBInstruction, operator=,(const lldb::SBInstruction &));
1131baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstruction, IsValid, ());
1132baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBInstruction, GetAddress, ());
1133baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBInstruction, GetMnemonic,
1134baf5664fSJonas Devlieghere                          (lldb::SBTarget));
1135baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBInstruction, GetOperands,
1136baf5664fSJonas Devlieghere                          (lldb::SBTarget));
1137baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBInstruction, GetComment,
1138baf5664fSJonas Devlieghere                          (lldb::SBTarget));
1139baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBInstruction, GetByteSize, ());
1140baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBData, SBInstruction, GetData,
1141baf5664fSJonas Devlieghere                          (lldb::SBTarget));
1142baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstruction, DoesBranch, ());
1143baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstruction, HasDelaySlot, ());
1144baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstruction, CanSetBreakpoint, ());
1145baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstruction, GetDescription,
1146baf5664fSJonas Devlieghere                          (lldb::SBStream &));
1147baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBInstruction, Print, (FILE *));
1148baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstruction, EmulateWithFrame,
1149baf5664fSJonas Devlieghere                          (lldb::SBFrame &, uint32_t));
1150baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstruction, DumpEmulation, (const char *));
1151baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstruction, TestEmulation,
1152baf5664fSJonas Devlieghere                          (lldb::SBStream &, const char *));
1153baf5664fSJonas Devlieghere   }
1154baf5664fSJonas Devlieghere   {
1155baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBInstructionList, ());
1156baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBInstructionList,
1157baf5664fSJonas Devlieghere                               (const lldb::SBInstructionList &));
1158baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1159baf5664fSJonas Devlieghere         const lldb::SBInstructionList &,
1160baf5664fSJonas Devlieghere         SBInstructionList, operator=,(const lldb::SBInstructionList &));
1161baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBInstructionList, IsValid, ());
1162baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBInstructionList, GetSize, ());
1163baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBInstruction, SBInstructionList,
1164baf5664fSJonas Devlieghere                          GetInstructionAtIndex, (uint32_t));
1165baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1166baf5664fSJonas Devlieghere         size_t, SBInstructionList, GetInstructionsCount,
1167baf5664fSJonas Devlieghere         (const lldb::SBAddress &, const lldb::SBAddress &, bool));
1168baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBInstructionList, Clear, ());
1169baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBInstructionList, AppendInstruction,
1170baf5664fSJonas Devlieghere                          (lldb::SBInstruction));
1171baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBInstructionList, Print, (FILE *));
1172baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstructionList, GetDescription,
1173baf5664fSJonas Devlieghere                          (lldb::SBStream &));
1174baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBInstructionList,
1175baf5664fSJonas Devlieghere                          DumpEmulationForAllInstructions, (const char *));
1176baf5664fSJonas Devlieghere   }
1177baf5664fSJonas Devlieghere   {
1178baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::LanguageType, SBLanguageRuntime,
1179baf5664fSJonas Devlieghere                                 GetLanguageTypeFromString, (const char *));
1180baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBLanguageRuntime,
1181baf5664fSJonas Devlieghere                                 GetNameForLanguageType, (lldb::LanguageType));
1182baf5664fSJonas Devlieghere   }
1183baf5664fSJonas Devlieghere   {
1184baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBLaunchInfo, (const char **));
1185baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::pid_t, SBLaunchInfo, GetProcessID, ());
1186baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBLaunchInfo, GetUserID, ());
1187baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBLaunchInfo, GetGroupID, ());
1188baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBLaunchInfo, UserIDIsValid, ());
1189baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBLaunchInfo, GroupIDIsValid, ());
1190baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetUserID, (uint32_t));
1191baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetGroupID, (uint32_t));
1192baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBLaunchInfo, GetExecutableFile, ());
1193baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetExecutableFile,
1194baf5664fSJonas Devlieghere                          (lldb::SBFileSpec, bool));
1195baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBListener, SBLaunchInfo, GetListener, ());
1196baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetListener, (lldb::SBListener &));
1197baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBLaunchInfo, GetNumArguments, ());
1198baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBLaunchInfo, GetArgumentAtIndex,
1199baf5664fSJonas Devlieghere                          (uint32_t));
1200baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetArguments,
1201baf5664fSJonas Devlieghere                          (const char **, bool));
1202baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBLaunchInfo, GetNumEnvironmentEntries, ());
1203baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBLaunchInfo, GetEnvironmentEntryAtIndex,
1204baf5664fSJonas Devlieghere                          (uint32_t));
1205baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetEnvironmentEntries,
1206baf5664fSJonas Devlieghere                          (const char **, bool));
1207baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, Clear, ());
1208baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBLaunchInfo, GetWorkingDirectory,
1209baf5664fSJonas Devlieghere                                ());
1210baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetWorkingDirectory,
1211baf5664fSJonas Devlieghere                          (const char *));
1212baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBLaunchInfo, GetLaunchFlags, ());
1213baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetLaunchFlags, (uint32_t));
1214baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBLaunchInfo, GetProcessPluginName, ());
1215baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetProcessPluginName,
1216baf5664fSJonas Devlieghere                          (const char *));
1217baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBLaunchInfo, GetShell, ());
1218baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetShell, (const char *));
1219baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBLaunchInfo, GetShellExpandArguments, ());
1220baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetShellExpandArguments, (bool));
1221baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBLaunchInfo, GetResumeCount, ());
1222baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetResumeCount, (uint32_t));
1223baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBLaunchInfo, AddCloseFileAction, (int));
1224baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBLaunchInfo, AddDuplicateFileAction,
1225baf5664fSJonas Devlieghere                          (int, int));
1226baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBLaunchInfo, AddOpenFileAction,
1227baf5664fSJonas Devlieghere                          (int, const char *, bool, bool));
1228baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBLaunchInfo, AddSuppressFileAction,
1229baf5664fSJonas Devlieghere                          (int, bool, bool));
1230baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetLaunchEventData,
1231baf5664fSJonas Devlieghere                          (const char *));
1232baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBLaunchInfo, GetLaunchEventData,
1233baf5664fSJonas Devlieghere                                ());
1234baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetDetachOnError, (bool));
1235baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBLaunchInfo, GetDetachOnError, ());
1236baf5664fSJonas Devlieghere   }
1237baf5664fSJonas Devlieghere   {
1238baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBLineEntry, ());
1239baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBLineEntry, (const lldb::SBLineEntry &));
1240baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBLineEntry &,
1241baf5664fSJonas Devlieghere                          SBLineEntry, operator=,(const lldb::SBLineEntry &));
1242baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBLineEntry, GetStartAddress,
1243baf5664fSJonas Devlieghere                                ());
1244baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBLineEntry, GetEndAddress, ());
1245baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBLineEntry, IsValid, ());
1246baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBLineEntry, GetFileSpec, ());
1247baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBLineEntry, GetLine, ());
1248baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBLineEntry, GetColumn, ());
1249baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLineEntry, SetFileSpec, (lldb::SBFileSpec));
1250baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLineEntry, SetLine, (uint32_t));
1251baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBLineEntry, SetColumn, (uint32_t));
1252baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
1253baf5664fSJonas Devlieghere         bool, SBLineEntry, operator==,(const lldb::SBLineEntry &));
1254baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
1255baf5664fSJonas Devlieghere         bool, SBLineEntry, operator!=,(const lldb::SBLineEntry &));
1256baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBLineEntry, GetDescription, (lldb::SBStream &));
1257baf5664fSJonas Devlieghere   }
1258baf5664fSJonas Devlieghere   {
1259baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBListener, ());
1260baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBListener, (const char *));
1261baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBListener, (const lldb::SBListener &));
1262baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBListener &,
1263baf5664fSJonas Devlieghere                          SBListener, operator=,(const lldb::SBListener &));
1264baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBListener, IsValid, ());
1265baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBListener, AddEvent, (const lldb::SBEvent &));
1266baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBListener, Clear, ());
1267baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBListener, StartListeningForEventClass,
1268baf5664fSJonas Devlieghere                          (lldb::SBDebugger &, const char *, uint32_t));
1269baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBListener, StopListeningForEventClass,
1270baf5664fSJonas Devlieghere                          (lldb::SBDebugger &, const char *, uint32_t));
1271baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBListener, StartListeningForEvents,
1272baf5664fSJonas Devlieghere                          (const lldb::SBBroadcaster &, uint32_t));
1273baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBListener, StopListeningForEvents,
1274baf5664fSJonas Devlieghere                          (const lldb::SBBroadcaster &, uint32_t));
1275baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBListener, WaitForEvent,
1276baf5664fSJonas Devlieghere                          (uint32_t, lldb::SBEvent &));
1277baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1278baf5664fSJonas Devlieghere         bool, SBListener, WaitForEventForBroadcaster,
1279baf5664fSJonas Devlieghere         (uint32_t, const lldb::SBBroadcaster &, lldb::SBEvent &));
1280baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1281baf5664fSJonas Devlieghere         bool, SBListener, WaitForEventForBroadcasterWithType,
1282baf5664fSJonas Devlieghere         (uint32_t, const lldb::SBBroadcaster &, uint32_t, lldb::SBEvent &));
1283baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBListener, PeekAtNextEvent, (lldb::SBEvent &));
1284baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBListener, PeekAtNextEventForBroadcaster,
1285baf5664fSJonas Devlieghere                          (const lldb::SBBroadcaster &, lldb::SBEvent &));
1286baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1287baf5664fSJonas Devlieghere         bool, SBListener, PeekAtNextEventForBroadcasterWithType,
1288baf5664fSJonas Devlieghere         (const lldb::SBBroadcaster &, uint32_t, lldb::SBEvent &));
1289baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBListener, GetNextEvent, (lldb::SBEvent &));
1290baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBListener, GetNextEventForBroadcaster,
1291baf5664fSJonas Devlieghere                          (const lldb::SBBroadcaster &, lldb::SBEvent &));
1292baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1293baf5664fSJonas Devlieghere         bool, SBListener, GetNextEventForBroadcasterWithType,
1294baf5664fSJonas Devlieghere         (const lldb::SBBroadcaster &, uint32_t, lldb::SBEvent &));
1295baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBListener, HandleBroadcastEvent,
1296baf5664fSJonas Devlieghere                          (const lldb::SBEvent &));
1297baf5664fSJonas Devlieghere   }
1298baf5664fSJonas Devlieghere   {
1299baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBMemoryRegionInfo, ());
1300baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBMemoryRegionInfo,
1301baf5664fSJonas Devlieghere                               (const lldb::SBMemoryRegionInfo &));
1302baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1303baf5664fSJonas Devlieghere         const lldb::SBMemoryRegionInfo &,
1304baf5664fSJonas Devlieghere         SBMemoryRegionInfo, operator=,(const lldb::SBMemoryRegionInfo &));
1305baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBMemoryRegionInfo, Clear, ());
1306baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
1307baf5664fSJonas Devlieghere         bool,
1308baf5664fSJonas Devlieghere         SBMemoryRegionInfo, operator==,(const lldb::SBMemoryRegionInfo &));
1309baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
1310baf5664fSJonas Devlieghere         bool,
1311baf5664fSJonas Devlieghere         SBMemoryRegionInfo, operator!=,(const lldb::SBMemoryRegionInfo &));
1312baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBMemoryRegionInfo, GetRegionBase, ());
1313baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBMemoryRegionInfo, GetRegionEnd, ());
1314baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBMemoryRegionInfo, IsReadable, ());
1315baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBMemoryRegionInfo, IsWritable, ());
1316baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBMemoryRegionInfo, IsExecutable, ());
1317baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBMemoryRegionInfo, IsMapped, ());
1318baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBMemoryRegionInfo, GetName, ());
1319baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBMemoryRegionInfo, GetDescription,
1320baf5664fSJonas Devlieghere                          (lldb::SBStream &));
1321baf5664fSJonas Devlieghere   }
1322baf5664fSJonas Devlieghere   {
1323baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBMemoryRegionInfoList, ());
1324baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBMemoryRegionInfoList,
1325baf5664fSJonas Devlieghere                               (const lldb::SBMemoryRegionInfoList &));
1326baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1327baf5664fSJonas Devlieghere         const lldb::SBMemoryRegionInfoList &,
1328baf5664fSJonas Devlieghere         SBMemoryRegionInfoList, operator=,(
1329baf5664fSJonas Devlieghere                                     const lldb::SBMemoryRegionInfoList &));
1330baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBMemoryRegionInfoList, GetSize, ());
1331baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBMemoryRegionInfoList, GetMemoryRegionAtIndex,
1332baf5664fSJonas Devlieghere                          (uint32_t, lldb::SBMemoryRegionInfo &));
1333baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBMemoryRegionInfoList, Clear, ());
1334baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBMemoryRegionInfoList, Append,
1335baf5664fSJonas Devlieghere                          (lldb::SBMemoryRegionInfo &));
1336baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBMemoryRegionInfoList, Append,
1337baf5664fSJonas Devlieghere                          (lldb::SBMemoryRegionInfoList &));
1338baf5664fSJonas Devlieghere   }
1339baf5664fSJonas Devlieghere   {
1340baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBModule, ());
1341baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBModule, (const lldb::SBModuleSpec &));
1342baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBModule, (const lldb::SBModule &));
1343baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBModule, (lldb::SBProcess &, lldb::addr_t));
1344baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBModule &,
1345baf5664fSJonas Devlieghere                          SBModule, operator=,(const lldb::SBModule &));
1346baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBModule, IsValid, ());
1347baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModule, Clear, ());
1348baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBModule, GetFileSpec, ());
1349baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBModule, GetPlatformFileSpec,
1350baf5664fSJonas Devlieghere                                ());
1351baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBModule, SetPlatformFileSpec,
1352baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
1353baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBModule, GetRemoteInstallFileSpec,
1354baf5664fSJonas Devlieghere                          ());
1355baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBModule, SetRemoteInstallFileSpec,
1356baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &));
1357baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBModule, GetUUIDString, ());
1358baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
1359baf5664fSJonas Devlieghere                                SBModule, operator==,(const lldb::SBModule &));
1360baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
1361baf5664fSJonas Devlieghere                                SBModule, operator!=,(const lldb::SBModule &));
1362baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBModule, ResolveFileAddress,
1363baf5664fSJonas Devlieghere                          (lldb::addr_t));
1364baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContext, SBModule,
1365baf5664fSJonas Devlieghere                          ResolveSymbolContextForAddress,
1366baf5664fSJonas Devlieghere                          (const lldb::SBAddress &, uint32_t));
1367baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBModule, GetDescription, (lldb::SBStream &));
1368baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBModule, GetNumCompileUnits, ());
1369baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBCompileUnit, SBModule, GetCompileUnitAtIndex,
1370baf5664fSJonas Devlieghere                          (uint32_t));
1371baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBModule, FindCompileUnits,
1372baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
1373baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBModule, GetNumSymbols, ());
1374baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbol, SBModule, GetSymbolAtIndex, (size_t));
1375baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbol, SBModule, FindSymbol,
1376baf5664fSJonas Devlieghere                          (const char *, lldb::SymbolType));
1377baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBModule, FindSymbols,
1378baf5664fSJonas Devlieghere                          (const char *, lldb::SymbolType));
1379baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBModule, GetNumSections, ());
1380baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSection, SBModule, GetSectionAtIndex,
1381baf5664fSJonas Devlieghere                          (size_t));
1382baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBModule, FindFunctions,
1383baf5664fSJonas Devlieghere                          (const char *, uint32_t));
1384baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValueList, SBModule, FindGlobalVariables,
1385baf5664fSJonas Devlieghere                          (lldb::SBTarget &, const char *, uint32_t));
1386baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBModule, FindFirstGlobalVariable,
1387baf5664fSJonas Devlieghere                          (lldb::SBTarget &, const char *));
1388baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBModule, FindFirstType, (const char *));
1389baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBModule, GetBasicType,
1390baf5664fSJonas Devlieghere                          (lldb::BasicType));
1391baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeList, SBModule, FindTypes, (const char *));
1392baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBModule, GetTypeByID,
1393baf5664fSJonas Devlieghere                          (lldb::user_id_t));
1394baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeList, SBModule, GetTypes, (uint32_t));
1395baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSection, SBModule, FindSection,
1396baf5664fSJonas Devlieghere                          (const char *));
1397baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ByteOrder, SBModule, GetByteOrder, ());
1398baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBModule, GetTriple, ());
1399baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBModule, GetAddressByteSize, ());
1400baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBModule, GetVersion,
1401baf5664fSJonas Devlieghere                          (uint32_t *, uint32_t));
1402baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBModule, GetSymbolFileSpec,
1403baf5664fSJonas Devlieghere                                ());
1404baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBModule,
1405baf5664fSJonas Devlieghere                                GetObjectFileHeaderAddress, ());
1406baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBModule,
1407baf5664fSJonas Devlieghere                                GetObjectFileEntryPointAddress, ());
1408baf5664fSJonas Devlieghere   }
1409baf5664fSJonas Devlieghere   {
1410baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBModuleSpec, ());
1411baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBModuleSpec, (const lldb::SBModuleSpec &));
1412baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBModuleSpec &,
1413baf5664fSJonas Devlieghere                          SBModuleSpec, operator=,(const lldb::SBModuleSpec &));
1414baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBModuleSpec, IsValid, ());
1415baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModuleSpec, Clear, ());
1416baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBModuleSpec, GetFileSpec, ());
1417baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModuleSpec, SetFileSpec,
1418baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
1419baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBModuleSpec, GetPlatformFileSpec,
1420baf5664fSJonas Devlieghere                          ());
1421baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModuleSpec, SetPlatformFileSpec,
1422baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
1423baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBModuleSpec, GetSymbolFileSpec, ());
1424baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModuleSpec, SetSymbolFileSpec,
1425baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
1426baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBModuleSpec, GetObjectName, ());
1427baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModuleSpec, SetObjectName, (const char *));
1428baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBModuleSpec, GetTriple, ());
1429baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModuleSpec, SetTriple, (const char *));
1430baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBModuleSpec, GetUUIDLength, ());
1431baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBModuleSpec, GetDescription,
1432baf5664fSJonas Devlieghere                          (lldb::SBStream &));
1433baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBModuleSpecList, ());
1434baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBModuleSpecList,
1435baf5664fSJonas Devlieghere                               (const lldb::SBModuleSpecList &));
1436baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1437baf5664fSJonas Devlieghere         lldb::SBModuleSpecList &,
1438baf5664fSJonas Devlieghere         SBModuleSpecList, operator=,(const lldb::SBModuleSpecList &));
1439baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBModuleSpecList, SBModuleSpecList,
1440baf5664fSJonas Devlieghere                                 GetModuleSpecifications, (const char *));
1441baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModuleSpecList, Append,
1442baf5664fSJonas Devlieghere                          (const lldb::SBModuleSpec &));
1443baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBModuleSpecList, Append,
1444baf5664fSJonas Devlieghere                          (const lldb::SBModuleSpecList &));
1445baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBModuleSpecList, GetSize, ());
1446baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModuleSpec, SBModuleSpecList, GetSpecAtIndex,
1447baf5664fSJonas Devlieghere                          (size_t));
1448baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModuleSpec, SBModuleSpecList,
1449baf5664fSJonas Devlieghere                          FindFirstMatchingSpec, (const lldb::SBModuleSpec &));
1450baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModuleSpecList, SBModuleSpecList,
1451baf5664fSJonas Devlieghere                          FindMatchingSpecs, (const lldb::SBModuleSpec &));
1452baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBModuleSpecList, GetDescription,
1453baf5664fSJonas Devlieghere                          (lldb::SBStream &));
1454baf5664fSJonas Devlieghere   }
1455baf5664fSJonas Devlieghere   {
1456baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBPlatformConnectOptions, (const char *));
1457baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBPlatformConnectOptions,
1458baf5664fSJonas Devlieghere                               (const lldb::SBPlatformConnectOptions &));
1459baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1460baf5664fSJonas Devlieghere         void,
1461baf5664fSJonas Devlieghere         SBPlatformConnectOptions, operator=,(
1462baf5664fSJonas Devlieghere                                       const lldb::SBPlatformConnectOptions &));
1463baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatformConnectOptions, GetURL, ());
1464baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatformConnectOptions, SetURL,
1465baf5664fSJonas Devlieghere                          (const char *));
1466baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBPlatformConnectOptions, GetRsyncEnabled, ());
1467baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatformConnectOptions, EnableRsync,
1468baf5664fSJonas Devlieghere                          (const char *, const char *, bool));
1469baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatformConnectOptions, DisableRsync, ());
1470baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatformConnectOptions,
1471baf5664fSJonas Devlieghere                          GetLocalCacheDirectory, ());
1472baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatformConnectOptions, SetLocalCacheDirectory,
1473baf5664fSJonas Devlieghere                          (const char *));
1474baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBPlatformShellCommand, (const char *));
1475baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBPlatformShellCommand,
1476baf5664fSJonas Devlieghere                               (const lldb::SBPlatformShellCommand &));
1477baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, Clear, ());
1478baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatformShellCommand, GetCommand, ());
1479baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, SetCommand,
1480baf5664fSJonas Devlieghere                          (const char *));
1481baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatformShellCommand,
1482baf5664fSJonas Devlieghere                          GetWorkingDirectory, ());
1483baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, SetWorkingDirectory,
1484baf5664fSJonas Devlieghere                          (const char *));
1485baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBPlatformShellCommand, GetTimeoutSeconds,
1486baf5664fSJonas Devlieghere                          ());
1487baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, SetTimeoutSeconds,
1488baf5664fSJonas Devlieghere                          (uint32_t));
1489baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int, SBPlatformShellCommand, GetSignal, ());
1490baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int, SBPlatformShellCommand, GetStatus, ());
1491baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatformShellCommand, GetOutput, ());
1492baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBPlatform, ());
1493baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBPlatform, (const char *));
1494baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBPlatform, IsValid, ());
1495baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatform, Clear, ());
1496baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatform, GetName, ());
1497baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatform, GetWorkingDirectory, ());
1498baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBPlatform, SetWorkingDirectory, (const char *));
1499baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, ConnectRemote,
1500baf5664fSJonas Devlieghere                          (lldb::SBPlatformConnectOptions &));
1501baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBPlatform, DisconnectRemote, ());
1502baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBPlatform, IsConnected, ());
1503baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatform, GetTriple, ());
1504baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatform, GetOSBuild, ());
1505baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatform, GetOSDescription, ());
1506baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBPlatform, GetHostname, ());
1507baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBPlatform, GetOSMajorVersion, ());
1508baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBPlatform, GetOSMinorVersion, ());
1509baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBPlatform, GetOSUpdateVersion, ());
1510baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, Get,
1511baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &, lldb::SBFileSpec &));
1512baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, Put,
1513baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &, lldb::SBFileSpec &));
1514baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, Install,
1515baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &, lldb::SBFileSpec &));
1516baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, Run,
1517baf5664fSJonas Devlieghere                          (lldb::SBPlatformShellCommand &));
1518baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, Launch,
1519baf5664fSJonas Devlieghere                          (lldb::SBLaunchInfo &));
1520baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, Kill, (const lldb::pid_t));
1521baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, MakeDirectory,
1522baf5664fSJonas Devlieghere                          (const char *, uint32_t));
1523baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBPlatform, GetFilePermissions,
1524baf5664fSJonas Devlieghere                          (const char *));
1525baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, SetFilePermissions,
1526baf5664fSJonas Devlieghere                          (const char *, uint32_t));
1527baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBUnixSignals, SBPlatform, GetUnixSignals,
1528baf5664fSJonas Devlieghere                                ());
1529baf5664fSJonas Devlieghere   }
1530baf5664fSJonas Devlieghere   {
1531baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBProcess, ());
1532baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBProcess, (const lldb::SBProcess &));
1533baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBProcess, (const lldb::ProcessSP &));
1534baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBProcess &,
1535baf5664fSJonas Devlieghere                          SBProcess, operator=,(const lldb::SBProcess &));
1536baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess,
1537baf5664fSJonas Devlieghere                                 GetBroadcasterClassName, ());
1538baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBProcess, GetPluginName, ());
1539baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBProcess, GetShortPluginName, ());
1540baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBProcess, Clear, ());
1541baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBProcess, IsValid, ());
1542baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcess, RemoteLaunch,
1543baf5664fSJonas Devlieghere                          (const char **, const char **, const char *,
1544baf5664fSJonas Devlieghere                           const char *, const char *, const char *, uint32_t,
1545baf5664fSJonas Devlieghere                           bool, lldb::SBError &));
1546baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcess, RemoteAttachToProcessWithID,
1547baf5664fSJonas Devlieghere                          (lldb::pid_t, lldb::SBError &));
1548baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumThreads, ());
1549baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBProcess, GetSelectedThread,
1550baf5664fSJonas Devlieghere                                ());
1551baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, CreateOSPluginThread,
1552baf5664fSJonas Devlieghere                          (lldb::tid_t, lldb::addr_t));
1553baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBTarget, SBProcess, GetTarget, ());
1554baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBProcess, PutSTDIN, (const char *, size_t));
1555baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(size_t, SBProcess, GetSTDOUT, (char *, size_t));
1556baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(size_t, SBProcess, GetSTDERR, (char *, size_t));
1557baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(size_t, SBProcess, GetAsyncProfileData,
1558baf5664fSJonas Devlieghere                                (char *, size_t));
1559baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTrace, SBProcess, StartTrace,
1560baf5664fSJonas Devlieghere                          (lldb::SBTraceOptions &, lldb::SBError &));
1561baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState,
1562baf5664fSJonas Devlieghere                                (const lldb::SBEvent &, FILE *));
1563baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1564baf5664fSJonas Devlieghere         void, SBProcess, AppendEventStateReport,
1565baf5664fSJonas Devlieghere         (const lldb::SBEvent &, lldb::SBCommandReturnObject &));
1566baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThread,
1567baf5664fSJonas Devlieghere                          (const lldb::SBThread &));
1568baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThreadByID, (lldb::tid_t));
1569baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcess, SetSelectedThreadByIndexID,
1570baf5664fSJonas Devlieghere                          (uint32_t));
1571baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadAtIndex, (size_t));
1572baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumQueues, ());
1573baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBQueue, SBProcess, GetQueueAtIndex, (size_t));
1574baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetStopID, (bool));
1575baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBEvent, SBProcess, GetStopEventForStopID,
1576baf5664fSJonas Devlieghere                          (uint32_t));
1577baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::StateType, SBProcess, GetState, ());
1578baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int, SBProcess, GetExitStatus, ());
1579baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBProcess, GetExitDescription, ());
1580baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::pid_t, SBProcess, GetProcessID, ());
1581baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetUniqueID, ());
1582baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::ByteOrder, SBProcess, GetByteOrder, ());
1583baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBProcess, GetAddressByteSize, ());
1584baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Continue, ());
1585baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Destroy, ());
1586baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Stop, ());
1587baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Kill, ());
1588baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Detach, ());
1589baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Detach, (bool));
1590baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, Signal, (int));
1591baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBUnixSignals, SBProcess, GetUnixSignals, ());
1592baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBProcess, SendAsyncInterrupt, ());
1593baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadByID,
1594baf5664fSJonas Devlieghere                          (lldb::tid_t));
1595baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadByIndexID,
1596baf5664fSJonas Devlieghere                          (uint32_t));
1597baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::StateType, SBProcess, GetStateFromEvent,
1598baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1599baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, GetRestartedFromEvent,
1600baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1601baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(size_t, SBProcess,
1602baf5664fSJonas Devlieghere                                 GetNumRestartedReasonsFromEvent,
1603baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1604baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess,
1605baf5664fSJonas Devlieghere                                 GetRestartedReasonAtIndexFromEvent,
1606baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &, size_t));
1607baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBProcess, SBProcess, GetProcessFromEvent,
1608baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1609baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, GetInterruptedFromEvent,
1610baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1611baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBStructuredData, SBProcess,
1612baf5664fSJonas Devlieghere                                 GetStructuredDataFromEvent,
1613baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1614baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, EventIsProcessEvent,
1615baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1616baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBProcess, EventIsStructuredDataEvent,
1617baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1618baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBBroadcaster, SBProcess, GetBroadcaster,
1619baf5664fSJonas Devlieghere                                ());
1620baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBProcess, GetBroadcasterClass,
1621baf5664fSJonas Devlieghere                                 ());
1622baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBProcess, ReadUnsignedFromMemory,
1623baf5664fSJonas Devlieghere                          (lldb::addr_t, uint32_t, lldb::SBError &));
1624baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBProcess, ReadPointerFromMemory,
1625baf5664fSJonas Devlieghere                          (lldb::addr_t, lldb::SBError &));
1626baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcess, GetDescription, (lldb::SBStream &));
1627baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBProcess,
1628baf5664fSJonas Devlieghere                                GetNumSupportedHardwareWatchpoints,
1629baf5664fSJonas Devlieghere                                (lldb::SBError &));
1630baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcess, LoadImage,
1631baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &, lldb::SBError &));
1632baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1633baf5664fSJonas Devlieghere         uint32_t, SBProcess, LoadImage,
1634baf5664fSJonas Devlieghere         (const lldb::SBFileSpec &, const lldb::SBFileSpec &, lldb::SBError &));
1635baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcess, LoadImageUsingPaths,
1636baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &, lldb::SBStringList &,
1637baf5664fSJonas Devlieghere                           lldb::SBFileSpec &, lldb::SBError &));
1638baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, UnloadImage, (uint32_t));
1639baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, SendEventData,
1640baf5664fSJonas Devlieghere                          (const char *));
1641baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcess, GetNumExtendedBacktraceTypes, ());
1642baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBProcess,
1643baf5664fSJonas Devlieghere                          GetExtendedBacktraceTypeAtIndex, (uint32_t));
1644baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadCollection, SBProcess, GetHistoryThreads,
1645baf5664fSJonas Devlieghere                          (lldb::addr_t));
1646baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcess, IsInstrumentationRuntimePresent,
1647baf5664fSJonas Devlieghere                          (lldb::InstrumentationRuntimeType));
1648baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, SaveCore, (const char *));
1649baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBProcess, GetMemoryRegionInfo,
1650baf5664fSJonas Devlieghere                          (lldb::addr_t, lldb::SBMemoryRegionInfo &));
1651baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBMemoryRegionInfoList, SBProcess,
1652baf5664fSJonas Devlieghere                          GetMemoryRegions, ());
1653baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcessInfo, SBProcess, GetProcessInfo, ());
1654baf5664fSJonas Devlieghere   }
1655baf5664fSJonas Devlieghere   {
1656baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBProcessInfo, ());
1657baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBProcessInfo, (const lldb::SBProcessInfo &));
1658baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1659baf5664fSJonas Devlieghere         lldb::SBProcessInfo &,
1660baf5664fSJonas Devlieghere         SBProcessInfo, operator=,(const lldb::SBProcessInfo &));
1661baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBProcessInfo, IsValid, ());
1662baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBProcessInfo, GetName, ());
1663baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBProcessInfo, GetExecutableFile,
1664baf5664fSJonas Devlieghere                          ());
1665baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::pid_t, SBProcessInfo, GetProcessID, ());
1666baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetUserID, ());
1667baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetGroupID, ());
1668baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcessInfo, UserIDIsValid, ());
1669baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcessInfo, GroupIDIsValid, ());
1670baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetEffectiveUserID, ());
1671baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBProcessInfo, GetEffectiveGroupID, ());
1672baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcessInfo, EffectiveUserIDIsValid, ());
1673baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBProcessInfo, EffectiveGroupIDIsValid, ());
1674baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::pid_t, SBProcessInfo, GetParentProcessID, ());
1675baf5664fSJonas Devlieghere   }
1676baf5664fSJonas Devlieghere   {
1677baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBQueue, ());
1678baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBQueue, (const lldb::QueueSP &));
1679baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBQueue, (const lldb::SBQueue &));
1680baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBQueue &,
1681baf5664fSJonas Devlieghere                          SBQueue, operator=,(const lldb::SBQueue &));
1682baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBQueue, IsValid, ());
1683baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBQueue, Clear, ());
1684baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::queue_id_t, SBQueue, GetQueueID, ());
1685baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBQueue, GetIndexID, ());
1686baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBQueue, GetName, ());
1687baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBQueue, GetNumThreads, ());
1688baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBQueue, GetThreadAtIndex, (uint32_t));
1689baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBQueue, GetNumPendingItems, ());
1690baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBQueueItem, SBQueue, GetPendingItemAtIndex,
1691baf5664fSJonas Devlieghere                          (uint32_t));
1692baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBQueue, GetNumRunningItems, ());
1693baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBQueue, GetProcess, ());
1694baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::QueueKind, SBQueue, GetKind, ());
1695baf5664fSJonas Devlieghere   }
1696baf5664fSJonas Devlieghere   {
1697baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBQueueItem, ());
1698baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBQueueItem, (const lldb::QueueItemSP &));
1699baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBQueueItem, IsValid, ());
1700baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBQueueItem, Clear, ());
1701baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBQueueItem, SetQueueItem,
1702baf5664fSJonas Devlieghere                          (const lldb::QueueItemSP &));
1703baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::QueueItemKind, SBQueueItem, GetKind, ());
1704baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBQueueItem, SetKind, (lldb::QueueItemKind));
1705baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBQueueItem, GetAddress, ());
1706baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBQueueItem, SetAddress, (lldb::SBAddress));
1707baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBQueueItem,
1708baf5664fSJonas Devlieghere                          GetExtendedBacktraceThread, (const char *));
1709baf5664fSJonas Devlieghere   }
1710baf5664fSJonas Devlieghere   {
1711baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSection, ());
1712baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSection, (const lldb::SBSection &));
1713baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBSection &,
1714baf5664fSJonas Devlieghere                          SBSection, operator=,(const lldb::SBSection &));
1715baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBSection, IsValid, ());
1716baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBSection, GetName, ());
1717baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSection, SBSection, GetParent, ());
1718baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSection, SBSection, FindSubSection,
1719baf5664fSJonas Devlieghere                          (const char *));
1720baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBSection, GetNumSubSections, ());
1721baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSection, SBSection, GetSubSectionAtIndex,
1722baf5664fSJonas Devlieghere                          (size_t));
1723baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBSection, GetFileAddress, ());
1724baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBSection, GetLoadAddress,
1725baf5664fSJonas Devlieghere                          (lldb::SBTarget &));
1726baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBSection, GetByteSize, ());
1727baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBSection, GetFileOffset, ());
1728baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBSection, GetFileByteSize, ());
1729baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBData, SBSection, GetSectionData, ());
1730baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBData, SBSection, GetSectionData,
1731baf5664fSJonas Devlieghere                          (uint64_t, uint64_t));
1732baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SectionType, SBSection, GetSectionType, ());
1733baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBSection, GetPermissions, ());
1734baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBSection, GetTargetByteSize, ());
1735baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBSection, operator==,(const lldb::SBSection &));
1736baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBSection, operator!=,(const lldb::SBSection &));
1737baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBSection, GetDescription, (lldb::SBStream &));
1738baf5664fSJonas Devlieghere   }
1739baf5664fSJonas Devlieghere   {
1740baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSourceManager, (const lldb::SBDebugger &));
1741baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSourceManager, (const lldb::SBTarget &));
1742baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSourceManager, (const lldb::SBSourceManager &));
1743baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1744baf5664fSJonas Devlieghere         const lldb::SBSourceManager &,
1745baf5664fSJonas Devlieghere         SBSourceManager, operator=,(const lldb::SBSourceManager &));
1746baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBSourceManager,
1747baf5664fSJonas Devlieghere                          DisplaySourceLinesWithLineNumbers,
1748baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &, uint32_t, uint32_t,
1749baf5664fSJonas Devlieghere                           uint32_t, const char *, lldb::SBStream &));
1750baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBSourceManager,
1751baf5664fSJonas Devlieghere                          DisplaySourceLinesWithLineNumbersAndColumn,
1752baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &, uint32_t, uint32_t,
1753baf5664fSJonas Devlieghere                           uint32_t, uint32_t, const char *, lldb::SBStream &));
1754baf5664fSJonas Devlieghere   }
1755baf5664fSJonas Devlieghere   {
1756baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBStream, ());
1757baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBStream, IsValid, ());
1758baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBStream, GetData, ());
1759baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBStream, GetSize, ());
1760baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStream, RedirectToFile, (const char *, bool));
1761baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStream, RedirectToFileHandle, (FILE *, bool));
1762baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStream, RedirectToFileDescriptor, (int, bool));
1763baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStream, Clear, ());
1764baf5664fSJonas Devlieghere   }
1765baf5664fSJonas Devlieghere   {
1766baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBStringList, ());
1767baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBStringList, (const lldb::SBStringList &));
1768baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBStringList &,
1769baf5664fSJonas Devlieghere                          SBStringList, operator=,(const lldb::SBStringList &));
1770baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBStringList, IsValid, ());
1771baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStringList, AppendString, (const char *));
1772baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStringList, AppendList, (const char **, int));
1773baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStringList, AppendList,
1774baf5664fSJonas Devlieghere                          (const lldb::SBStringList &));
1775baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBStringList, GetSize, ());
1776baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBStringList, GetStringAtIndex,
1777baf5664fSJonas Devlieghere                          (size_t));
1778baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBStringList, GetStringAtIndex,
1779baf5664fSJonas Devlieghere                                (size_t));
1780baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStringList, Clear, ());
1781baf5664fSJonas Devlieghere   }
1782baf5664fSJonas Devlieghere   {
1783baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBStructuredData, ());
1784baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBStructuredData,
1785baf5664fSJonas Devlieghere                               (const lldb::SBStructuredData &));
1786baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBStructuredData, (const lldb::EventSP &));
1787baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBStructuredData,
1788baf5664fSJonas Devlieghere                               (lldb_private::StructuredDataImpl *));
1789baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1790baf5664fSJonas Devlieghere         lldb::SBStructuredData &,
1791baf5664fSJonas Devlieghere         SBStructuredData, operator=,(const lldb::SBStructuredData &));
1792baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBStructuredData, SetFromJSON,
1793baf5664fSJonas Devlieghere                          (lldb::SBStream &));
1794baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBStructuredData, IsValid, ());
1795baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBStructuredData, Clear, ());
1796baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBError, SBStructuredData, GetAsJSON,
1797baf5664fSJonas Devlieghere                                (lldb::SBStream &));
1798baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBError, SBStructuredData, GetDescription,
1799baf5664fSJonas Devlieghere                                (lldb::SBStream &));
1800baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::StructuredDataType, SBStructuredData,
1801baf5664fSJonas Devlieghere                                GetType, ());
1802baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(size_t, SBStructuredData, GetSize, ());
1803baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBStructuredData, GetKeys,
1804baf5664fSJonas Devlieghere                                (lldb::SBStringList &));
1805baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBStructuredData, SBStructuredData,
1806baf5664fSJonas Devlieghere                                GetValueForKey, (const char *));
1807baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBStructuredData, SBStructuredData,
1808baf5664fSJonas Devlieghere                                GetItemAtIndex, (size_t));
1809baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint64_t, SBStructuredData, GetIntegerValue,
1810baf5664fSJonas Devlieghere                                (uint64_t));
1811baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(double, SBStructuredData, GetFloatValue,
1812baf5664fSJonas Devlieghere                                (double));
1813baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBStructuredData, GetBooleanValue, (bool));
1814baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(size_t, SBStructuredData, GetStringValue,
1815baf5664fSJonas Devlieghere                                (char *, size_t));
1816baf5664fSJonas Devlieghere   }
1817baf5664fSJonas Devlieghere   {
1818baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSymbol, ());
1819baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSymbol, (const lldb::SBSymbol &));
1820baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBSymbol &,
1821baf5664fSJonas Devlieghere                          SBSymbol, operator=,(const lldb::SBSymbol &));
1822baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBSymbol, IsValid, ());
1823baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBSymbol, GetName, ());
1824baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBSymbol, GetDisplayName, ());
1825baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBSymbol, GetMangledName, ());
1826baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
1827baf5664fSJonas Devlieghere                                SBSymbol, operator==,(const lldb::SBSymbol &));
1828baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
1829baf5664fSJonas Devlieghere                                SBSymbol, operator!=,(const lldb::SBSymbol &));
1830baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBSymbol, GetDescription, (lldb::SBStream &));
1831baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBSymbol, GetInstructions,
1832baf5664fSJonas Devlieghere                          (lldb::SBTarget));
1833baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBSymbol, GetInstructions,
1834baf5664fSJonas Devlieghere                          (lldb::SBTarget, const char *));
1835baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBSymbol, GetStartAddress, ());
1836baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBSymbol, GetEndAddress, ());
1837baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBSymbol, GetPrologueByteSize, ());
1838baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SymbolType, SBSymbol, GetType, ());
1839baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBSymbol, IsExternal, ());
1840baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBSymbol, IsSynthetic, ());
1841baf5664fSJonas Devlieghere   }
1842baf5664fSJonas Devlieghere   {
1843baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSymbolContext, ());
1844baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSymbolContext,
1845baf5664fSJonas Devlieghere                               (const lldb_private::SymbolContext *));
1846baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSymbolContext, (const lldb::SBSymbolContext &));
1847baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1848baf5664fSJonas Devlieghere         const lldb::SBSymbolContext &,
1849baf5664fSJonas Devlieghere         SBSymbolContext, operator=,(const lldb::SBSymbolContext &));
1850baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBSymbolContext, IsValid, ());
1851baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModule, SBSymbolContext, GetModule, ());
1852baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBCompileUnit, SBSymbolContext, GetCompileUnit,
1853baf5664fSJonas Devlieghere                          ());
1854baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFunction, SBSymbolContext, GetFunction, ());
1855baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBlock, SBSymbolContext, GetBlock, ());
1856baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBLineEntry, SBSymbolContext, GetLineEntry, ());
1857baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbol, SBSymbolContext, GetSymbol, ());
1858baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContext, SetModule, (lldb::SBModule));
1859baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContext, SetCompileUnit,
1860baf5664fSJonas Devlieghere                          (lldb::SBCompileUnit));
1861baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContext, SetFunction,
1862baf5664fSJonas Devlieghere                          (lldb::SBFunction));
1863baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContext, SetBlock, (lldb::SBBlock));
1864baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContext, SetLineEntry,
1865baf5664fSJonas Devlieghere                          (lldb::SBLineEntry));
1866baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContext, SetSymbol, (lldb::SBSymbol));
1867baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBSymbolContext, GetDescription,
1868baf5664fSJonas Devlieghere                          (lldb::SBStream &));
1869baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBSymbolContext, SBSymbolContext,
1870baf5664fSJonas Devlieghere                                GetParentOfInlinedScope,
1871baf5664fSJonas Devlieghere                                (const lldb::SBAddress &, lldb::SBAddress &));
1872baf5664fSJonas Devlieghere   }
1873baf5664fSJonas Devlieghere   {
1874baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSymbolContextList, ());
1875baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBSymbolContextList,
1876baf5664fSJonas Devlieghere                               (const lldb::SBSymbolContextList &));
1877baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1878baf5664fSJonas Devlieghere         const lldb::SBSymbolContextList &,
1879baf5664fSJonas Devlieghere         SBSymbolContextList, operator=,(const lldb::SBSymbolContextList &));
1880baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBSymbolContextList, GetSize, ());
1881baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContext, SBSymbolContextList,
1882baf5664fSJonas Devlieghere                          GetContextAtIndex, (uint32_t));
1883baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContextList, Clear, ());
1884baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContextList, Append,
1885baf5664fSJonas Devlieghere                          (lldb::SBSymbolContext &));
1886baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBSymbolContextList, Append,
1887baf5664fSJonas Devlieghere                          (lldb::SBSymbolContextList &));
1888baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBSymbolContextList, IsValid, ());
1889baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBSymbolContextList, GetDescription,
1890baf5664fSJonas Devlieghere                          (lldb::SBStream &));
1891baf5664fSJonas Devlieghere   }
1892baf5664fSJonas Devlieghere   {
1893baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTarget, ());
1894baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTarget, (const lldb::SBTarget &));
1895baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTarget, (const lldb::TargetSP &));
1896baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBTarget &,
1897baf5664fSJonas Devlieghere                          SBTarget, operator=,(const lldb::SBTarget &));
1898baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBTarget, EventIsTargetEvent,
1899baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1900baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBTarget, SBTarget, GetTargetFromEvent,
1901baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1902baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(uint32_t, SBTarget, GetNumModulesFromEvent,
1903baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
1904baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBModule, SBTarget,
1905baf5664fSJonas Devlieghere                                 GetModuleAtIndexFromEvent,
1906baf5664fSJonas Devlieghere                                 (const uint32_t, const lldb::SBEvent &));
1907baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBTarget, GetBroadcasterClassName,
1908baf5664fSJonas Devlieghere                                 ());
1909baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTarget, IsValid, ());
1910baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, GetProcess, ());
1911baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBPlatform, SBTarget, GetPlatform, ());
1912baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBDebugger, SBTarget, GetDebugger, ());
1913baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBStructuredData, SBTarget, GetStatistics, ());
1914baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTarget, SetCollectingStats, (bool));
1915baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, GetCollectingStats, ());
1916baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, LoadCore, (const char *));
1917baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, LoadCore,
1918baf5664fSJonas Devlieghere                          (const char *, lldb::SBError &));
1919baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, LaunchSimple,
1920baf5664fSJonas Devlieghere                          (const char **, const char **, const char *));
1921baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, Install, ());
1922baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, Launch,
1923baf5664fSJonas Devlieghere                          (lldb::SBListener &, const char **, const char **,
1924baf5664fSJonas Devlieghere                           const char *, const char *, const char *,
1925baf5664fSJonas Devlieghere                           const char *, uint32_t, bool, lldb::SBError &));
1926baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, Launch,
1927baf5664fSJonas Devlieghere                          (lldb::SBLaunchInfo &, lldb::SBError &));
1928baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, Attach,
1929baf5664fSJonas Devlieghere                          (lldb::SBAttachInfo &, lldb::SBError &));
1930baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, AttachToProcessWithID,
1931baf5664fSJonas Devlieghere                          (lldb::SBListener &, lldb::pid_t, lldb::SBError &));
1932baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1933baf5664fSJonas Devlieghere         lldb::SBProcess, SBTarget, AttachToProcessWithName,
1934baf5664fSJonas Devlieghere         (lldb::SBListener &, const char *, bool, lldb::SBError &));
1935baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
1936baf5664fSJonas Devlieghere         lldb::SBProcess, SBTarget, ConnectRemote,
1937baf5664fSJonas Devlieghere         (lldb::SBListener &, const char *, const char *, lldb::SBError &));
1938baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBTarget, GetExecutable, ());
1939baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
1940baf5664fSJonas Devlieghere                                SBTarget, operator==,(const lldb::SBTarget &));
1941baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
1942baf5664fSJonas Devlieghere                                SBTarget, operator!=,(const lldb::SBTarget &));
1943baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBTarget, ResolveLoadAddress,
1944baf5664fSJonas Devlieghere                          (lldb::addr_t));
1945baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBTarget, ResolveFileAddress,
1946baf5664fSJonas Devlieghere                          (lldb::addr_t));
1947baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBTarget, ResolvePastLoadAddress,
1948baf5664fSJonas Devlieghere                          (uint32_t, lldb::addr_t));
1949baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContext, SBTarget,
1950baf5664fSJonas Devlieghere                          ResolveSymbolContextForAddress,
1951baf5664fSJonas Devlieghere                          (const lldb::SBAddress &, uint32_t));
1952baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
1953baf5664fSJonas Devlieghere                          BreakpointCreateByLocation, (const char *, uint32_t));
1954baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
1955baf5664fSJonas Devlieghere                          BreakpointCreateByLocation,
1956baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &, uint32_t));
1957baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
1958baf5664fSJonas Devlieghere                          BreakpointCreateByLocation,
1959baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &, uint32_t, lldb::addr_t));
1960baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
1961baf5664fSJonas Devlieghere                          BreakpointCreateByLocation,
1962baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &, uint32_t, lldb::addr_t,
1963baf5664fSJonas Devlieghere                           lldb::SBFileSpecList &));
1964baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
1965baf5664fSJonas Devlieghere                          BreakpointCreateByLocation,
1966baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &, uint32_t, uint32_t,
1967baf5664fSJonas Devlieghere                           lldb::addr_t, lldb::SBFileSpecList &));
1968baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName,
1969baf5664fSJonas Devlieghere                          (const char *, const char *));
1970baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName,
1971baf5664fSJonas Devlieghere                          (const char *, const lldb::SBFileSpecList &,
1972baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
1973baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName,
1974baf5664fSJonas Devlieghere                          (const char *, uint32_t, const lldb::SBFileSpecList &,
1975baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
1976baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName,
1977baf5664fSJonas Devlieghere                          (const char *, uint32_t, lldb::LanguageType,
1978baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &,
1979baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
1980baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames,
1981baf5664fSJonas Devlieghere                          (const char **, uint32_t, uint32_t,
1982baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &,
1983baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
1984baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames,
1985baf5664fSJonas Devlieghere                          (const char **, uint32_t, uint32_t, lldb::LanguageType,
1986baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &,
1987baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
1988baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames,
1989baf5664fSJonas Devlieghere                          (const char **, uint32_t, uint32_t, lldb::LanguageType,
1990baf5664fSJonas Devlieghere                           lldb::addr_t, const lldb::SBFileSpecList &,
1991baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
1992baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex,
1993baf5664fSJonas Devlieghere                          (const char *, const char *));
1994baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex,
1995baf5664fSJonas Devlieghere                          (const char *, const lldb::SBFileSpecList &,
1996baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
1997baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex,
1998baf5664fSJonas Devlieghere                          (const char *, lldb::LanguageType,
1999baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &,
2000baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
2001baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
2002baf5664fSJonas Devlieghere                          BreakpointCreateByAddress, (lldb::addr_t));
2003baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
2004baf5664fSJonas Devlieghere                          BreakpointCreateBySBAddress, (lldb::SBAddress &));
2005baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2006baf5664fSJonas Devlieghere         lldb::SBBreakpoint, SBTarget, BreakpointCreateBySourceRegex,
2007baf5664fSJonas Devlieghere         (const char *, const lldb::SBFileSpec &, const char *));
2008baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
2009baf5664fSJonas Devlieghere                          BreakpointCreateBySourceRegex,
2010baf5664fSJonas Devlieghere                          (const char *, const lldb::SBFileSpecList &,
2011baf5664fSJonas Devlieghere                           const lldb::SBFileSpecList &));
2012baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2013baf5664fSJonas Devlieghere         lldb::SBBreakpoint, SBTarget, BreakpointCreateBySourceRegex,
2014baf5664fSJonas Devlieghere         (const char *, const lldb::SBFileSpecList &,
2015baf5664fSJonas Devlieghere          const lldb::SBFileSpecList &, const lldb::SBStringList &));
2016baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget,
2017baf5664fSJonas Devlieghere                          BreakpointCreateForException,
2018baf5664fSJonas Devlieghere                          (lldb::LanguageType, bool, bool));
2019baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2020baf5664fSJonas Devlieghere         lldb::SBBreakpoint, SBTarget, BreakpointCreateFromScript,
2021baf5664fSJonas Devlieghere         (const char *, lldb::SBStructuredData &, const lldb::SBFileSpecList &,
2022baf5664fSJonas Devlieghere          const lldb::SBFileSpecList &, bool));
2023baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBTarget, GetNumBreakpoints, ());
2024baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBBreakpoint, SBTarget,
2025baf5664fSJonas Devlieghere                                GetBreakpointAtIndex, (uint32_t));
2026baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, BreakpointDelete, (lldb::break_id_t));
2027baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, FindBreakpointByID,
2028baf5664fSJonas Devlieghere                          (lldb::break_id_t));
2029baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, FindBreakpointsByName,
2030baf5664fSJonas Devlieghere                          (const char *, lldb::SBBreakpointList &));
2031baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTarget, GetBreakpointNames,
2032baf5664fSJonas Devlieghere                          (lldb::SBStringList &));
2033baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTarget, DeleteBreakpointName, (const char *));
2034baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, EnableAllBreakpoints, ());
2035baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, DisableAllBreakpoints, ());
2036baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, DeleteAllBreakpoints, ());
2037baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, BreakpointsCreateFromFile,
2038baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &, lldb::SBBreakpointList &));
2039baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2040baf5664fSJonas Devlieghere         lldb::SBError, SBTarget, BreakpointsCreateFromFile,
2041baf5664fSJonas Devlieghere         (lldb::SBFileSpec &, lldb::SBStringList &, lldb::SBBreakpointList &));
2042baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, BreakpointsWriteToFile,
2043baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &));
2044baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, BreakpointsWriteToFile,
2045baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &, lldb::SBBreakpointList &, bool));
2046baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBTarget, GetNumWatchpoints, ());
2047baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBWatchpoint, SBTarget,
2048baf5664fSJonas Devlieghere                                GetWatchpointAtIndex, (uint32_t));
2049baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, DeleteWatchpoint, (lldb::watch_id_t));
2050baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBTarget, FindWatchpointByID,
2051baf5664fSJonas Devlieghere                          (lldb::watch_id_t));
2052baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBTarget, WatchAddress,
2053baf5664fSJonas Devlieghere                          (lldb::addr_t, size_t, bool, bool, lldb::SBError &));
2054baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, EnableAllWatchpoints, ());
2055baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, DisableAllWatchpoints, ());
2056baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, CreateValueFromAddress,
2057baf5664fSJonas Devlieghere                          (const char *, lldb::SBAddress, lldb::SBType));
2058baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, CreateValueFromData,
2059baf5664fSJonas Devlieghere                          (const char *, lldb::SBData, lldb::SBType));
2060baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, CreateValueFromExpression,
2061baf5664fSJonas Devlieghere                          (const char *, const char *));
2062baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, DeleteAllWatchpoints, ());
2063baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTarget, AppendImageSearchPath,
2064baf5664fSJonas Devlieghere                          (const char *, const char *, lldb::SBError &));
2065baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, AddModule,
2066baf5664fSJonas Devlieghere                          (const char *, const char *, const char *));
2067baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2068baf5664fSJonas Devlieghere         lldb::SBModule, SBTarget, AddModule,
2069baf5664fSJonas Devlieghere         (const char *, const char *, const char *, const char *));
2070baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, AddModule,
2071baf5664fSJonas Devlieghere                          (const lldb::SBModuleSpec &));
2072baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, AddModule, (lldb::SBModule &));
2073baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBTarget, GetNumModules, ());
2074baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTarget, Clear, ());
2075baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, FindModule,
2076baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
2077baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBTarget, FindCompileUnits,
2078baf5664fSJonas Devlieghere                          (const lldb::SBFileSpec &));
2079baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ByteOrder, SBTarget, GetByteOrder, ());
2080baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTarget, GetTriple, ());
2081baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTarget, GetDataByteSize, ());
2082baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTarget, GetCodeByteSize, ());
2083baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTarget, GetAddressByteSize, ());
2084baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, GetModuleAtIndex,
2085baf5664fSJonas Devlieghere                          (uint32_t));
2086baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, RemoveModule, (lldb::SBModule));
2087baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBBroadcaster, SBTarget, GetBroadcaster,
2088baf5664fSJonas Devlieghere                                ());
2089baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTarget, GetDescription,
2090baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2091baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBTarget, FindFunctions,
2092baf5664fSJonas Devlieghere                          (const char *, uint32_t));
2093baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBTarget,
2094baf5664fSJonas Devlieghere                          FindGlobalFunctions,
2095baf5664fSJonas Devlieghere                          (const char *, uint32_t, lldb::MatchType));
2096baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTarget, FindFirstType, (const char *));
2097baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTarget, GetBasicType,
2098baf5664fSJonas Devlieghere                          (lldb::BasicType));
2099baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeList, SBTarget, FindTypes, (const char *));
2100baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables,
2101baf5664fSJonas Devlieghere                          (const char *, uint32_t));
2102baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables,
2103baf5664fSJonas Devlieghere                          (const char *, uint32_t, lldb::MatchType));
2104baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, FindFirstGlobalVariable,
2105baf5664fSJonas Devlieghere                          (const char *));
2106baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSourceManager, SBTarget, GetSourceManager, ());
2107baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBTarget, ReadInstructions,
2108baf5664fSJonas Devlieghere                          (lldb::SBAddress, uint32_t));
2109baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBTarget, ReadInstructions,
2110baf5664fSJonas Devlieghere                          (lldb::SBAddress, uint32_t, const char *));
2111baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, SetSectionLoadAddress,
2112baf5664fSJonas Devlieghere                          (lldb::SBSection, lldb::addr_t));
2113baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, ClearSectionLoadAddress,
2114baf5664fSJonas Devlieghere                          (lldb::SBSection));
2115baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, SetModuleLoadAddress,
2116baf5664fSJonas Devlieghere                          (lldb::SBModule, int64_t));
2117baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, ClearModuleLoadAddress,
2118baf5664fSJonas Devlieghere                          (lldb::SBModule));
2119baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBTarget, FindSymbols,
2120baf5664fSJonas Devlieghere                          (const char *, lldb::SymbolType));
2121baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, EvaluateExpression,
2122baf5664fSJonas Devlieghere                          (const char *));
2123baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, EvaluateExpression,
2124baf5664fSJonas Devlieghere                          (const char *, const lldb::SBExpressionOptions &));
2125baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBTarget, GetStackRedZoneSize, ());
2126baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBLaunchInfo, SBTarget, GetLaunchInfo, ());
2127baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTarget, SetLaunchInfo,
2128baf5664fSJonas Devlieghere                          (const lldb::SBLaunchInfo &));
2129baf5664fSJonas Devlieghere   }
2130baf5664fSJonas Devlieghere   {
2131baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(const char *, SBThread, GetBroadcasterClassName,
2132baf5664fSJonas Devlieghere                                 ());
2133baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThread, ());
2134baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThread, (const lldb::ThreadSP &));
2135baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThread, (const lldb::SBThread &));
2136baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBThread &,
2137baf5664fSJonas Devlieghere                          SBThread, operator=,(const lldb::SBThread &));
2138baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBQueue, SBThread, GetQueue, ());
2139baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBThread, IsValid, ());
2140baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, Clear, ());
2141baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::StopReason, SBThread, GetStopReason, ());
2142baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBThread, GetStopReasonDataCount, ());
2143baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBThread, GetStopReasonDataAtIndex,
2144baf5664fSJonas Devlieghere                          (uint32_t));
2145baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, GetStopReasonExtendedInfoAsJSON,
2146baf5664fSJonas Devlieghere                          (lldb::SBStream &));
2147baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadCollection, SBThread,
2148baf5664fSJonas Devlieghere                          GetStopReasonExtendedBacktraces,
2149baf5664fSJonas Devlieghere                          (lldb::InstrumentationRuntimeType));
2150baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBThread, GetStopDescription,
2151baf5664fSJonas Devlieghere                          (char *, size_t));
2152baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBThread, GetStopReturnValue, ());
2153baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::tid_t, SBThread, GetThreadID, ());
2154baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBThread, GetIndexID, ());
2155baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBThread, GetName, ());
2156baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBThread, GetQueueName, ());
2157baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::queue_id_t, SBThread, GetQueueID, ());
2158baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, GetInfoItemByPathAsString,
2159baf5664fSJonas Devlieghere                          (const char *, lldb::SBStream &));
2160baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepOver, (lldb::RunMode));
2161baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepOver,
2162baf5664fSJonas Devlieghere                          (lldb::RunMode, lldb::SBError &));
2163baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepInto, (lldb::RunMode));
2164baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepInto,
2165baf5664fSJonas Devlieghere                          (const char *, lldb::RunMode));
2166baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2167baf5664fSJonas Devlieghere         void, SBThread, StepInto,
2168baf5664fSJonas Devlieghere         (const char *, uint32_t, lldb::SBError &, lldb::RunMode));
2169baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepOut, ());
2170baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepOut, (lldb::SBError &));
2171baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepOutOfFrame, (lldb::SBFrame &));
2172baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepOutOfFrame,
2173baf5664fSJonas Devlieghere                          (lldb::SBFrame &, lldb::SBError &));
2174baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepInstruction, (bool));
2175baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, StepInstruction,
2176baf5664fSJonas Devlieghere                          (bool, lldb::SBError &));
2177baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, RunToAddress, (lldb::addr_t));
2178baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThread, RunToAddress,
2179baf5664fSJonas Devlieghere                          (lldb::addr_t, lldb::SBError &));
2180baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBThread, StepOverUntil,
2181baf5664fSJonas Devlieghere                          (lldb::SBFrame &, lldb::SBFileSpec &, uint32_t));
2182baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBThread, StepUsingScriptedThreadPlan,
2183baf5664fSJonas Devlieghere                          (const char *));
2184baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBThread, StepUsingScriptedThreadPlan,
2185baf5664fSJonas Devlieghere                          (const char *, bool));
2186baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBThread, JumpToLine,
2187baf5664fSJonas Devlieghere                          (lldb::SBFileSpec &, uint32_t));
2188baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBThread, ReturnFromFrame,
2189baf5664fSJonas Devlieghere                          (lldb::SBFrame &, lldb::SBValue &));
2190baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBThread, UnwindInnermostExpression,
2191baf5664fSJonas Devlieghere                          ());
2192baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, Suspend, ());
2193baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, Suspend, (lldb::SBError &));
2194baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, Resume, ());
2195baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, Resume, (lldb::SBError &));
2196baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, IsSuspended, ());
2197baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, IsStopped, ());
2198baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBThread, GetProcess, ());
2199baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBThread, GetNumFrames, ());
2200baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFrame, SBThread, GetFrameAtIndex, (uint32_t));
2201baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFrame, SBThread, GetSelectedFrame, ());
2202baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFrame, SBThread, SetSelectedFrame, (uint32_t));
2203baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBThread, EventIsThreadEvent,
2204baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
2205baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBFrame, SBThread, GetStackFrameFromEvent,
2206baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
2207baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBThread, SBThread, GetThreadFromEvent,
2208baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
2209baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
2210baf5664fSJonas Devlieghere                                SBThread, operator==,(const lldb::SBThread &));
2211baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool,
2212baf5664fSJonas Devlieghere                                SBThread, operator!=,(const lldb::SBThread &));
2213baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBThread, GetStatus, (lldb::SBStream &));
2214baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBThread, GetDescription,
2215baf5664fSJonas Devlieghere                                (lldb::SBStream &));
2216baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBThread, GetDescription,
2217baf5664fSJonas Devlieghere                                (lldb::SBStream &, bool));
2218baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBThread, GetExtendedBacktraceThread,
2219baf5664fSJonas Devlieghere                          (const char *));
2220baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBThread,
2221baf5664fSJonas Devlieghere                          GetExtendedBacktraceOriginatingIndexID, ());
2222baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBThread, GetCurrentException, ());
2223baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBThread, GetCurrentExceptionBacktrace,
2224baf5664fSJonas Devlieghere                          ());
2225baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThread, SafeToCallFunctions, ());
2226baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb_private::Thread *, SBThread, operator->,());
2227baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb_private::Thread *, SBThread, get, ());
2228baf5664fSJonas Devlieghere   }
2229baf5664fSJonas Devlieghere   {
2230baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThreadCollection, ());
2231baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThreadCollection,
2232baf5664fSJonas Devlieghere                               (const lldb::SBThreadCollection &));
2233baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2234baf5664fSJonas Devlieghere         const lldb::SBThreadCollection &,
2235baf5664fSJonas Devlieghere         SBThreadCollection, operator=,(const lldb::SBThreadCollection &));
2236baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBThreadCollection, IsValid, ());
2237baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBThreadCollection, GetSize, ());
2238baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBThreadCollection, GetThreadAtIndex,
2239baf5664fSJonas Devlieghere                          (size_t));
2240baf5664fSJonas Devlieghere   }
2241baf5664fSJonas Devlieghere   {
2242baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThreadPlan, ());
2243baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThreadPlan, (const lldb::ThreadPlanSP &));
2244baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThreadPlan, (const lldb::SBThreadPlan &));
2245baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBThreadPlan, (lldb::SBThread &, const char *));
2246baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBThreadPlan &,
2247baf5664fSJonas Devlieghere                          SBThreadPlan, operator=,(const lldb::SBThreadPlan &));
2248baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb_private::ThreadPlan *, SBThreadPlan, get, ());
2249baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBThreadPlan, IsValid, ());
2250baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThreadPlan, Clear, ());
2251baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::StopReason, SBThreadPlan, GetStopReason, ());
2252baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBThreadPlan, GetStopReasonDataCount, ());
2253baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBThreadPlan, GetStopReasonDataAtIndex,
2254baf5664fSJonas Devlieghere                          (uint32_t));
2255baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBThreadPlan, GetThread, ());
2256baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBThreadPlan, GetDescription,
2257baf5664fSJonas Devlieghere                                (lldb::SBStream &));
2258baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBThreadPlan, SetPlanComplete, (bool));
2259baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThreadPlan, IsPlanComplete, ());
2260baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThreadPlan, IsPlanStale, ());
2261baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBThreadPlan, IsValid, ());
2262baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2263baf5664fSJonas Devlieghere                          QueueThreadPlanForStepOverRange,
2264baf5664fSJonas Devlieghere                          (lldb::SBAddress &, lldb::addr_t));
2265baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2266baf5664fSJonas Devlieghere                          QueueThreadPlanForStepOverRange,
2267baf5664fSJonas Devlieghere                          (lldb::SBAddress &, lldb::addr_t, lldb::SBError &));
2268baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2269baf5664fSJonas Devlieghere                          QueueThreadPlanForStepInRange,
2270baf5664fSJonas Devlieghere                          (lldb::SBAddress &, lldb::addr_t));
2271baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2272baf5664fSJonas Devlieghere                          QueueThreadPlanForStepInRange,
2273baf5664fSJonas Devlieghere                          (lldb::SBAddress &, lldb::addr_t, lldb::SBError &));
2274baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2275baf5664fSJonas Devlieghere                          QueueThreadPlanForStepOut, (uint32_t, bool));
2276baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2277baf5664fSJonas Devlieghere                          QueueThreadPlanForStepOut,
2278baf5664fSJonas Devlieghere                          (uint32_t, bool, lldb::SBError &));
2279baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2280baf5664fSJonas Devlieghere                          QueueThreadPlanForRunToAddress, (lldb::SBAddress));
2281baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2282baf5664fSJonas Devlieghere                          QueueThreadPlanForRunToAddress,
2283baf5664fSJonas Devlieghere                          (lldb::SBAddress, lldb::SBError &));
2284baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2285baf5664fSJonas Devlieghere                          QueueThreadPlanForStepScripted, (const char *));
2286baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThreadPlan, SBThreadPlan,
2287baf5664fSJonas Devlieghere                          QueueThreadPlanForStepScripted,
2288baf5664fSJonas Devlieghere                          (const char *, lldb::SBError &));
2289baf5664fSJonas Devlieghere   }
2290baf5664fSJonas Devlieghere   {
2291baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTrace, StopTrace,
2292baf5664fSJonas Devlieghere                          (lldb::SBError &, lldb::tid_t));
2293baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTrace, GetTraceConfig,
2294baf5664fSJonas Devlieghere                          (lldb::SBTraceOptions &, lldb::SBError &));
2295baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::user_id_t, SBTrace, GetTraceUID, ());
2296baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTrace, ());
2297baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTrace, IsValid, ());
2298baf5664fSJonas Devlieghere   }
2299baf5664fSJonas Devlieghere   {
2300baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTraceOptions, ());
2301baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::TraceType, SBTraceOptions, getType, ());
2302baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint64_t, SBTraceOptions, getTraceBufferSize,
2303baf5664fSJonas Devlieghere                                ());
2304baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBStructuredData, SBTraceOptions, getTraceParams,
2305baf5664fSJonas Devlieghere                          (lldb::SBError &));
2306baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint64_t, SBTraceOptions, getMetaDataBufferSize,
2307baf5664fSJonas Devlieghere                                ());
2308baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTraceOptions, setTraceParams,
2309baf5664fSJonas Devlieghere                          (lldb::SBStructuredData &));
2310baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTraceOptions, setType, (lldb::TraceType));
2311baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTraceOptions, setTraceBufferSize, (uint64_t));
2312baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTraceOptions, setMetaDataBufferSize,
2313baf5664fSJonas Devlieghere                          (uint64_t));
2314baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTraceOptions, IsValid, ());
2315baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTraceOptions, setThreadID, (lldb::tid_t));
2316baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::tid_t, SBTraceOptions, getThreadID, ());
2317baf5664fSJonas Devlieghere   }
2318baf5664fSJonas Devlieghere   {
2319baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBType, ());
2320baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBType, (const lldb::SBType &));
2321baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, operator==,(lldb::SBType &));
2322baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, operator!=,(lldb::SBType &));
2323baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType &,
2324baf5664fSJonas Devlieghere                          SBType, operator=,(const lldb::SBType &));
2325baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBType, IsValid, ());
2326baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBType, GetByteSize, ());
2327baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsPointerType, ());
2328baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsArrayType, ());
2329baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsVectorType, ());
2330baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsReferenceType, ());
2331baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetPointerType, ());
2332baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetPointeeType, ());
2333baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetReferenceType, ());
2334baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetTypedefedType, ());
2335baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetDereferencedType, ());
2336baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetArrayElementType, ());
2337baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetArrayType, (uint64_t));
2338baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetVectorElementType, ());
2339baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsFunctionType, ());
2340baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsPolymorphicClass, ());
2341baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsTypedefType, ());
2342baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsAnonymousType, ());
2343baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetFunctionReturnType, ());
2344baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeList, SBType, GetFunctionArgumentTypes,
2345baf5664fSJonas Devlieghere                          ());
2346baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBType, GetNumberOfMemberFunctions, ());
2347baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeMemberFunction, SBType,
2348baf5664fSJonas Devlieghere                          GetMemberFunctionAtIndex, (uint32_t));
2349baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetUnqualifiedType, ());
2350baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetCanonicalType, ());
2351baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::BasicType, SBType, GetBasicType, ());
2352baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetBasicType, (lldb::BasicType));
2353baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBType, GetNumberOfDirectBaseClasses, ());
2354baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBType, GetNumberOfVirtualBaseClasses, ());
2355baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBType, GetNumberOfFields, ());
2356baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, GetDescription,
2357baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2358baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeMember, SBType, GetDirectBaseClassAtIndex,
2359baf5664fSJonas Devlieghere                          (uint32_t));
2360baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeMember, SBType, GetVirtualBaseClassAtIndex,
2361baf5664fSJonas Devlieghere                          (uint32_t));
2362baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeEnumMemberList, SBType, GetEnumMembers,
2363baf5664fSJonas Devlieghere                          ());
2364baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeMember, SBType, GetFieldAtIndex,
2365baf5664fSJonas Devlieghere                          (uint32_t));
2366baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBType, IsTypeComplete, ());
2367baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBType, GetTypeFlags, ());
2368baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBType, GetName, ());
2369baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBType, GetDisplayTypeName, ());
2370baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::TypeClass, SBType, GetTypeClass, ());
2371baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBType, GetNumberOfTemplateArguments, ());
2372baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBType, GetTemplateArgumentType,
2373baf5664fSJonas Devlieghere                          (uint32_t));
2374baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::TemplateArgumentKind, SBType,
2375baf5664fSJonas Devlieghere                          GetTemplateArgumentKind, (uint32_t));
2376baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeList, ());
2377baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeList, (const lldb::SBTypeList &));
2378baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeList, IsValid, ());
2379baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeList &,
2380baf5664fSJonas Devlieghere                          SBTypeList, operator=,(const lldb::SBTypeList &));
2381baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeList, Append, (lldb::SBType));
2382baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTypeList, GetTypeAtIndex, (uint32_t));
2383baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeList, GetSize, ());
2384baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeMember, ());
2385baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeMember, (const lldb::SBTypeMember &));
2386baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeMember &,
2387baf5664fSJonas Devlieghere                          SBTypeMember, operator=,(const lldb::SBTypeMember &));
2388baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeMember, IsValid, ());
2389baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeMember, GetName, ());
2390baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTypeMember, GetType, ());
2391baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBTypeMember, GetOffsetInBytes, ());
2392baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBTypeMember, GetOffsetInBits, ());
2393baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeMember, IsBitfield, ());
2394baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeMember, GetBitfieldSizeInBits, ());
2395baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeMember, GetDescription,
2396baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2397baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeMemberFunction, ());
2398baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeMemberFunction,
2399baf5664fSJonas Devlieghere                               (const lldb::SBTypeMemberFunction &));
2400baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2401baf5664fSJonas Devlieghere         lldb::SBTypeMemberFunction &,
2402baf5664fSJonas Devlieghere         SBTypeMemberFunction, operator=,(const lldb::SBTypeMemberFunction &));
2403baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeMemberFunction, IsValid, ());
2404baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeMemberFunction, GetName, ());
2405baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeMemberFunction, GetDemangledName,
2406baf5664fSJonas Devlieghere                          ());
2407baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeMemberFunction, GetMangledName,
2408baf5664fSJonas Devlieghere                          ());
2409baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTypeMemberFunction, GetType, ());
2410baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTypeMemberFunction, GetReturnType, ());
2411baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeMemberFunction, GetNumberOfArguments,
2412baf5664fSJonas Devlieghere                          ());
2413baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTypeMemberFunction,
2414baf5664fSJonas Devlieghere                          GetArgumentTypeAtIndex, (uint32_t));
2415baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::MemberFunctionKind, SBTypeMemberFunction,
2416baf5664fSJonas Devlieghere                          GetKind, ());
2417baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeMemberFunction, GetDescription,
2418baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2419baf5664fSJonas Devlieghere   }
2420baf5664fSJonas Devlieghere   {
2421baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeCategory, ());
2422baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeCategory, (const lldb::SBTypeCategory &));
2423baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeCategory, IsValid, ());
2424baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, GetEnabled, ());
2425baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeCategory, SetEnabled, (bool));
2426baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeCategory, GetName, ());
2427baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::LanguageType, SBTypeCategory, GetLanguageAtIndex,
2428baf5664fSJonas Devlieghere                          (uint32_t));
2429baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeCategory, GetNumLanguages, ());
2430baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeCategory, AddLanguage,
2431baf5664fSJonas Devlieghere                          (lldb::LanguageType));
2432baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeCategory, GetNumFormats, ());
2433baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeCategory, GetNumSummaries, ());
2434baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeCategory, GetNumFilters, ());
2435baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeCategory, GetNumSynthetics, ());
2436baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeNameSpecifier, SBTypeCategory,
2437baf5664fSJonas Devlieghere                          GetTypeNameSpecifierForFilterAtIndex, (uint32_t));
2438baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeNameSpecifier, SBTypeCategory,
2439baf5664fSJonas Devlieghere                          GetTypeNameSpecifierForFormatAtIndex, (uint32_t));
2440baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeNameSpecifier, SBTypeCategory,
2441baf5664fSJonas Devlieghere                          GetTypeNameSpecifierForSummaryAtIndex, (uint32_t));
2442baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeNameSpecifier, SBTypeCategory,
2443baf5664fSJonas Devlieghere                          GetTypeNameSpecifierForSyntheticAtIndex, (uint32_t));
2444baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFilter, SBTypeCategory, GetFilterForType,
2445baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
2446baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFormat, SBTypeCategory, GetFormatForType,
2447baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
2448baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeSummary, SBTypeCategory, GetSummaryForType,
2449baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
2450baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeSynthetic, SBTypeCategory,
2451baf5664fSJonas Devlieghere                          GetSyntheticForType, (lldb::SBTypeNameSpecifier));
2452baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFilter, SBTypeCategory, GetFilterAtIndex,
2453baf5664fSJonas Devlieghere                          (uint32_t));
2454baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFormat, SBTypeCategory, GetFormatAtIndex,
2455baf5664fSJonas Devlieghere                          (uint32_t));
2456baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeSummary, SBTypeCategory, GetSummaryAtIndex,
2457baf5664fSJonas Devlieghere                          (uint32_t));
2458baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeSynthetic, SBTypeCategory,
2459baf5664fSJonas Devlieghere                          GetSyntheticAtIndex, (uint32_t));
2460baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, AddTypeFormat,
2461baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier, lldb::SBTypeFormat));
2462baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, DeleteTypeFormat,
2463baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
2464baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, AddTypeSummary,
2465baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier, lldb::SBTypeSummary));
2466baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, DeleteTypeSummary,
2467baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
2468baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, AddTypeFilter,
2469baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier, lldb::SBTypeFilter));
2470baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, DeleteTypeFilter,
2471baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
2472baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, AddTypeSynthetic,
2473baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier, lldb::SBTypeSynthetic));
2474baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, DeleteTypeSynthetic,
2475baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier));
2476baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeCategory, GetDescription,
2477baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2478baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2479baf5664fSJonas Devlieghere         lldb::SBTypeCategory &,
2480baf5664fSJonas Devlieghere         SBTypeCategory, operator=,(const lldb::SBTypeCategory &));
2481baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool,
2482baf5664fSJonas Devlieghere                          SBTypeCategory, operator==,(lldb::SBTypeCategory &));
2483baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool,
2484baf5664fSJonas Devlieghere                          SBTypeCategory, operator!=,(lldb::SBTypeCategory &));
2485baf5664fSJonas Devlieghere   }
2486baf5664fSJonas Devlieghere   {
2487baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeEnumMember, ());
2488baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeEnumMember,
2489baf5664fSJonas Devlieghere                               (const lldb::SBTypeEnumMember &));
2490baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2491baf5664fSJonas Devlieghere         lldb::SBTypeEnumMember &,
2492baf5664fSJonas Devlieghere         SBTypeEnumMember, operator=,(const lldb::SBTypeEnumMember &));
2493baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeEnumMember, IsValid, ());
2494baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeEnumMember, GetName, ());
2495baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int64_t, SBTypeEnumMember, GetValueAsSigned, ());
2496baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBTypeEnumMember, GetValueAsUnsigned, ());
2497baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTypeEnumMember, GetType, ());
2498baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeEnumMemberList, ());
2499baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeEnumMemberList,
2500baf5664fSJonas Devlieghere                               (const lldb::SBTypeEnumMemberList &));
2501baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeEnumMemberList, IsValid, ());
2502baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2503baf5664fSJonas Devlieghere         lldb::SBTypeEnumMemberList &,
2504baf5664fSJonas Devlieghere         SBTypeEnumMemberList, operator=,(const lldb::SBTypeEnumMemberList &));
2505baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeEnumMemberList, Append,
2506baf5664fSJonas Devlieghere                          (lldb::SBTypeEnumMember));
2507baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeEnumMember, SBTypeEnumMemberList,
2508baf5664fSJonas Devlieghere                          GetTypeEnumMemberAtIndex, (uint32_t));
2509baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeEnumMemberList, GetSize, ());
2510baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeEnumMember, GetDescription,
2511baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2512baf5664fSJonas Devlieghere   }
2513baf5664fSJonas Devlieghere   {
2514baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeFilter, ());
2515baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeFilter, (uint32_t));
2516baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeFilter, (const lldb::SBTypeFilter &));
2517baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeFilter, IsValid, ());
2518baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeFilter, GetOptions, ());
2519baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeFilter, SetOptions, (uint32_t));
2520baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFilter, GetDescription,
2521baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2522baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeFilter, Clear, ());
2523baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeFilter, GetNumberOfExpressionPaths,
2524baf5664fSJonas Devlieghere                          ());
2525baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeFilter, GetExpressionPathAtIndex,
2526baf5664fSJonas Devlieghere                          (uint32_t));
2527baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFilter, ReplaceExpressionPathAtIndex,
2528baf5664fSJonas Devlieghere                          (uint32_t, const char *));
2529baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeFilter, AppendExpressionPath,
2530baf5664fSJonas Devlieghere                          (const char *));
2531baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFilter &,
2532baf5664fSJonas Devlieghere                          SBTypeFilter, operator=,(const lldb::SBTypeFilter &));
2533baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFilter, operator==,(lldb::SBTypeFilter &));
2534baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFilter, IsEqualTo, (lldb::SBTypeFilter &));
2535baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFilter, operator!=,(lldb::SBTypeFilter &));
2536baf5664fSJonas Devlieghere   }
2537baf5664fSJonas Devlieghere   {
2538baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeFormat, ());
2539baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeFormat, (lldb::Format, uint32_t));
2540baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeFormat, (const char *, uint32_t));
2541baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeFormat, (const lldb::SBTypeFormat &));
2542baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeFormat, IsValid, ());
2543baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::Format, SBTypeFormat, GetFormat, ());
2544baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeFormat, GetTypeName, ());
2545baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeFormat, GetOptions, ());
2546baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeFormat, SetFormat, (lldb::Format));
2547baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeFormat, SetTypeName, (const char *));
2548baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeFormat, SetOptions, (uint32_t));
2549baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFormat, GetDescription,
2550baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2551baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFormat &,
2552baf5664fSJonas Devlieghere                          SBTypeFormat, operator=,(const lldb::SBTypeFormat &));
2553baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFormat, operator==,(lldb::SBTypeFormat &));
2554baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFormat, IsEqualTo, (lldb::SBTypeFormat &));
2555baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeFormat, operator!=,(lldb::SBTypeFormat &));
2556baf5664fSJonas Devlieghere   }
2557baf5664fSJonas Devlieghere   {
2558baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeNameSpecifier, ());
2559baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeNameSpecifier, (const char *, bool));
2560baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeNameSpecifier, (lldb::SBType));
2561baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeNameSpecifier,
2562baf5664fSJonas Devlieghere                               (const lldb::SBTypeNameSpecifier &));
2563baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeNameSpecifier, IsValid, ());
2564baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeNameSpecifier, GetName, ());
2565baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBTypeNameSpecifier, GetType, ());
2566baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeNameSpecifier, IsRegex, ());
2567baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeNameSpecifier, GetDescription,
2568baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2569baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2570baf5664fSJonas Devlieghere         lldb::SBTypeNameSpecifier &,
2571baf5664fSJonas Devlieghere         SBTypeNameSpecifier, operator=,(const lldb::SBTypeNameSpecifier &));
2572baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2573baf5664fSJonas Devlieghere         bool, SBTypeNameSpecifier, operator==,(lldb::SBTypeNameSpecifier &));
2574baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeNameSpecifier, IsEqualTo,
2575baf5664fSJonas Devlieghere                          (lldb::SBTypeNameSpecifier &));
2576baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2577baf5664fSJonas Devlieghere         bool, SBTypeNameSpecifier, operator!=,(lldb::SBTypeNameSpecifier &));
2578baf5664fSJonas Devlieghere   }
2579baf5664fSJonas Devlieghere   {
2580baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeSummaryOptions, ());
2581baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeSummaryOptions,
2582baf5664fSJonas Devlieghere                               (const lldb::SBTypeSummaryOptions &));
2583baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSummaryOptions, IsValid, ());
2584baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::LanguageType, SBTypeSummaryOptions, GetLanguage,
2585baf5664fSJonas Devlieghere                          ());
2586baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::TypeSummaryCapping, SBTypeSummaryOptions,
2587baf5664fSJonas Devlieghere                          GetCapping, ());
2588baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSummaryOptions, SetLanguage,
2589baf5664fSJonas Devlieghere                          (lldb::LanguageType));
2590baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSummaryOptions, SetCapping,
2591baf5664fSJonas Devlieghere                          (lldb::TypeSummaryCapping));
2592baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeSummaryOptions,
2593baf5664fSJonas Devlieghere                               (const lldb_private::TypeSummaryOptions *));
2594baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeSummary, ());
2595baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBTypeSummary, SBTypeSummary,
2596baf5664fSJonas Devlieghere                                 CreateWithSummaryString,
2597baf5664fSJonas Devlieghere                                 (const char *, uint32_t));
2598baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBTypeSummary, SBTypeSummary,
2599baf5664fSJonas Devlieghere                                 CreateWithFunctionName,
2600baf5664fSJonas Devlieghere                                 (const char *, uint32_t));
2601baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBTypeSummary, SBTypeSummary,
2602baf5664fSJonas Devlieghere                                 CreateWithScriptCode, (const char *, uint32_t));
2603baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeSummary, (const lldb::SBTypeSummary &));
2604baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeSummary, IsValid, ());
2605baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSummary, IsFunctionCode, ());
2606baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSummary, IsFunctionName, ());
2607baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSummary, IsSummaryString, ());
2608baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeSummary, GetData, ());
2609baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeSummary, GetOptions, ());
2610baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSummary, SetOptions, (uint32_t));
2611baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSummary, SetSummaryString, (const char *));
2612baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSummary, SetFunctionName, (const char *));
2613baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSummary, SetFunctionCode, (const char *));
2614baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSummary, GetDescription,
2615baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2616baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSummary, DoesPrintValue, (lldb::SBValue));
2617baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2618baf5664fSJonas Devlieghere         lldb::SBTypeSummary &,
2619baf5664fSJonas Devlieghere         SBTypeSummary, operator=,(const lldb::SBTypeSummary &));
2620baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool,
2621baf5664fSJonas Devlieghere                          SBTypeSummary, operator==,(lldb::SBTypeSummary &));
2622baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSummary, IsEqualTo,
2623baf5664fSJonas Devlieghere                          (lldb::SBTypeSummary &));
2624baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool,
2625baf5664fSJonas Devlieghere                          SBTypeSummary, operator!=,(lldb::SBTypeSummary &));
2626baf5664fSJonas Devlieghere   }
2627baf5664fSJonas Devlieghere   {
2628baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeSynthetic, ());
2629baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBTypeSynthetic, SBTypeSynthetic,
2630baf5664fSJonas Devlieghere                                 CreateWithClassName, (const char *, uint32_t));
2631baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBTypeSynthetic, SBTypeSynthetic,
2632baf5664fSJonas Devlieghere                                 CreateWithScriptCode, (const char *, uint32_t));
2633baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBTypeSynthetic, (const lldb::SBTypeSynthetic &));
2634baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBTypeSynthetic, IsValid, ());
2635baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSynthetic, IsClassCode, ());
2636baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSynthetic, IsClassName, ());
2637baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBTypeSynthetic, GetData, ());
2638baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSynthetic, SetClassName, (const char *));
2639baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSynthetic, SetClassCode, (const char *));
2640baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBTypeSynthetic, GetOptions, ());
2641baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBTypeSynthetic, SetOptions, (uint32_t));
2642baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSynthetic, GetDescription,
2643baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2644baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2645baf5664fSJonas Devlieghere         lldb::SBTypeSynthetic &,
2646baf5664fSJonas Devlieghere         SBTypeSynthetic, operator=,(const lldb::SBTypeSynthetic &));
2647baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool,
2648baf5664fSJonas Devlieghere                          SBTypeSynthetic, operator==,(lldb::SBTypeSynthetic &));
2649baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBTypeSynthetic, IsEqualTo,
2650baf5664fSJonas Devlieghere                          (lldb::SBTypeSynthetic &));
2651baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool,
2652baf5664fSJonas Devlieghere                          SBTypeSynthetic, operator!=,(lldb::SBTypeSynthetic &));
2653baf5664fSJonas Devlieghere   }
2654baf5664fSJonas Devlieghere   {
2655baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBUnixSignals, ());
2656baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBUnixSignals, (const lldb::SBUnixSignals &));
2657baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2658baf5664fSJonas Devlieghere         const lldb::SBUnixSignals &,
2659baf5664fSJonas Devlieghere         SBUnixSignals, operator=,(const lldb::SBUnixSignals &));
2660baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBUnixSignals, Clear, ());
2661baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBUnixSignals, IsValid, ());
2662baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(const char *, SBUnixSignals, GetSignalAsCString,
2663baf5664fSJonas Devlieghere                                (int32_t));
2664baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(int32_t, SBUnixSignals, GetSignalNumberFromName,
2665baf5664fSJonas Devlieghere                                (const char *));
2666baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBUnixSignals, GetShouldSuppress,
2667baf5664fSJonas Devlieghere                                (int32_t));
2668baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBUnixSignals, SetShouldSuppress,
2669baf5664fSJonas Devlieghere                          (int32_t, bool));
2670baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBUnixSignals, GetShouldStop, (int32_t));
2671baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBUnixSignals, SetShouldStop, (int32_t, bool));
2672baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBUnixSignals, GetShouldNotify, (int32_t));
2673baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBUnixSignals, SetShouldNotify, (int32_t, bool));
2674baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(int32_t, SBUnixSignals, GetNumSignals, ());
2675baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(int32_t, SBUnixSignals, GetSignalAtIndex,
2676baf5664fSJonas Devlieghere                                (int32_t));
2677baf5664fSJonas Devlieghere   }
2678baf5664fSJonas Devlieghere   {
2679baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBValue, ());
2680baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBValue, (const lldb::ValueObjectSP &));
2681baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBValue, (const lldb::SBValue &));
2682baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue &,
2683baf5664fSJonas Devlieghere                          SBValue, operator=,(const lldb::SBValue &));
2684baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, IsValid, ());
2685baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBValue, Clear, ());
2686baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBValue, GetError, ());
2687baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::user_id_t, SBValue, GetID, ());
2688baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetName, ());
2689baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetTypeName, ());
2690baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetDisplayTypeName, ());
2691baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBValue, GetByteSize, ());
2692baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, IsInScope, ());
2693baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetValue, ());
2694baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::ValueType, SBValue, GetValueType, ());
2695baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetObjectDescription, ());
2696baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetTypeValidatorResult, ());
2697baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBType, SBValue, GetType, ());
2698baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, GetValueDidChange, ());
2699baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetSummary, ());
2700baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetSummary,
2701baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::SBTypeSummaryOptions &));
2702baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBValue, GetLocation, ());
2703baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, SetValueFromCString, (const char *));
2704baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, SetValueFromCString,
2705baf5664fSJonas Devlieghere                          (const char *, lldb::SBError &));
2706baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFormat, SBValue, GetTypeFormat, ());
2707baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeSummary, SBValue, GetTypeSummary, ());
2708baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeFilter, SBValue, GetTypeFilter, ());
2709baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTypeSynthetic, SBValue, GetTypeSynthetic, ());
2710baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, CreateChildAtOffset,
2711baf5664fSJonas Devlieghere                          (const char *, uint32_t, lldb::SBType));
2712baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, Cast, (lldb::SBType));
2713baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, CreateValueFromExpression,
2714baf5664fSJonas Devlieghere                          (const char *, const char *));
2715baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2716baf5664fSJonas Devlieghere         lldb::SBValue, SBValue, CreateValueFromExpression,
2717baf5664fSJonas Devlieghere         (const char *, const char *, lldb::SBExpressionOptions &));
2718baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, CreateValueFromAddress,
2719baf5664fSJonas Devlieghere                          (const char *, lldb::addr_t, lldb::SBType));
2720baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, CreateValueFromData,
2721baf5664fSJonas Devlieghere                          (const char *, lldb::SBData, lldb::SBType));
2722baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetChildAtIndex, (uint32_t));
2723baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetChildAtIndex,
2724baf5664fSJonas Devlieghere                          (uint32_t, lldb::DynamicValueType, bool));
2725baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBValue, GetIndexOfChildWithName,
2726baf5664fSJonas Devlieghere                          (const char *));
2727baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetChildMemberWithName,
2728baf5664fSJonas Devlieghere                          (const char *));
2729baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetChildMemberWithName,
2730baf5664fSJonas Devlieghere                          (const char *, lldb::DynamicValueType));
2731baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetDynamicValue,
2732baf5664fSJonas Devlieghere                          (lldb::DynamicValueType));
2733baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetStaticValue, ());
2734baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetNonSyntheticValue, ());
2735baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::DynamicValueType, SBValue, GetPreferDynamicValue,
2736baf5664fSJonas Devlieghere                          ());
2737baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBValue, SetPreferDynamicValue,
2738baf5664fSJonas Devlieghere                          (lldb::DynamicValueType));
2739baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, GetPreferSyntheticValue, ());
2740baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBValue, SetPreferSyntheticValue, (bool));
2741baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, IsDynamic, ());
2742baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, IsSynthetic, ());
2743baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, IsSyntheticChildrenGenerated, ());
2744baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBValue, SetSyntheticChildrenGenerated, (bool));
2745baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, GetValueForExpressionPath,
2746baf5664fSJonas Devlieghere                          (const char *));
2747baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int64_t, SBValue, GetValueAsSigned,
2748baf5664fSJonas Devlieghere                          (lldb::SBError &, int64_t));
2749baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBValue, GetValueAsUnsigned,
2750baf5664fSJonas Devlieghere                          (lldb::SBError &, uint64_t));
2751baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int64_t, SBValue, GetValueAsSigned, (int64_t));
2752baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint64_t, SBValue, GetValueAsUnsigned, (uint64_t));
2753baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, MightHaveChildren, ());
2754baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, IsRuntimeSupportValue, ());
2755baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBValue, GetNumChildren, ());
2756baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBValue, GetNumChildren, (uint32_t));
2757baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, Dereference, ());
2758baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, TypeIsPointerType, ());
2759baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void *, SBValue, GetOpaqueType, ());
2760baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBTarget, SBValue, GetTarget, ());
2761baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBProcess, SBValue, GetProcess, ());
2762baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBThread, SBValue, GetThread, ());
2763baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBFrame, SBValue, GetFrame, ());
2764baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::ValueObjectSP, SBValue, GetSP, ());
2765baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, GetExpressionPath, (lldb::SBStream &));
2766baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, GetExpressionPath,
2767baf5664fSJonas Devlieghere                          (lldb::SBStream &, bool));
2768baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBValue, SBValue, EvaluateExpression,
2769baf5664fSJonas Devlieghere                                (const char *));
2770baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
2771baf5664fSJonas Devlieghere         lldb::SBValue, SBValue, EvaluateExpression,
2772baf5664fSJonas Devlieghere         (const char *, const lldb::SBExpressionOptions &));
2773baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(
2774baf5664fSJonas Devlieghere         lldb::SBValue, SBValue, EvaluateExpression,
2775baf5664fSJonas Devlieghere         (const char *, const lldb::SBExpressionOptions &, const char *));
2776baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, GetDescription, (lldb::SBStream &));
2777baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::Format, SBValue, GetFormat, ());
2778baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBValue, SetFormat, (lldb::Format));
2779baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, AddressOf, ());
2780baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBValue, GetLoadAddress, ());
2781baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBAddress, SBValue, GetAddress, ());
2782baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBData, SBValue, GetPointeeData,
2783baf5664fSJonas Devlieghere                          (uint32_t, uint32_t));
2784baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBData, SBValue, GetData, ());
2785baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBValue, SetData,
2786baf5664fSJonas Devlieghere                          (lldb::SBData &, lldb::SBError &));
2787baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBDeclaration, SBValue, GetDeclaration, ());
2788baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBValue, Watch,
2789baf5664fSJonas Devlieghere                          (bool, bool, bool, lldb::SBError &));
2790baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBValue, Watch,
2791baf5664fSJonas Devlieghere                          (bool, bool, bool));
2792baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBValue, WatchPointee,
2793baf5664fSJonas Devlieghere                          (bool, bool, bool, lldb::SBError &));
2794baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValue, Persist, ());
2795baf5664fSJonas Devlieghere   }
2796baf5664fSJonas Devlieghere   {
2797baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBValueList, ());
2798baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBValueList, (const lldb::SBValueList &));
2799baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBValueList, IsValid, ());
2800baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBValueList, Clear, ());
2801baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBValueList &,
2802baf5664fSJonas Devlieghere                          SBValueList, operator=,(const lldb::SBValueList &));
2803baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBValueList, Append, (const lldb::SBValue &));
2804baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBValueList, Append,
2805baf5664fSJonas Devlieghere                          (const lldb::SBValueList &));
2806baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBValue, SBValueList, GetValueAtIndex,
2807baf5664fSJonas Devlieghere                                (uint32_t));
2808baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(uint32_t, SBValueList, GetSize, ());
2809baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBValue, SBValueList, FindValueObjectByUID,
2810baf5664fSJonas Devlieghere                          (lldb::user_id_t));
2811baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::SBValue, SBValueList, GetFirstValueByName,
2812baf5664fSJonas Devlieghere                                (const char *));
2813baf5664fSJonas Devlieghere   }
2814baf5664fSJonas Devlieghere   {
2815baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBVariablesOptions, ());
2816baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBVariablesOptions,
2817baf5664fSJonas Devlieghere                               (const lldb::SBVariablesOptions &));
2818baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(
2819baf5664fSJonas Devlieghere         lldb::SBVariablesOptions &,
2820baf5664fSJonas Devlieghere         SBVariablesOptions, operator=,(const lldb::SBVariablesOptions &));
2821baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBVariablesOptions, IsValid, ());
2822baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBVariablesOptions, GetIncludeArguments,
2823baf5664fSJonas Devlieghere                                ());
2824baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBVariablesOptions, SetIncludeArguments, (bool));
2825baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBVariablesOptions,
2826baf5664fSJonas Devlieghere                                GetIncludeRecognizedArguments,
2827baf5664fSJonas Devlieghere                                (const lldb::SBTarget &));
2828baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBVariablesOptions,
2829baf5664fSJonas Devlieghere                          SetIncludeRecognizedArguments, (bool));
2830baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBVariablesOptions, GetIncludeLocals, ());
2831baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBVariablesOptions, SetIncludeLocals, (bool));
2832baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBVariablesOptions, GetIncludeStatics, ());
2833baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBVariablesOptions, SetIncludeStatics, (bool));
2834baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBVariablesOptions, GetInScopeOnly, ());
2835baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBVariablesOptions, SetInScopeOnly, (bool));
2836baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBVariablesOptions,
2837baf5664fSJonas Devlieghere                                GetIncludeRuntimeSupportValues, ());
2838baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBVariablesOptions,
2839baf5664fSJonas Devlieghere                          SetIncludeRuntimeSupportValues, (bool));
2840baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::DynamicValueType, SBVariablesOptions,
2841baf5664fSJonas Devlieghere                                GetUseDynamic, ());
2842baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBVariablesOptions, SetUseDynamic,
2843baf5664fSJonas Devlieghere                          (lldb::DynamicValueType));
2844baf5664fSJonas Devlieghere   }
2845baf5664fSJonas Devlieghere   {
2846baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBWatchpoint, ());
2847baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBWatchpoint, (const lldb::WatchpointSP &));
2848baf5664fSJonas Devlieghere     LLDB_REGISTER_CONSTRUCTOR(SBWatchpoint, (const lldb::SBWatchpoint &));
2849baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const lldb::SBWatchpoint &,
2850baf5664fSJonas Devlieghere                          SBWatchpoint, operator=,(const lldb::SBWatchpoint &));
2851baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::watch_id_t, SBWatchpoint, GetID, ());
2852baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(bool, SBWatchpoint, IsValid, ());
2853baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::SBError, SBWatchpoint, GetError, ());
2854baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(int32_t, SBWatchpoint, GetHardwareIndex, ());
2855baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(lldb::addr_t, SBWatchpoint, GetWatchAddress, ());
2856baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(size_t, SBWatchpoint, GetWatchSize, ());
2857baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBWatchpoint, SetEnabled, (bool));
2858baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBWatchpoint, IsEnabled, ());
2859baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBWatchpoint, GetHitCount, ());
2860baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(uint32_t, SBWatchpoint, GetIgnoreCount, ());
2861baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBWatchpoint, SetIgnoreCount, (uint32_t));
2862baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(const char *, SBWatchpoint, GetCondition, ());
2863baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBWatchpoint, SetCondition, (const char *));
2864baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(bool, SBWatchpoint, GetDescription,
2865baf5664fSJonas Devlieghere                          (lldb::SBStream &, lldb::DescriptionLevel));
2866baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBWatchpoint, Clear, ());
2867baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD_CONST(lldb::WatchpointSP, SBWatchpoint, GetSP, ());
2868baf5664fSJonas Devlieghere     LLDB_REGISTER_METHOD(void, SBWatchpoint, SetSP,
2869baf5664fSJonas Devlieghere                          (const lldb::WatchpointSP &));
2870baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(bool, SBWatchpoint, EventIsWatchpointEvent,
2871baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
2872baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::WatchpointEventType, SBWatchpoint,
2873baf5664fSJonas Devlieghere                                 GetWatchpointEventTypeFromEvent,
2874baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
2875baf5664fSJonas Devlieghere     LLDB_REGISTER_STATIC_METHOD(lldb::SBWatchpoint, SBWatchpoint,
2876baf5664fSJonas Devlieghere                                 GetWatchpointFromEvent,
2877baf5664fSJonas Devlieghere                                 (const lldb::SBEvent &));
2878baf5664fSJonas Devlieghere   }
2879baf5664fSJonas Devlieghere }
288058947cf8SJonas Devlieghere 
2881936c6242SJonas Devlieghere const char *SBReproducer::Capture(const char *path) {
2882936c6242SJonas Devlieghere   static std::string error;
2883936c6242SJonas Devlieghere   if (auto e =
2884936c6242SJonas Devlieghere           Reproducer::Initialize(ReproducerMode::Capture, FileSpec(path))) {
2885936c6242SJonas Devlieghere     error = llvm::toString(std::move(e));
2886936c6242SJonas Devlieghere     return error.c_str();
2887936c6242SJonas Devlieghere   }
2888936c6242SJonas Devlieghere   return nullptr;
2889936c6242SJonas Devlieghere }
289058947cf8SJonas Devlieghere 
2891936c6242SJonas Devlieghere const char *SBReproducer::Replay(const char *path) {
2892936c6242SJonas Devlieghere   static std::string error;
2893936c6242SJonas Devlieghere   if (auto e = Reproducer::Initialize(ReproducerMode::Replay, FileSpec(path))) {
2894936c6242SJonas Devlieghere     error = llvm::toString(std::move(e));
2895936c6242SJonas Devlieghere     return error.c_str();
2896936c6242SJonas Devlieghere   }
2897936c6242SJonas Devlieghere 
2898936c6242SJonas Devlieghere   repro::Loader *loader = repro::Reproducer::Instance().GetLoader();
2899936c6242SJonas Devlieghere   if (!loader) {
2900936c6242SJonas Devlieghere     error = "unable to get replay loader.";
2901936c6242SJonas Devlieghere     return error.c_str();
2902936c6242SJonas Devlieghere   }
2903936c6242SJonas Devlieghere 
290458947cf8SJonas Devlieghere   FileSpec file = loader->GetFile<SBInfo>();
2905936c6242SJonas Devlieghere   if (!file) {
2906936c6242SJonas Devlieghere     error = "unable to get replay data from reproducer.";
2907936c6242SJonas Devlieghere     return error.c_str();
2908936c6242SJonas Devlieghere   }
290958947cf8SJonas Devlieghere 
291058947cf8SJonas Devlieghere   SBRegistry registry;
291158947cf8SJonas Devlieghere   registry.Replay(file);
291258947cf8SJonas Devlieghere 
2913936c6242SJonas Devlieghere   return nullptr;
291458947cf8SJonas Devlieghere }
291558947cf8SJonas Devlieghere 
291658947cf8SJonas Devlieghere char lldb_private::repro::SBProvider::ID = 0;
291758947cf8SJonas Devlieghere const char *SBInfo::name = "sbapi";
291858947cf8SJonas Devlieghere const char *SBInfo::file = "sbapi.bin";
2919