clang  19.0.0git
LayoutOverrideSource.h
Go to the documentation of this file.
1 //===--- LayoutOverrideSource.h --Override Record Layouts -------*- 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 LLVM_CLANG_FRONTEND_LAYOUTOVERRIDESOURCE_H
10 #define LLVM_CLANG_FRONTEND_LAYOUTOVERRIDESOURCE_H
11 
13 #include "clang/Basic/LLVM.h"
14 #include "llvm/ADT/StringMap.h"
15 #include "llvm/ADT/StringRef.h"
16 
17 namespace clang {
18  /// An external AST source that overrides the layout of
19  /// a specified set of record types.
20  ///
21  /// This class is used only for testing the ability of external AST sources
22  /// to override the layout of record types. Its input is the output format
23  /// of the command-line argument -fdump-record-layouts.
25  /// The layout of a given record.
26  struct Layout {
27  /// The size of the record.
28  uint64_t Size;
29 
30  /// The alignment of the record.
31  uint64_t Align;
32 
33  /// The offsets of non-virtual base classes in the record.
34  SmallVector<CharUnits, 8> BaseOffsets;
35 
36  /// The offsets of virtual base classes in the record.
37  SmallVector<CharUnits, 8> VBaseOffsets;
38 
39  /// The offsets of the fields, in source order.
40  SmallVector<uint64_t, 8> FieldOffsets;
41  };
42 
43  /// The set of layouts that will be overridden.
44  llvm::StringMap<Layout> Layouts;
45 
46  public:
47  /// Create a new AST source that overrides the layout of some
48  /// set of record types.
49  ///
50  /// The file is the result of passing -fdump-record-layouts to a file.
51  explicit LayoutOverrideSource(StringRef Filename);
52 
53  /// If this particular record type has an overridden layout,
54  /// return that layout.
55  bool
57  uint64_t &Size, uint64_t &Alignment,
58  llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets,
59  llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets,
60  llvm::DenseMap<const CXXRecordDecl *,
61  CharUnits> &VirtualBaseOffsets) override;
62 
63  /// Dump the overridden layouts.
64  void dump();
65  };
66 }
67 
68 #endif
StringRef Filename
Definition: Format.cpp:2976
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
llvm::MachO::Record Record
Definition: MachO.h:31
Represents a C++ struct/union/class.
Definition: DeclCXX.h:258
CharUnits - This is an opaque type for sizes expressed in character units.
Definition: CharUnits.h:38
Abstract interface for external sources of AST nodes.
An external AST source that overrides the layout of a specified set of record types.
bool layoutRecordType(const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap< const FieldDecl *, uint64_t > &FieldOffsets, llvm::DenseMap< const CXXRecordDecl *, CharUnits > &BaseOffsets, llvm::DenseMap< const CXXRecordDecl *, CharUnits > &VirtualBaseOffsets) override
If this particular record type has an overridden layout, return that layout.
void dump()
Dump the overridden layouts.
LayoutOverrideSource(StringRef Filename)
Create a new AST source that overrides the layout of some set of record types.
Represents a struct/union/class.
Definition: Decl.h:4171
The JSON file list parser is used to communicate input to InstallAPI.
unsigned long uint64_t