Block.h revision 33ed170599d41fe407a4dcf5f0875c75e1ad1375
1//===-- Block.h -------------------------------------------------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_Block_h_
11#define liblldb_Block_h_
12
13#include "lldb/lldb-private.h"
14#include "lldb/Core/AddressRange.h"
15#include "lldb/Core/Stream.h"
16#include "lldb/Core/UserID.h"
17#include "lldb/Core/VMRange.h"
18#include "lldb/Symbol/LineEntry.h"
19#include "lldb/Symbol/SymbolContext.h"
20
21namespace lldb_private {
22
23//----------------------------------------------------------------------
24/// @class Block Block.h "lldb/Symbol/Block.h"
25/// @brief A class that describes a single lexical block.
26///
27/// A Function object owns a BlockList object which owns one or more
28/// Block objects. The BlockList object contains a section offset
29/// address range, and Block objects contain one or more ranges
30/// which are offsets into that range. Blocks are can have discontiguous
31/// ranges within the BlockList adress range, and each block can
32/// contain child blocks each with their own sets of ranges.
33///
34/// Each block has a variable list that represents local, argument, and
35/// static variables that are scoped to the block.
36///
37/// Inlined functions are representated by attaching a
38/// InlineFunctionInfo shared pointer object to a block. Inlined
39/// functions are represented as named blocks.
40//----------------------------------------------------------------------
41class Block :
42    public UserID,
43    public SymbolContextScope
44{
45public:
46
47    //------------------------------------------------------------------
48    /// Construct with a User ID \a uid, \a depth.
49    ///
50    /// Initialize this block with the specified UID \a uid. The
51    /// \a depth in the \a block_list is used to represent the parent,
52    /// sibling, and child block information and also allows for partial
53    /// parsing at the block level.
54    ///
55    /// @param[in] uid
56    ///     The UID for a given block. This value is given by the
57    ///     SymbolFile plug-in and can be any value that helps the
58    ///     SymbolFile plug-in to match this block back to the debug
59    ///     information data that it parses for further or more in
60    ///     depth parsing. Common values would be the index into a
61    ///     table, or an offset into the debug information.
62    ///
63    /// @param[in] depth
64    ///     The integer depth of this block in the block list hierarchy.
65    ///
66    /// @param[in] block_list
67    ///     The block list that this object belongs to.
68    ///
69    /// @see BlockList
70    //------------------------------------------------------------------
71    Block (lldb::user_id_t uid);
72
73    //------------------------------------------------------------------
74    /// Destructor.
75    //------------------------------------------------------------------
76    ~Block ();
77
78    //------------------------------------------------------------------
79    /// Add a child to this object.
80    ///
81    /// @param[in] child_block_sp
82    ///     A shared pointer to a child block that will get added to
83    ///     this block.
84    //------------------------------------------------------------------
85    void
86    AddChild (const lldb::BlockSP &child_block_sp);
87
88    //------------------------------------------------------------------
89    /// Add a new offset range to this block.
90    ///
91    /// @param[in] start_offset
92    ///     An offset into this Function's address range that
93    ///     describes the start address of a range for this block.
94    ///
95    /// @param[in] end_offset
96    ///     An offset into this Function's address range that
97    ///     describes the end address of a range for this block.
98    //------------------------------------------------------------------
99    void
100    AddRange(lldb::addr_t start_offset, lldb::addr_t end_offset);
101
102    //------------------------------------------------------------------
103    /// @copydoc SymbolContextScope::CalculateSymbolContext(SymbolContext*)
104    ///
105    /// @see SymbolContextScope
106    //------------------------------------------------------------------
107    virtual void
108    CalculateSymbolContext(SymbolContext* sc);
109
110    //------------------------------------------------------------------
111    /// Check if an offset is in one of the block offset ranges.
112    ///
113    /// @param[in] range_offset
114    ///     An offset into the Function's address range.
115    ///
116    /// @return
117    ///     Returns \b true if \a range_offset falls in one of this
118    ///     block's ranges, \b false otherwise.
119    //------------------------------------------------------------------
120    bool
121    Contains (lldb::addr_t range_offset) const;
122
123    //------------------------------------------------------------------
124    /// Check if a offset range is in one of the block offset ranges.
125    ///
126    /// @param[in] range
127    ///     An offset range into the Function's address range.
128    ///
129    /// @return
130    ///     Returns \b true if \a range falls in one of this
131    ///     block's ranges, \b false otherwise.
132    //------------------------------------------------------------------
133    bool
134    Contains (const VMRange& range) const;
135
136    //------------------------------------------------------------------
137    /// Dump the block contents.
138    ///
139    /// @param[in] s
140    ///     The stream to which to dump the object descripton.
141    ///
142    /// @param[in] base_addr
143    ///     The resolved start address of the Function's address
144    ///     range. This should be resolved as the file or load address
145    ///     prior to passing the value into this function for dumping.
146    ///
147    /// @param[in] depth
148    ///     Limit the number of levels deep that this function should
149    ///     print as this block can contain child blocks. Specify
150    ///     INT_MAX to dump all child blocks.
151    ///
152    /// @param[in] show_context
153    ///     If \b true, variables will dump their context information.
154    //------------------------------------------------------------------
155    void
156    Dump (Stream *s, lldb::addr_t base_addr, int32_t depth, bool show_context) const;
157
158    void
159    DumpStopContext (Stream *s, const SymbolContext *sc);
160
161    //------------------------------------------------------------------
162    /// @copydoc SymbolContextScope::DumpSymbolContext(Stream*)
163    ///
164    /// @see SymbolContextScope
165    //------------------------------------------------------------------
166    virtual void
167    DumpSymbolContext(Stream *s);
168
169    void
170    GetDescription (Stream *s,
171                    Function *function,
172                    lldb::DescriptionLevel level,
173                    Process *process) const;
174
175    //------------------------------------------------------------------
176    /// Get the parent block.
177    ///
178    /// @return
179    ///     The parent block pointer, or NULL if this block has no
180    ///     parent.
181    //------------------------------------------------------------------
182    Block *
183    GetParent () const;
184
185    Block *
186    GetInlinedParent () const;
187
188    //------------------------------------------------------------------
189    /// Get the sibling block for this block.
190    ///
191    /// @return
192    ///     The sibling block pointer, or NULL if this block has no
193    ///     sibling.
194    //------------------------------------------------------------------
195    Block *
196    GetSibling () const
197    {
198        return m_sibling;
199    }
200
201    //------------------------------------------------------------------
202    /// Get the first child block.
203    ///
204    /// @return
205    ///     The first child block pointer, or NULL if this block has no
206    ///     children.
207    //------------------------------------------------------------------
208    Block *
209    GetFirstChild () const;
210
211    //------------------------------------------------------------------
212    /// Get the variable list for this block and optionally all child
213    /// blocks if \a get_child_variables is \b true.
214    ///
215    /// @param[in] get_child_variables
216    ///     If \b true, all variables from all child blocks will be
217    ///     added to the variable list.
218    ///
219    /// @param[in] can_create
220    ///     If \b true, the variables can be parsed if they already
221    ///     haven't been, else the current state of the block will be
222    ///     returned. Passing \b true for this parameter can be used
223    ///     to see the current state of what has been parsed up to this
224    ///     point.
225    ///
226    /// @return
227    ///     A variable list shared pointer that contains all variables
228    ///     for this block.
229    //------------------------------------------------------------------
230    lldb::VariableListSP
231    GetVariableList (bool get_child_variables, bool can_create);
232
233
234    //------------------------------------------------------------------
235    /// Appends the variables from this block, and optionally from all
236    /// parent blocks, to \a variable_list.
237    ///
238    /// @param[in] can_create
239    ///     If \b true, the variables can be parsed if they already
240    ///     haven't been, else the current state of the block will be
241    ///     returned. Passing \b true for this parameter can be used
242    ///     to see the current state of what has been parsed up to this
243    ///     point.
244    ///
245    /// @param[in] get_parent_variables
246    ///     If \b true, all variables from all parent blocks will be
247    ///     added to the variable list.
248    ///
249    /// @param[in] stop_if_block_is_inlined_function
250    ///     If \b true, all variables from all parent blocks will be
251    ///     added to the variable list until there are no parent blocks
252    ///     or the parent block has inlined function info.
253    ///
254    /// @param[in/out] variable_list
255    ///     All variables in this block, and optionally all parent
256    ///     blocks will be added to this list.
257    ///
258    /// @return
259    ///     The number of variable that were appended to \a
260    ///     variable_list.
261    //------------------------------------------------------------------
262    uint32_t
263    AppendVariables (bool can_create,
264                     bool get_parent_variables,
265                     bool stop_if_block_is_inlined_function,
266                     VariableList *variable_list);
267
268    //------------------------------------------------------------------
269    /// Get accessor for any inlined function information.
270    ///
271    /// @return
272    ///     A pointer to any inlined function information, or NULL if
273    ///     this is a regular block.
274    //------------------------------------------------------------------
275    InlineFunctionInfo*
276    InlinedFunctionInfo ();
277
278    //------------------------------------------------------------------
279    /// Get const accessor for any inlined function information.
280    ///
281    /// @return
282    ///     A cpmst pointer to any inlined function information, or NULL
283    ///     if this is a regular block.
284    //------------------------------------------------------------------
285    const InlineFunctionInfo*
286    InlinedFunctionInfo () const;
287
288    //------------------------------------------------------------------
289    /// Get the memory cost of this object.
290    ///
291    /// Returns the cost of this object plus any owned objects from the
292    /// ranges, variables, and inline function information.
293    ///
294    /// @return
295    ///     The number of bytes that this object occupies in memory.
296    //------------------------------------------------------------------
297    size_t
298    MemorySize() const;
299
300    //------------------------------------------------------------------
301    /// Set accessor for any inlined function information.
302    ///
303    /// @param[in] name
304    ///     The method name for the inlined function. This value should
305    ///     not be NULL.
306    ///
307    /// @param[in] mangled
308    ///     The mangled method name for the inlined function. This can
309    ///     be NULL if there is no mangled name for an inlined function
310    ///     or if the name is the same as \a name.
311    ///
312    /// @param[in] decl_ptr
313    ///     A optional pointer to declaration information for the
314    ///     inlined function information. This value can be NULL to
315    ///     indicate that no declaration information is available.
316    ///
317    /// @param[in] call_decl_ptr
318    ///     Optional calling location declaration information that
319    ///     describes from where this inlined function was called.
320    //------------------------------------------------------------------
321    void
322    SetInlinedFunctionInfo (const char *name,
323                            const char *mangled,
324                            const Declaration *decl_ptr,
325                            const Declaration *call_decl_ptr);
326
327
328    void
329    SetParentScope (SymbolContextScope *parent_scope)
330    {
331        m_parent_scope = parent_scope;
332    }
333
334    void
335    SetSibling (Block *block)
336    {
337        m_sibling = block;
338    }
339
340    //------------------------------------------------------------------
341    /// Set accessor for the variable list.
342    ///
343    /// Called by the SymbolFile plug-ins after they have parsed the
344    /// variable lists and are ready to hand ownership of the list over
345    /// to this object.
346    ///
347    /// @param[in] variable_list_sp
348    ///     A shared pointer to a VariableList.
349    //------------------------------------------------------------------
350    void
351    SetVariableList (lldb::VariableListSP& variable_list_sp);
352
353
354    bool
355    BlockInfoHasBeenParsed() const
356    {
357        return m_parsed_block_info;
358    }
359
360    void
361    SetBlockInfoHasBeenParsed (bool b, bool set_children);
362
363    Block *
364    FindBlockByID (lldb::user_id_t block_id);
365
366    bool
367    GetRangeContainingAddress (const Address& addr, AddressRange &range);
368
369
370protected:
371    typedef std::vector<lldb::BlockSP> collection;
372    //------------------------------------------------------------------
373    // Member variables.
374    //------------------------------------------------------------------
375    SymbolContextScope *m_parent_scope;
376    Block *m_sibling;
377    collection m_children;
378    VMRange::collection m_ranges; ///< A list of address offset ranges relative to the function's section/offset address.
379    lldb::InlineFunctionInfoSP m_inlineInfoSP; ///< Inlined function information.
380    lldb::VariableListSP m_variables; ///< The variable list for all local, static and paramter variables scoped to this block.
381    bool m_parsed_block_info:1,         ///< Set to true if this block and it's children have all been parsed
382         m_parsed_block_variables:1,
383         m_parsed_child_blocks:1;
384
385private:
386    DISALLOW_COPY_AND_ASSIGN (Block);
387};
388
389
390} // namespace lldb_private
391
392#endif  // liblldb_Block_h_
393