namespace llvm {
class MCSymbolCOFF : public MCSymbol {
+ /// This corresponds to the e_type field of the COFF symbol.
+ mutable uint16_t Type;
+
public:
MCSymbolCOFF(const StringMapEntry<bool> *Name, bool isTemporary)
- : MCSymbol(SymbolKindCOFF, Name, isTemporary) {}
+ : MCSymbol(SymbolKindCOFF, Name, isTemporary), Type(0) {}
uint16_t getType() const {
- return (getFlags() & COFF::SF_TypeMask) >> COFF::SF_TypeShift;
+ return Type;
}
- void setType(uint16_t Type) const {
- modifyFlags(Type << COFF::SF_TypeShift, COFF::SF_TypeMask);
+ void setType(uint16_t Ty) const {
+ Type = Ty;
}
static bool classof(const MCSymbol *S) { return S->isCOFF(); }
uint8_t NumberOfAuxSymbols;
};
- enum SymbolFlags {
- SF_TypeMask = 0x0000FFFF,
- SF_TypeShift = 0,
+ enum SymbolFlags : uint16_t {
+ SF_ClassMask = 0x00FF,
+ SF_ClassShift = 0,
- SF_ClassMask = 0x00FF0000,
- SF_ClassShift = 16,
-
- SF_WeakExternal = 0x01000000,
- SF_SafeSEH = 0x02000000,
+ SF_WeakExternal = 0x0100,
+ SF_SafeSEH = 0x0200,
};
enum SymbolSectionNumber : int32_t {