xref: /llvm-project/lldb/include/lldb/Symbol/Function.h (revision 57b48987f6c21e369e7bb1626dc79ca74aa34fdb)
1 //===-- Function.h ----------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLDB_SYMBOL_FUNCTION_H
10 #define LLDB_SYMBOL_FUNCTION_H
11 
12 #include "lldb/Core/AddressRange.h"
13 #include "lldb/Core/Declaration.h"
14 #include "lldb/Core/Mangled.h"
15 #include "lldb/Expression/DWARFExpressionList.h"
16 #include "lldb/Symbol/Block.h"
17 #include "lldb/Utility/UserID.h"
18 #include "llvm/ADT/ArrayRef.h"
19 
20 #include <mutex>
21 
22 namespace lldb_private {
23 
24 class ExecutionContext;
25 
26 /// \class FunctionInfo Function.h "lldb/Symbol/Function.h"
27 /// A class that contains generic function information.
28 ///
29 /// This provides generic function information that gets reused between inline
30 /// functions and function types.
31 class FunctionInfo {
32 public:
33   /// Construct with the function method name and optional declaration
34   /// information.
35   ///
36   /// \param[in] name
37   ///     A C string name for the method name for this function. This
38   ///     value should not be the mangled named, but the simple method
39   ///     name.
40   ///
41   /// \param[in] decl_ptr
42   ///     Optional declaration information that describes where the
43   ///     function was declared. This can be NULL.
44   FunctionInfo(const char *name, const Declaration *decl_ptr);
45 
46   /// Construct with the function method name and optional declaration
47   /// information.
48   ///
49   /// \param[in] name
50   ///     A name for the method name for this function. This value
51   ///     should not be the mangled named, but the simple method name.
52   ///
53   /// \param[in] decl_ptr
54   ///     Optional declaration information that describes where the
55   ///     function was declared. This can be NULL.
56   FunctionInfo(ConstString name, const Declaration *decl_ptr);
57 
58   /// Destructor.
59   ///
60   /// The destructor is virtual since classes inherit from this class.
61   virtual ~FunctionInfo();
62 
63   /// Compare two function information objects.
64   ///
65   /// First compares the method names, and if equal, then compares the
66   /// declaration information.
67   ///
68   /// \param[in] lhs
69   ///     The Left Hand Side const FunctionInfo object reference.
70   ///
71   /// \param[in] rhs
72   ///     The Right Hand Side const FunctionInfo object reference.
73   ///
74   /// \return
75   ///     -1 if lhs < rhs
76   ///     0 if lhs == rhs
77   ///     1 if lhs > rhs
78   static int Compare(const FunctionInfo &lhs, const FunctionInfo &rhs);
79 
80   /// Dump a description of this object to a Stream.
81   ///
82   /// Dump a description of the contents of this object to the supplied stream
83   /// \a s.
84   ///
85   /// \param[in] s
86   ///     The stream to which to dump the object description.
87   void Dump(Stream *s, bool show_fullpaths) const;
88 
89   /// Get accessor for the declaration information.
90   ///
91   /// \return
92   ///     A reference to the declaration object.
93   Declaration &GetDeclaration();
94 
95   /// Get const accessor for the declaration information.
96   ///
97   /// \return
98   ///     A const reference to the declaration object.
99   const Declaration &GetDeclaration() const;
100 
101   /// Get accessor for the method name.
102   ///
103   /// \return
104   ///     A const reference to the method name object.
105   ConstString GetName() const;
106 
107   /// Get the memory cost of this object.
108   ///
109   /// \return
110   ///     The number of bytes that this object occupies in memory.
111   ///     The returned value does not include the bytes for any
112   ///     shared string values.
113   virtual size_t MemorySize() const;
114 
115 protected:
116   /// Function method name (not a mangled name).
117   ConstString m_name;
118 
119   /// Information describing where this function information was defined.
120   Declaration m_declaration;
121 };
122 
123 /// \class InlineFunctionInfo Function.h "lldb/Symbol/Function.h"
124 /// A class that describes information for an inlined function.
125 class InlineFunctionInfo : public FunctionInfo {
126 public:
127   /// Construct with the function method name, mangled name, and optional
128   /// declaration information.
129   ///
130   /// \param[in] name
131   ///     A C string name for the method name for this function. This
132   ///     value should not be the mangled named, but the simple method
133   ///     name.
134   ///
135   /// \param[in] mangled
136   ///     A C string name for the mangled name for this function. This
137   ///     value can be NULL if there is no mangled information.
138   ///
139   /// \param[in] decl_ptr
140   ///     Optional declaration information that describes where the
141   ///     function was declared. This can be NULL.
142   ///
143   /// \param[in] call_decl_ptr
144   ///     Optional calling location declaration information that
145   ///     describes from where this inlined function was called.
146   InlineFunctionInfo(const char *name, llvm::StringRef mangled,
147                      const Declaration *decl_ptr,
148                      const Declaration *call_decl_ptr);
149 
150   /// Construct with the function method name, mangled name, and optional
151   /// declaration information.
152   ///
153   /// \param[in] name
154   ///     A name for the method name for this function. This value
155   ///     should not be the mangled named, but the simple method name.
156   ///
157   /// \param[in] mangled
158   ///     A name for the mangled name for this function. This value
159   ///     can be empty if there is no mangled information.
160   ///
161   /// \param[in] decl_ptr
162   ///     Optional declaration information that describes where the
163   ///     function was declared. This can be NULL.
164   ///
165   /// \param[in] call_decl_ptr
166   ///     Optional calling location declaration information that
167   ///     describes from where this inlined function was called.
168   InlineFunctionInfo(ConstString name, const Mangled &mangled,
169                      const Declaration *decl_ptr,
170                      const Declaration *call_decl_ptr);
171 
172   /// Destructor.
173   ~InlineFunctionInfo() override;
174 
175   /// Compare two inlined function information objects.
176   ///
177   /// First compares the FunctionInfo objects, and if equal, compares the
178   /// mangled names.
179   ///
180   /// \param[in] lhs
181   ///     The Left Hand Side const InlineFunctionInfo object
182   ///     reference.
183   ///
184   /// \param[in] rhs
185   ///     The Right Hand Side const InlineFunctionInfo object
186   ///     reference.
187   ///
188   /// \return
189   ///     -1 if lhs < rhs
190   ///     0 if lhs == rhs
191   ///     1 if lhs > rhs
192   int Compare(const InlineFunctionInfo &lhs, const InlineFunctionInfo &rhs);
193 
194   /// Dump a description of this object to a Stream.
195   ///
196   /// Dump a description of the contents of this object to the supplied stream
197   /// \a s.
198   ///
199   /// \param[in] s
200   ///     The stream to which to dump the object description.
201   void Dump(Stream *s, bool show_fullpaths) const;
202 
203   void DumpStopContext(Stream *s) const;
204 
205   ConstString GetName() const;
206 
207   ConstString GetDisplayName() const;
208 
209   /// Get accessor for the call site declaration information.
210   ///
211   /// \return
212   ///     A reference to the declaration object.
213   Declaration &GetCallSite();
214 
215   /// Get const accessor for the call site declaration information.
216   ///
217   /// \return
218   ///     A const reference to the declaration object.
219   const Declaration &GetCallSite() const;
220 
221   /// Get accessor for the mangled name object.
222   ///
223   /// \return
224   ///     A reference to the mangled name object.
225   Mangled &GetMangled();
226 
227   /// Get const accessor for the mangled name object.
228   ///
229   /// \return
230   ///     A const reference to the mangled name object.
231   const Mangled &GetMangled() const;
232 
233   /// Get the memory cost of this object.
234   ///
235   /// \return
236   ///     The number of bytes that this object occupies in memory.
237   ///     The returned value does not include the bytes for any
238   ///     shared string values.
239   size_t MemorySize() const override;
240 
241 private:
242   /// Mangled inlined function name (can be empty if there is no mangled
243   /// information).
244   Mangled m_mangled;
245 
246   Declaration m_call_decl;
247 };
248 
249 class Function;
250 
251 /// \class CallSiteParameter Function.h "lldb/Symbol/Function.h"
252 ///
253 /// Represent the locations of a parameter at a call site, both in the caller
254 /// and in the callee.
255 struct CallSiteParameter {
256   DWARFExpressionList LocationInCallee;
257   DWARFExpressionList LocationInCaller;
258 };
259 
260 /// A vector of \c CallSiteParameter.
261 using CallSiteParameterArray = llvm::SmallVector<CallSiteParameter, 0>;
262 
263 /// \class CallEdge Function.h "lldb/Symbol/Function.h"
264 ///
265 /// Represent a call made within a Function. This can be used to find a path
266 /// in the call graph between two functions, or to evaluate DW_OP_entry_value.
267 class CallEdge {
268 public:
269   enum class AddrType : uint8_t { Call, AfterCall };
270   virtual ~CallEdge();
271 
272   /// Get the callee's definition.
273   ///
274   /// Note that this might lazily invoke the DWARF parser. A register context
275   /// from the caller's activation is needed to find indirect call targets.
276   virtual Function *GetCallee(ModuleList &images,
277                               ExecutionContext &exe_ctx) = 0;
278 
279   /// Get the load PC address of the instruction which executes after the call
280   /// returns. Returns LLDB_INVALID_ADDRESS iff this is a tail call. \p caller
281   /// is the Function containing this call, and \p target is the Target which
282   /// made the call.
283   lldb::addr_t GetReturnPCAddress(Function &caller, Target &target) const;
284 
285   /// Return an address in the caller. This can either be the address of the
286   /// call instruction, or the address of the instruction after the call.
287   std::pair<AddrType, lldb::addr_t> GetCallerAddress(Function &caller,
288                                                      Target &target) const {
289     return {caller_address_type,
290             GetLoadAddress(caller_address, caller, target)};
291   }
292 
293   bool IsTailCall() const { return is_tail_call; }
294 
295   /// Get the call site parameters available at this call edge.
296   llvm::ArrayRef<CallSiteParameter> GetCallSiteParameters() const {
297     return parameters;
298   }
299 
300   /// Non-tail-calls go first, sorted by the return address. They are followed
301   /// by tail calls, which have no specific order.
302   std::pair<bool, lldb::addr_t> GetSortKey() const {
303     return {is_tail_call, GetUnresolvedReturnPCAddress()};
304   }
305 
306 protected:
307   CallEdge(AddrType caller_address_type, lldb::addr_t caller_address,
308            bool is_tail_call, CallSiteParameterArray &&parameters);
309 
310   /// Helper that finds the load address of \p unresolved_pc, a file address
311   /// which refers to an instruction within \p caller.
312   static lldb::addr_t GetLoadAddress(lldb::addr_t unresolved_pc,
313                                      Function &caller, Target &target);
314 
315   /// Like \ref GetReturnPCAddress, but returns an unresolved file address.
316   lldb::addr_t GetUnresolvedReturnPCAddress() const {
317     return caller_address_type == AddrType::AfterCall && !is_tail_call
318                ? caller_address
319                : LLDB_INVALID_ADDRESS;
320   }
321 
322 private:
323   lldb::addr_t caller_address;
324   AddrType caller_address_type;
325   bool is_tail_call;
326 
327   CallSiteParameterArray parameters;
328 };
329 
330 /// A direct call site. Used to represent call sites where the address of the
331 /// callee is fixed (e.g. a function call in C in which the call target is not
332 /// a function pointer).
333 class DirectCallEdge : public CallEdge {
334 public:
335   /// Construct a call edge using a symbol name to identify the callee, and a
336   /// return PC within the calling function to identify a specific call site.
337   DirectCallEdge(const char *symbol_name, AddrType caller_address_type,
338                  lldb::addr_t caller_address, bool is_tail_call,
339                  CallSiteParameterArray &&parameters);
340 
341   Function *GetCallee(ModuleList &images, ExecutionContext &exe_ctx) override;
342 
343 private:
344   void ParseSymbolFileAndResolve(ModuleList &images);
345 
346   // Used to describe a direct call.
347   //
348   // Either the callee's mangled name or its definition, discriminated by
349   // \ref resolved.
350   union {
351     const char *symbol_name;
352     Function *def;
353   } lazy_callee;
354 
355   /// Whether or not an attempt was made to find the callee's definition.
356   bool resolved = false;
357 };
358 
359 /// An indirect call site. Used to represent call sites where the address of
360 /// the callee is not fixed, e.g. a call to a C++ virtual function (where the
361 /// address is loaded out of a vtable), or a call to a function pointer in C.
362 class IndirectCallEdge : public CallEdge {
363 public:
364   /// Construct a call edge using a DWARFExpression to identify the callee, and
365   /// a return PC within the calling function to identify a specific call site.
366   IndirectCallEdge(DWARFExpressionList call_target,
367                    AddrType caller_address_type, lldb::addr_t caller_address,
368                    bool is_tail_call, CallSiteParameterArray &&parameters);
369 
370   Function *GetCallee(ModuleList &images, ExecutionContext &exe_ctx) override;
371 
372 private:
373   // Used to describe an indirect call.
374   //
375   // Specifies the location of the callee address in the calling frame.
376   DWARFExpressionList call_target;
377 };
378 
379 /// \class Function Function.h "lldb/Symbol/Function.h"
380 /// A class that describes a function.
381 ///
382 /// Functions belong to CompileUnit objects (Function::m_comp_unit), have
383 /// unique user IDs (Function::UserID), know how to reconstruct their symbol
384 /// context (Function::SymbolContextScope), have a specific function type
385 /// (Function::m_type_uid), have a simple method name (FunctionInfo::m_name),
386 /// be declared at a specific location (FunctionInfo::m_declaration), possibly
387 /// have mangled names (Function::m_mangled), an optional return type
388 /// (Function::m_type), and contains lexical blocks (Function::m_blocks).
389 ///
390 /// The function information is split into a few pieces:
391 ///     \li The concrete instance information
392 ///     \li The abstract information
393 ///
394 /// The abstract information is found in the function type (Type) that
395 /// describes a function information, return type and parameter types.
396 ///
397 /// The concrete information is the address range information and specific
398 /// locations for an instance of this function.
399 class Function : public UserID, public SymbolContextScope {
400 public:
401   /// Construct with a compile unit, function UID, function type UID, optional
402   /// mangled name, function type, and a section offset based address range.
403   ///
404   /// \param[in] comp_unit
405   ///     The compile unit to which this function belongs.
406   ///
407   /// \param[in] func_uid
408   ///     The UID for this function. This value is provided by the
409   ///     SymbolFile plug-in and can be any value that allows
410   ///     the plug-in to quickly find and parse more detailed
411   ///     information when and if more information is needed.
412   ///
413   /// \param[in] func_type_uid
414   ///     The type UID for the function Type to allow for lazy type
415   ///     parsing from the debug information.
416   ///
417   /// \param[in] mangled
418   ///     The optional mangled name for this function. If empty, there
419   ///     is no mangled information.
420   ///
421   /// \param[in] func_type
422   ///     The optional function type. If NULL, the function type will
423   ///     be parsed on demand when accessed using the
424   ///     Function::GetType() function by asking the SymbolFile
425   ///     plug-in to get the type for \a func_type_uid.
426   ///
427   /// \param[in] range
428   ///     The section offset based address for this function.
429   Function(CompileUnit *comp_unit, lldb::user_id_t func_uid,
430            lldb::user_id_t func_type_uid, const Mangled &mangled,
431            Type *func_type, Address address, AddressRanges ranges);
432 
433   /// Destructor.
434   ~Function() override;
435 
436   /// \copydoc SymbolContextScope::CalculateSymbolContext(SymbolContext*)
437   ///
438   /// \see SymbolContextScope
439   void CalculateSymbolContext(SymbolContext *sc) override;
440 
441   lldb::ModuleSP CalculateSymbolContextModule() override;
442 
443   CompileUnit *CalculateSymbolContextCompileUnit() override;
444 
445   Function *CalculateSymbolContextFunction() override;
446 
447   /// DEPRECATED: Use GetAddressRanges instead.
448   const AddressRange &GetAddressRange() { return m_range; }
449 
450   AddressRanges GetAddressRanges() { return m_block.GetRanges(); }
451 
452   /// Return the address of the function (its entry point). This address is also
453   /// used as a base address for relocation of function-scope entities (blocks
454   /// and variables).
455   const Address &GetAddress() const { return m_address; }
456 
457   bool GetRangeContainingLoadAddress(lldb::addr_t load_addr, Target &target,
458                                      AddressRange &range) {
459     return m_block.GetRangeContainingLoadAddress(load_addr, target, range);
460   }
461 
462   lldb::LanguageType GetLanguage() const;
463   /// Find the file and line number of the source location of the start of the
464   /// function.  This will use the declaration if present and fall back on the
465   /// line table if that fails.  So there may NOT be a line table entry for
466   /// this source file/line combo.
467   ///
468   /// \param[out] source_file
469   ///     The source file.
470   ///
471   /// \param[out] line_no
472   ///     The line number.
473   void GetStartLineSourceInfo(lldb::SupportFileSP &source_file_sp,
474                               uint32_t &line_no);
475 
476   /// Find the file and line number of the source location of the end of the
477   /// function.
478   ///
479   ///
480   /// \param[out] source_file
481   ///     The source file.
482   ///
483   /// \param[out] line_no
484   ///     The line number.
485   void GetEndLineSourceInfo(FileSpec &source_file, uint32_t &line_no);
486 
487   /// Get the outgoing call edges from this function, sorted by their return
488   /// PC addresses (in increasing order).
489   llvm::ArrayRef<std::unique_ptr<CallEdge>> GetCallEdges();
490 
491   /// Get the outgoing tail-calling edges from this function. If none exist,
492   /// return std::nullopt.
493   llvm::ArrayRef<std::unique_ptr<CallEdge>> GetTailCallingEdges();
494 
495   /// Get the outgoing call edge from this function which has the given return
496   /// address \p return_pc, or return nullptr. Note that this will not return a
497   /// tail-calling edge.
498   CallEdge *GetCallEdgeForReturnAddress(lldb::addr_t return_pc, Target &target);
499 
500   /// Get accessor for the block list.
501   ///
502   /// \return
503   ///     The block list object that describes all lexical blocks
504   ///     in the function.
505   ///
506   /// \see BlockList
507   Block &GetBlock(bool can_create);
508 
509   /// Get accessor for the compile unit that owns this function.
510   ///
511   /// \return
512   ///     A compile unit object pointer.
513   CompileUnit *GetCompileUnit();
514 
515   /// Get const accessor for the compile unit that owns this function.
516   ///
517   /// \return
518   ///     A const compile unit object pointer.
519   const CompileUnit *GetCompileUnit() const;
520 
521   void GetDescription(Stream *s, lldb::DescriptionLevel level, Target *target);
522 
523   /// Get accessor for the frame base location.
524   ///
525   /// \return
526   ///     A location expression that describes the function frame
527   ///     base.
528   DWARFExpressionList &GetFrameBaseExpression() { return m_frame_base; }
529 
530   /// Get const accessor for the frame base location.
531   ///
532   /// \return
533   ///     A const compile unit object pointer.
534   const DWARFExpressionList &GetFrameBaseExpression() const { return m_frame_base; }
535 
536   ConstString GetName() const;
537 
538   ConstString GetNameNoArguments() const;
539 
540   ConstString GetDisplayName() const;
541 
542   const Mangled &GetMangled() const { return m_mangled; }
543 
544   /// Get the DeclContext for this function, if available.
545   ///
546   /// \return
547   ///     The DeclContext, or NULL if none exists.
548   CompilerDeclContext GetDeclContext();
549 
550   /// Get the CompilerContext for this function, if available.
551   ///
552   /// \return
553   ///     The CompilerContext, or an empty vector if none is available.
554   std::vector<CompilerContext> GetCompilerContext();
555 
556   /// Get accessor for the type that describes the function return value type,
557   /// and parameter types.
558   ///
559   /// \return
560   ///     A type object pointer.
561   Type *GetType();
562 
563   /// Get const accessor for the type that describes the function return value
564   /// type, and parameter types.
565   ///
566   /// \return
567   ///     A const type object pointer.
568   const Type *GetType() const;
569 
570   CompilerType GetCompilerType();
571 
572   /// Get the size of the prologue instructions for this function.  The
573   /// "prologue" instructions include any instructions given line number 0
574   /// immediately following the prologue end.
575   ///
576   /// \return
577   ///     The size of the prologue.
578   uint32_t GetPrologueByteSize();
579 
580   /// Dump a description of this object to a Stream.
581   ///
582   /// Dump a description of the contents of this object to the supplied stream
583   /// \a s.
584   ///
585   /// \param[in] s
586   ///     The stream to which to dump the object description.
587   ///
588   /// \param[in] show_context
589   ///     If \b true, variables will dump their symbol context
590   ///     information.
591   void Dump(Stream *s, bool show_context) const;
592 
593   /// \copydoc SymbolContextScope::DumpSymbolContext(Stream*)
594   ///
595   /// \see SymbolContextScope
596   void DumpSymbolContext(Stream *s) override;
597 
598   /// Get the memory cost of this object.
599   ///
600   /// \return
601   ///     The number of bytes that this object occupies in memory.
602   ///     The returned value does not include the bytes for any
603   ///     shared string values.
604   size_t MemorySize() const;
605 
606   /// Get whether compiler optimizations were enabled for this function
607   ///
608   /// The debug information may provide information about whether this
609   /// function was compiled with optimization or not.  In this case,
610   /// "optimized" means that the debug experience may be difficult for the
611   /// user to understand.  Variables may not be available when the developer
612   /// would expect them, stepping through the source lines in the function may
613   /// appear strange, etc.
614   ///
615   /// \return
616   ///     Returns 'true' if this function was compiled with
617   ///     optimization.  'false' indicates that either the optimization
618   ///     is unknown, or this function was built without optimization.
619   bool GetIsOptimized();
620 
621   /// Get whether this function represents a 'top-level' function
622   ///
623   /// The concept of a top-level function is language-specific, mostly meant
624   /// to represent the notion of scripting-style code that has global
625   /// visibility of the variables/symbols/functions/... defined within the
626   /// containing file/module
627   ///
628   /// If stopped in a top-level function, LLDB will expose global variables
629   /// as-if locals in the 'frame variable' command
630   ///
631   /// \return
632   ///     Returns 'true' if this function is a top-level function,
633   ///     'false' otherwise.
634   bool IsTopLevelFunction();
635 
636   lldb::DisassemblerSP GetInstructions(const ExecutionContext &exe_ctx,
637                                        const char *flavor,
638                                        bool force_live_memory = false);
639 
640   bool GetDisassembly(const ExecutionContext &exe_ctx, const char *flavor,
641                       Stream &strm, bool force_live_memory = false);
642 
643 protected:
644   enum {
645     /// Whether we already tried to calculate the prologue size.
646     flagsCalculatedPrologueSize = (1 << 0)
647   };
648 
649   /// The compile unit that owns this function.
650   CompileUnit *m_comp_unit;
651 
652   /// The user ID of for the prototype Type for this function.
653   lldb::user_id_t m_type_uid;
654 
655   /// The function prototype type for this function that includes the function
656   /// info (FunctionInfo), return type and parameters.
657   Type *m_type;
658 
659   /// The mangled function name if any. If empty, there is no mangled
660   /// information.
661   Mangled m_mangled;
662 
663   /// All lexical blocks contained in this function.
664   Block m_block;
665 
666   /// The function address range that covers the widest range needed to contain
667   /// all blocks. DEPRECATED: do not use this field in new code as the range may
668   /// include addresses belonging to other functions.
669   AddressRange m_range;
670 
671   /// The address (entry point) of the function.
672   Address m_address;
673 
674   /// The frame base expression for variables that are relative to the frame
675   /// pointer.
676   DWARFExpressionList m_frame_base;
677 
678   Flags m_flags;
679 
680   /// Compute the prologue size once and cache it.
681   uint32_t m_prologue_byte_size;
682 
683   /// Exclusive lock that controls read/write access to m_call_edges and
684   /// m_call_edges_resolved.
685   std::mutex m_call_edges_lock;
686 
687   /// Whether call site info has been parsed.
688   bool m_call_edges_resolved = false;
689 
690   /// Outgoing call edges.
691   std::vector<std::unique_ptr<CallEdge>> m_call_edges;
692 
693 private:
694   Function(const Function &) = delete;
695   const Function &operator=(const Function &) = delete;
696 };
697 
698 } // namespace lldb_private
699 
700 #endif // LLDB_SYMBOL_FUNCTION_H
701