Skip to content

Commit 9a2e0dc

Browse files
var bits uses bitfield
1 parent 10bfad0 commit 9a2e0dc

File tree

6 files changed

+13
-19
lines changed

6 files changed

+13
-19
lines changed

include/mrdox/Metadata/Var.hpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@
2121
namespace clang {
2222
namespace mrdox {
2323

24-
enum class VarFlags0 : std::uint32_t
24+
union VarFlags0
2525
{
26-
storageClass = 0b00000000'00000000'00000000'00000111
26+
BitFieldFullValue raw;
27+
28+
BitField<0, 3, StorageClass> storageClass;
2729
};
2830

2931
/** A variable.
@@ -35,7 +37,7 @@ struct VarInfo
3537
: SymbolInfo
3638
, TypeInfo // holds the type of this variable
3739
{
38-
Bits<VarFlags0> specs;
40+
VarFlags0 specs{.raw={0}};
3941

4042
//--------------------------------------------
4143

source/api/AST/ASTVisitor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ buildVar(
10521052
I.Loc.emplace_back(LineNumber, File, IsFileInRootDir);
10531053
static_cast<TypeInfo&>(I) =
10541054
getTypeInfoForType(D->getTypeSourceInfo()->getType());
1055-
I.specs.set<VarFlags0::storageClass>(D->getStorageClass());
1055+
I.specs.storageClass = D->getStorageClass();
10561056
insertBitcode(ex_, writeBitcode(I));
10571057
insertBitcode(ex_, writeParent(std::move(I)));
10581058
}

source/api/AST/AnyBlock.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ class VarBlock
11281128
switch(ID)
11291129
{
11301130
case VARIABLE_BITS:
1131-
return decodeRecord(R, Blob, I->specs);
1131+
return decodeRecord<1u>(R, {&I->specs.raw}, Blob);
11321132
default:
11331133
break;
11341134
}

source/api/AST/BitcodeWriter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ emitBlock(
10271027
emitInfoPart(I);
10281028
emitSymbolPart(I);
10291029
emitBlock(static_cast<TypeInfo const&>(I));
1030-
emitRecord(VARIABLE_BITS, I.specs);
1030+
emitRecord({I.specs.raw}, VARIABLE_BITS);
10311031
}
10321032

10331033
//------------------------------------------------

source/api/Metadata/Reduce.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ void merge(VarInfo& I, VarInfo&& Other)
200200
if(I.Type.id == EmptySID && I.Type.Name.empty())
201201
I.Type = std::move(Other.Type);
202202
mergeSymbolInfo(I, std::move(Other));
203-
I.specs.merge(std::move(Other.specs));
203+
I.specs.raw.value |= Other.specs.raw.value;
204204
}
205205

206206
void merge(Reference& I, Reference&& Other)

source/api/_XML/CXXTags.hpp

+4-12
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,7 @@ constexpr llvm::StringRef getBitsIDName(RecFlags0 ID)
6161
return "";
6262
}
6363

64-
constexpr llvm::StringRef getBitsIDName(VarFlags0 ID)
65-
{
66-
switch(ID)
67-
{
68-
case VarFlags0::storageClass: return "storage-class";
69-
default:
70-
Assert(false);
71-
}
72-
return "";
73-
}
64+
7465

7566
constexpr llvm::StringRef getNameForValue(...)
7667
{
@@ -282,9 +273,10 @@ inline void write(FnFlags1 const& bits, XMLTags& tags)
282273
fw.write(&FnFlags1::isExplicit, "is-explicit");
283274
}
284275

285-
inline void write(Bits<VarFlags0> const& bits, XMLTags& tags)
276+
inline void write(VarFlags0 const& bits, XMLTags& tags)
286277
{
287-
WriteBits(bits).write<VarFlags0::storageClass, StorageClass>(tags);
278+
BitFieldWriter<VarFlags0> fw(bits, tags);
279+
fw.write(&VarFlags0::storageClass, "storage-class");
288280
}
289281

290282
inline void writeReturnType(TypeInfo const& I, XMLTags& tags)

0 commit comments

Comments
 (0)