Skip to content

Commit 7958e9e

Browse files
committed
refactor bitcode reader
1 parent df1ad22 commit 7958e9e

25 files changed

+1944
-1425
lines changed

include/mrdox/Metadata/BaseRecord.hpp

+11-9
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,6 @@ namespace mrdox {
2020

2121
struct BaseRecordInfo : public RecordInfo
2222
{
23-
BaseRecordInfo();
24-
25-
BaseRecordInfo(
26-
SymbolID id_,
27-
llvm::StringRef Name,
28-
bool IsVirtual,
29-
AccessSpecifier Access,
30-
bool IsParent);
31-
3223
// Indicates if base corresponds to a virtual inheritance
3324
bool IsVirtual = false;
3425

@@ -37,6 +28,17 @@ struct BaseRecordInfo : public RecordInfo
3728
AccessSpecifier Access = AccessSpecifier::AS_public;
3829

3930
bool IsParent = false; // Indicates if this base is a direct parent
31+
32+
//--------------------------------------------
33+
34+
BaseRecordInfo();
35+
36+
BaseRecordInfo(
37+
SymbolID id_,
38+
llvm::StringRef Name,
39+
bool IsVirtual,
40+
AccessSpecifier Access,
41+
bool IsParent);
4042
};
4143

4244
} // mrdox

include/mrdox/Metadata/FieldType.hpp

+8-6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ namespace mrdox {
2424
struct FieldTypeInfo
2525
: public TypeInfo
2626
{
27+
llvm::SmallString<16> Name; // Name associated with this info.
28+
29+
// When used for function parameters, contains the string representing the
30+
// expression of the default value, if any.
31+
llvm::SmallString<16> DefaultValue;
32+
33+
//--------------------------------------------
34+
2735
FieldTypeInfo() = default;
2836

2937
FieldTypeInfo(
@@ -44,12 +52,6 @@ struct FieldTypeInfo
4452
std::tie(Type, Name, DefaultValue) ==
4553
std::tie(Other.Type, Other.Name, Other.DefaultValue);
4654
}
47-
48-
llvm::SmallString<16> Name; // Name associated with this info.
49-
50-
// When used for function parameters, contains the string representing the
51-
// expression of the default value, if any.
52-
llvm::SmallString<16> DefaultValue;
5355
};
5456

5557
} // mrdox

0 commit comments

Comments
 (0)