xref: /llvm-project/lldb/include/lldb/Symbol/CompilerType.h (revision 3d84b74cb3543428c35fc39e889684497286d482)
1 //===-- CompilerType.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_COMPILERTYPE_H
10 #define LLDB_SYMBOL_COMPILERTYPE_H
11 
12 #include <functional>
13 #include <optional>
14 #include <string>
15 #include <vector>
16 
17 #include "lldb/lldb-private.h"
18 #include "llvm/ADT/APSInt.h"
19 #include "llvm/Support/Casting.h"
20 
21 namespace lldb_private {
22 
23 class DataExtractor;
24 class TypeSystem;
25 
26 /// Generic representation of a type in a programming language.
27 ///
28 /// This class serves as an abstraction for a type inside one of the TypeSystems
29 /// implemented by the language plugins. It does not have any actual logic in it
30 /// but only stores an opaque pointer and a pointer to the TypeSystem that
31 /// gives meaning to this opaque pointer. All methods of this class should call
32 /// their respective method in the TypeSystem interface and pass the opaque
33 /// pointer along.
34 ///
35 /// \see lldb_private::TypeSystem
36 class CompilerType {
37 public:
38   /// Creates a CompilerType with the given TypeSystem and opaque compiler type.
39   ///
40   /// This constructor should only be called from the respective TypeSystem
41   /// implementation.
42   ///
43   /// \see lldb_private::TypeSystemClang::GetType(clang::QualType)
44   CompilerType(lldb::TypeSystemWP type_system,
45                lldb::opaque_compiler_type_t type);
46 
47   /// This is a minimal wrapper of a TypeSystem shared pointer as
48   /// returned by CompilerType which conventien dyn_cast support.
49   class TypeSystemSPWrapper {
50     lldb::TypeSystemSP m_typesystem_sp;
51 
52   public:
53     TypeSystemSPWrapper() = default;
54     TypeSystemSPWrapper(lldb::TypeSystemSP typesystem_sp)
55         : m_typesystem_sp(typesystem_sp) {}
56 
57     template <class TypeSystemType> bool isa_and_nonnull() {
58       if (auto *ts = m_typesystem_sp.get())
59         return llvm::isa<TypeSystemType>(ts);
60       return false;
61     }
62 
63     /// Return a shared_ptr<TypeSystemType> if dyn_cast succeeds.
64     template <class TypeSystemType>
65     std::shared_ptr<TypeSystemType> dyn_cast_or_null() {
66       if (isa_and_nonnull<TypeSystemType>())
67         return std::shared_ptr<TypeSystemType>(
68             m_typesystem_sp, llvm::cast<TypeSystemType>(m_typesystem_sp.get()));
69       return nullptr;
70     }
71 
72     explicit operator bool() const {
73       return static_cast<bool>(m_typesystem_sp);
74     }
75     bool operator==(const TypeSystemSPWrapper &other) const;
76     bool operator!=(const TypeSystemSPWrapper &other) const {
77       return !(*this == other);
78     }
79 
80     /// Only to be used in a one-off situations like
81     ///    if (typesystem && typesystem->method())
82     /// Do not store this pointer!
83     TypeSystem *operator->() const;
84 
85     lldb::TypeSystemSP GetSharedPointer() const { return m_typesystem_sp; }
86   };
87 
88   CompilerType(TypeSystemSPWrapper type_system,
89                lldb::opaque_compiler_type_t type);
90 
91   CompilerType(const CompilerType &rhs)
92       : m_type_system(rhs.m_type_system), m_type(rhs.m_type) {}
93 
94   CompilerType() = default;
95 
96   /// Operators.
97   /// \{
98   const CompilerType &operator=(const CompilerType &rhs) {
99     m_type_system = rhs.m_type_system;
100     m_type = rhs.m_type;
101     return *this;
102   }
103 
104   bool operator<(const CompilerType &rhs) const {
105     auto lts = m_type_system.lock();
106     auto rts = rhs.m_type_system.lock();
107     if (lts.get() == rts.get())
108       return m_type < rhs.m_type;
109     return lts.get() < rts.get();
110   }
111   /// \}
112 
113   /// Tests.
114   /// \{
115   explicit operator bool() const {
116     return m_type_system.lock() && m_type;
117   }
118 
119   bool IsValid() const { return (bool)*this; }
120 
121   bool IsArrayType(CompilerType *element_type = nullptr,
122                    uint64_t *size = nullptr,
123                    bool *is_incomplete = nullptr) const;
124 
125   bool IsVectorType(CompilerType *element_type = nullptr,
126                     uint64_t *size = nullptr) const;
127 
128   bool IsArrayOfScalarType() const;
129 
130   bool IsAggregateType() const;
131 
132   bool IsAnonymousType() const;
133 
134   bool IsScopedEnumerationType() const;
135 
136   bool IsBeingDefined() const;
137 
138   bool IsCharType() const;
139 
140   bool IsCompleteType() const;
141 
142   bool IsConst() const;
143 
144   bool IsDefined() const;
145 
146   bool IsFloatingPointType(uint32_t &count, bool &is_complex) const;
147 
148   bool IsFunctionType() const;
149 
150   uint32_t IsHomogeneousAggregate(CompilerType *base_type_ptr) const;
151 
152   size_t GetNumberOfFunctionArguments() const;
153 
154   CompilerType GetFunctionArgumentAtIndex(const size_t index) const;
155 
156   bool IsVariadicFunctionType() const;
157 
158   bool IsFunctionPointerType() const;
159 
160   bool IsMemberFunctionPointerType() const;
161 
162   bool
163   IsBlockPointerType(CompilerType *function_pointer_type_ptr = nullptr) const;
164 
165   bool IsIntegerType(bool &is_signed) const;
166 
167   bool IsEnumerationType(bool &is_signed) const;
168 
169   bool IsIntegerOrEnumerationType(bool &is_signed) const;
170 
171   bool IsPolymorphicClass() const;
172 
173   /// \param target_type    Can pass nullptr.
174   bool IsPossibleDynamicType(CompilerType *target_type, bool check_cplusplus,
175                              bool check_objc) const;
176 
177   bool IsPointerToScalarType() const;
178 
179   bool IsRuntimeGeneratedType() const;
180 
181   bool IsPointerType(CompilerType *pointee_type = nullptr) const;
182 
183   bool IsPointerOrReferenceType(CompilerType *pointee_type = nullptr) const;
184 
185   bool IsReferenceType(CompilerType *pointee_type = nullptr,
186                        bool *is_rvalue = nullptr) const;
187 
188   bool ShouldTreatScalarValueAsAddress() const;
189 
190   bool IsScalarType() const;
191 
192   bool IsTemplateType() const;
193 
194   bool IsTypedefType() const;
195 
196   bool IsVoidType() const;
197 
198   /// This is used when you don't care about the signedness of the integer.
199   bool IsInteger() const;
200 
201   bool IsFloat() const;
202 
203   /// This is used when you don't care about the signedness of the enum.
204   bool IsEnumerationType() const;
205 
206   bool IsUnscopedEnumerationType() const;
207 
208   bool IsIntegerOrUnscopedEnumerationType() const;
209 
210   bool IsSigned() const;
211 
212   bool IsNullPtrType() const;
213 
214   bool IsBoolean() const;
215 
216   bool IsEnumerationIntegerTypeSigned() const;
217 
218   bool IsScalarOrUnscopedEnumerationType() const;
219 
220   bool IsPromotableIntegerType() const;
221 
222   bool IsPointerToVoid() const;
223 
224   bool IsRecordType() const;
225 
226   //// Checks whether `target_base` is a virtual base of `type` (direct or
227   /// indirect). If it is, stores the first virtual base type on the path from
228   /// `type` to `target_type`. Parameter "virtual_base" is where the first
229   /// virtual base type gets stored. Parameter "carry_virtual" is used to
230   /// denote that we're in a recursive check of virtual base classes and we
231   /// have already seen a virtual base class (so should only check direct
232   /// base classes).
233   /// Note: This may only be defined in TypeSystemClang.
234   bool IsVirtualBase(CompilerType target_base, CompilerType *virtual_base,
235                      bool carry_virtual = false) const;
236 
237   /// This may only be defined in TypeSystemClang.
238   bool IsContextuallyConvertibleToBool() const;
239 
240   bool IsBasicType() const;
241 
242   std::string TypeDescription();
243 
244   bool CompareTypes(CompilerType rhs) const;
245 
246   const char *GetTypeTag();
247 
248   /// Go through the base classes and count non-empty ones.
249   uint32_t GetNumberOfNonEmptyBaseClasses();
250 
251   /// \}
252 
253   /// Type Completion.
254   /// \{
255   bool GetCompleteType() const;
256   /// \}
257 
258   bool IsForcefullyCompleted() const;
259 
260   /// AST related queries.
261   /// \{
262   size_t GetPointerByteSize() const;
263   /// \}
264 
265   unsigned GetPtrAuthKey() const;
266 
267   unsigned GetPtrAuthDiscriminator() const;
268 
269   bool GetPtrAuthAddressDiversity() const;
270 
271   /// Accessors.
272   /// \{
273 
274   /// Returns a shared pointer to the type system. The
275   /// TypeSystem::TypeSystemSPWrapper can be compared for equality.
276   TypeSystemSPWrapper GetTypeSystem() const;
277 
278   ConstString GetTypeName(bool BaseOnly = false) const;
279 
280   ConstString GetDisplayTypeName() const;
281 
282   ConstString GetMangledTypeName() const;
283 
284   uint32_t
285   GetTypeInfo(CompilerType *pointee_or_element_compiler_type = nullptr) const;
286 
287   lldb::LanguageType GetMinimumLanguage();
288 
289   lldb::opaque_compiler_type_t GetOpaqueQualType() const { return m_type; }
290 
291   lldb::TypeClass GetTypeClass() const;
292 
293   void SetCompilerType(lldb::TypeSystemWP type_system,
294                        lldb::opaque_compiler_type_t type);
295   void SetCompilerType(TypeSystemSPWrapper type_system,
296                        lldb::opaque_compiler_type_t type);
297 
298   unsigned GetTypeQualifiers() const;
299   /// \}
300 
301   /// Creating related types.
302   /// \{
303   CompilerType GetArrayElementType(ExecutionContextScope *exe_scope) const;
304 
305   CompilerType GetArrayType(uint64_t size) const;
306 
307   CompilerType GetCanonicalType() const;
308 
309   CompilerType GetFullyUnqualifiedType() const;
310 
311   CompilerType GetEnumerationIntegerType() const;
312 
313   /// Returns -1 if this isn't a function of if the function doesn't
314   /// have a prototype Returns a value >= 0 if there is a prototype.
315   int GetFunctionArgumentCount() const;
316 
317   CompilerType GetFunctionArgumentTypeAtIndex(size_t idx) const;
318 
319   CompilerType GetFunctionReturnType() const;
320 
321   size_t GetNumMemberFunctions() const;
322 
323   TypeMemberFunctionImpl GetMemberFunctionAtIndex(size_t idx);
324 
325   /// If this type is a reference to a type (L value or R value reference),
326   /// return a new type with the reference removed, else return the current type
327   /// itself.
328   CompilerType GetNonReferenceType() const;
329 
330   /// If this type is a pointer type, return the type that the pointer points
331   /// to, else return an invalid type.
332   CompilerType GetPointeeType() const;
333 
334   /// Return a new CompilerType that is a pointer to this type
335   CompilerType GetPointerType() const;
336 
337   /// Return a new CompilerType that is a L value reference to this type if this
338   /// type is valid and the type system supports L value references, else return
339   /// an invalid type.
340   CompilerType GetLValueReferenceType() const;
341 
342   /// Return a new CompilerType that is a R value reference to this type if this
343   /// type is valid and the type system supports R value references, else return
344   /// an invalid type.
345   CompilerType GetRValueReferenceType() const;
346 
347   /// Return a new CompilerType adds a const modifier to this type if this type
348   /// is valid and the type system supports const modifiers, else return an
349   /// invalid type.
350   CompilerType AddConstModifier() const;
351 
352   /// Return a new CompilerType adds a volatile modifier to this type if this
353   /// type is valid and the type system supports volatile modifiers, else return
354   /// an invalid type.
355   CompilerType AddVolatileModifier() const;
356 
357   /// Return a new CompilerType that is the atomic type of this type. If this
358   /// type is not valid or the type system doesn't support atomic types, this
359   /// returns an invalid type.
360   CompilerType GetAtomicType() const;
361 
362   /// Return a new CompilerType adds a restrict modifier to this type if this
363   /// type is valid and the type system supports restrict modifiers, else return
364   /// an invalid type.
365   CompilerType AddRestrictModifier() const;
366 
367   /// Create a typedef to this type using "name" as the name of the typedef this
368   /// type is valid and the type system supports typedefs, else return an
369   /// invalid type.
370   /// \param payload   The typesystem-specific \p lldb::Type payload.
371   CompilerType CreateTypedef(const char *name,
372                              const CompilerDeclContext &decl_ctx,
373                              uint32_t payload) const;
374 
375   /// If the current object represents a typedef type, get the underlying type
376   CompilerType GetTypedefedType() const;
377 
378   /// Create related types using the current type's AST
379   CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
380 
381   /// Return a new CompilerType adds a ptrauth modifier from the given 32-bit
382   /// opaque payload to this type if this type is valid and the type system
383   /// supports ptrauth modifiers, else return an invalid type. Note that this
384   /// does not check if this type is a pointer.
385   CompilerType AddPtrAuthModifier(uint32_t payload) const;
386   /// \}
387 
388   /// Exploring the type.
389   /// \{
390   struct IntegralTemplateArgument;
391 
392   /// Return the size of the type in bytes.
393   std::optional<uint64_t> GetByteSize(ExecutionContextScope *exe_scope) const;
394   /// Return the size of the type in bits.
395   std::optional<uint64_t> GetBitSize(ExecutionContextScope *exe_scope) const;
396 
397   lldb::Encoding GetEncoding(uint64_t &count) const;
398 
399   lldb::Format GetFormat() const;
400 
401   std::optional<size_t> GetTypeBitAlign(ExecutionContextScope *exe_scope) const;
402 
403   llvm::Expected<uint32_t>
404   GetNumChildren(bool omit_empty_base_classes,
405                  const ExecutionContext *exe_ctx) const;
406 
407   lldb::BasicType GetBasicTypeEnumeration() const;
408 
409   /// If this type is an enumeration, iterate through all of its enumerators
410   /// using a callback. If the callback returns true, keep iterating, else abort
411   /// the iteration.
412   void ForEachEnumerator(
413       std::function<bool(const CompilerType &integer_type, ConstString name,
414                          const llvm::APSInt &value)> const &callback) const;
415 
416   uint32_t GetNumFields() const;
417 
418   CompilerType GetFieldAtIndex(size_t idx, std::string &name,
419                                uint64_t *bit_offset_ptr,
420                                uint32_t *bitfield_bit_size_ptr,
421                                bool *is_bitfield_ptr) const;
422 
423   uint32_t GetNumDirectBaseClasses() const;
424 
425   uint32_t GetNumVirtualBaseClasses() const;
426 
427   CompilerType GetDirectBaseClassAtIndex(size_t idx,
428                                          uint32_t *bit_offset_ptr) const;
429 
430   CompilerType GetVirtualBaseClassAtIndex(size_t idx,
431                                           uint32_t *bit_offset_ptr) const;
432 
433   CompilerDecl GetStaticFieldWithName(llvm::StringRef name) const;
434 
435   uint32_t GetIndexOfFieldWithName(const char *name,
436                                    CompilerType *field_compiler_type = nullptr,
437                                    uint64_t *bit_offset_ptr = nullptr,
438                                    uint32_t *bitfield_bit_size_ptr = nullptr,
439                                    bool *is_bitfield_ptr = nullptr) const;
440 
441   llvm::Expected<CompilerType> GetChildCompilerTypeAtIndex(
442       ExecutionContext *exe_ctx, size_t idx, bool transparent_pointers,
443       bool omit_empty_base_classes, bool ignore_array_bounds,
444       std::string &child_name, uint32_t &child_byte_size,
445       int32_t &child_byte_offset, uint32_t &child_bitfield_bit_size,
446       uint32_t &child_bitfield_bit_offset, bool &child_is_base_class,
447       bool &child_is_deref_of_parent, ValueObject *valobj,
448       uint64_t &language_flags) const;
449 
450   /// Lookup a child given a name. This function will match base class names and
451   /// member member names in "clang_type" only, not descendants.
452   uint32_t GetIndexOfChildWithName(llvm::StringRef name,
453                                    bool omit_empty_base_classes) const;
454 
455   /// Lookup a child member given a name. This function will match member names
456   /// only and will descend into "clang_type" children in search for the first
457   /// member in this class, or any base class that matches "name".
458   /// TODO: Return all matches for a given name by returning a
459   /// vector<vector<uint32_t>>
460   /// so we catch all names that match a given child name, not just the first.
461   size_t
462   GetIndexOfChildMemberWithName(llvm::StringRef name,
463                                 bool omit_empty_base_classes,
464                                 std::vector<uint32_t> &child_indexes) const;
465 
466   CompilerType GetDirectNestedTypeWithName(llvm::StringRef name) const;
467 
468   /// Return the number of template arguments the type has.
469   /// If expand_pack is true, then variadic argument packs are automatically
470   /// expanded to their supplied arguments. If it is false an argument pack
471   /// will only count as 1 argument.
472   size_t GetNumTemplateArguments(bool expand_pack = false) const;
473 
474   // Return the TemplateArgumentKind of the template argument at index idx.
475   // If expand_pack is true, then variadic argument packs are automatically
476   // expanded to their supplied arguments. With expand_pack set to false, an
477   // arguement pack will count as 1 argument and return a type of Pack.
478   lldb::TemplateArgumentKind
479   GetTemplateArgumentKind(size_t idx, bool expand_pack = false) const;
480   CompilerType GetTypeTemplateArgument(size_t idx,
481                                        bool expand_pack = false) const;
482 
483   /// Returns the value of the template argument and its type.
484   /// If expand_pack is true, then variadic argument packs are automatically
485   /// expanded to their supplied arguments. With expand_pack set to false, an
486   /// arguement pack will count as 1 argument and it is invalid to call this
487   /// method on the pack argument.
488   std::optional<IntegralTemplateArgument>
489   GetIntegralTemplateArgument(size_t idx, bool expand_pack = false) const;
490 
491   CompilerType GetTypeForFormatters() const;
492 
493   LazyBool ShouldPrintAsOneLiner(ValueObject *valobj) const;
494 
495   bool IsMeaninglessWithoutDynamicResolution() const;
496   /// \}
497 
498   /// Dumping types.
499   /// \{
500 #ifndef NDEBUG
501   /// Convenience LLVM-style dump method for use in the debugger only.
502   /// Don't call this function from actual code.
503   LLVM_DUMP_METHOD void dump() const;
504 #endif
505 
506   bool DumpTypeValue(Stream *s, lldb::Format format, const DataExtractor &data,
507                      lldb::offset_t data_offset, size_t data_byte_size,
508                      uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset,
509                      ExecutionContextScope *exe_scope);
510 
511   /// Dump to stdout.
512   void DumpTypeDescription(lldb::DescriptionLevel level =
513                            lldb::eDescriptionLevelFull) const;
514 
515   /// Print a description of the type to a stream. The exact implementation
516   /// varies, but the expectation is that eDescriptionLevelFull returns a
517   /// source-like representation of the type, whereas eDescriptionLevelVerbose
518   /// does a dump of the underlying AST if applicable.
519   void DumpTypeDescription(Stream *s, lldb::DescriptionLevel level =
520                                           lldb::eDescriptionLevelFull) const;
521   /// \}
522 
523   bool GetValueAsScalar(const DataExtractor &data, lldb::offset_t data_offset,
524                         size_t data_byte_size, Scalar &value,
525                         ExecutionContextScope *exe_scope) const;
526   void Clear() {
527     m_type_system = {};
528     m_type = nullptr;
529   }
530 
531 private:
532 #ifndef NDEBUG
533   /// If the type is valid, ask the TypeSystem to verify the integrity
534   /// of the type to catch CompilerTypes that mix and match invalid
535   /// TypeSystem/Opaque type pairs.
536   bool Verify() const;
537 #endif
538 
539   lldb::TypeSystemWP m_type_system;
540   lldb::opaque_compiler_type_t m_type = nullptr;
541 };
542 
543 bool operator==(const CompilerType &lhs, const CompilerType &rhs);
544 bool operator!=(const CompilerType &lhs, const CompilerType &rhs);
545 
546 struct CompilerType::IntegralTemplateArgument {
547   llvm::APSInt value;
548   CompilerType type;
549 };
550 
551 } // namespace lldb_private
552 
553 #endif // LLDB_SYMBOL_COMPILERTYPE_H
554