File: SwiftHashedContainer.h

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (151 lines) | stat: -rw-r--r-- 4,400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
//===-- SwiftHashedContainer.h ----------------------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//

#ifndef liblldb_SwiftHashedContainer_h_
#define liblldb_SwiftHashedContainer_h_

#include "lldb/lldb-enumerations.h"
#include "lldb/lldb-forward.h"

#include "lldb/Utility/ConstString.h"
#include "lldb/DataFormatters/FormatClasses.h"
#include "lldb/DataFormatters/TypeSummary.h"
#include "lldb/DataFormatters/TypeSynthetic.h"
#include "lldb/Symbol/CompilerType.h"
#include "lldb/Target/Target.h"

#include <functional>

namespace lldb_private {
namespace formatters {
namespace swift {

class HashedStorageHandler;
typedef std::unique_ptr<HashedStorageHandler> HashedStorageHandlerUP;

class HashedCollectionConfig {
public:
  void RegisterSummaryProviders(
    lldb::TypeCategoryImplSP swift_category_sp,
    TypeSummaryImpl::Flags flags) const;
  void RegisterSyntheticChildrenCreators(
    lldb::TypeCategoryImplSP swift_category_sp,
    SyntheticChildren::Flags flags) const;

  bool IsNativeStorageName(ConstString name) const;

  bool IsEmptyStorageName(ConstString name) const;

  bool IsDeferredBridgedStorageName(ConstString name) const;

  HashedStorageHandlerUP
  CreateHandler(ValueObject &valobj) const;

  virtual ~HashedCollectionConfig() = default;

private:
  HashedStorageHandlerUP
  CreateEmptyHandler(CompilerType elem_type = CompilerType()) const;

  HashedStorageHandlerUP
  _CreateNativeHandler(
    lldb::ValueObjectSP storage_sp,
    CompilerType key_type,
    CompilerType value_type) const;

  HashedStorageHandlerUP
  CreateNativeHandler(
    lldb::ValueObjectSP value_sp,
    lldb::ValueObjectSP storage_sp) const;

  HashedStorageHandlerUP
  CreateCocoaHandler(lldb::ValueObjectSP storage_sp) const;

  lldb::ValueObjectSP
  StorageObjectAtAddress(
    const ExecutionContext &exe_ctx,
    lldb::addr_t address) const;

  lldb::ValueObjectSP
  CocoaObjectAtAddress(
    const ExecutionContext &exe_ctx,
    lldb::addr_t address) const;

protected:
  HashedCollectionConfig() {}

  virtual CXXFunctionSummaryFormat::Callback
  GetSummaryProvider() const = 0;

  virtual CXXSyntheticChildren::CreateFrontEndCallback
  GetSyntheticChildrenCreator() const = 0;

  virtual CXXSyntheticChildren::CreateFrontEndCallback
  GetCocoaSyntheticChildrenCreator() const = 0;

  ConstString m_summaryProviderName;
  ConstString m_syntheticChildrenName;

  ConstString m_collection_demangledRegex;
  
  ConstString m_nativeStorageRoot_mangled;
  ConstString m_nativeStorageRoot_demangled;

  ConstString m_nativeStorage_mangledRegex_ObjC;
  ConstString m_nativeStorage_demangledPrefix;
  ConstString m_nativeStorage_demangledRegex;

  ConstString m_emptyStorage_mangled_ObjC;
  ConstString m_emptyStorage_demangled;

  ConstString m_deferredBridgedStorage_mangledRegex_ObjC;
  ConstString m_deferredBridgedStorage_demangledPrefix;
  ConstString m_deferredBridgedStorage_demangledRegex;
};

// Some part of the buffer handling logic needs to be shared between summary and
// synthetic children
// If I was only making synthetic children, this would be best modelled as
// different FrontEnds
class HashedStorageHandler {
public:
  virtual size_t GetCount() = 0;

  virtual CompilerType GetElementType() = 0;

  virtual lldb::ValueObjectSP GetElementAtIndex(size_t) = 0;

  virtual bool IsValid() = 0;

  virtual ~HashedStorageHandler() {}
};

class HashedSyntheticChildrenFrontEnd : public SyntheticChildrenFrontEnd {
public:
  HashedSyntheticChildrenFrontEnd(const HashedCollectionConfig &config,
                                  lldb::ValueObjectSP valobj_sp);

  llvm::Expected<uint32_t> CalculateNumChildren() override;
  lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
  lldb::ChildCacheState Update() override;
  bool MightHaveChildren() override;
  size_t GetIndexOfChildWithName(ConstString name) override;

private:
  const HashedCollectionConfig &m_config;
  HashedStorageHandlerUP m_buffer;
};
}
}
}

#endif // liblldb_SwiftHashedContainer_h_