void operator=(const MDNode &) LLVM_DELETED_FUNCTION;
void *operator new(size_t) LLVM_DELETED_FUNCTION;
-protected:
- ContextAndReplaceableUses Context;
-
-private:
unsigned NumOperands;
+ unsigned NumUnresolved;
protected:
- unsigned MDNodeSubclassData;
+ ContextAndReplaceableUses Context;
void *operator new(size_t Size, unsigned NumOps);
void operator delete(void *Mem);
void resolve();
void resolveAfterOperandChange(Metadata *Old, Metadata *New);
void decrementUnresolvedOperandCount();
- unsigned countUnresolvedOperands() const;
+ unsigned countUnresolvedOperands();
/// \brief Mutate this to be "uniqued".
///
}
~MDTuple() { dropAllReferences(); }
- void setHash(unsigned Hash) { MDNodeSubclassData = Hash; }
+ void setHash(unsigned Hash) { SubclassData32 = Hash; }
void recalculateHash();
static MDTuple *getImpl(LLVMContext &Context, ArrayRef<Metadata *> MDs,
public:
/// \brief Get the hash, if any.
- unsigned getHash() const { return MDNodeSubclassData; }
+ unsigned getHash() const { return SubclassData32; }
static MDTuple *get(LLVMContext &Context, ArrayRef<Metadata *> MDs) {
return getImpl(Context, MDs, Uniqued);
getImpl(Context, Line, Column, Scope, InlinedAt, Temporary));
}
- unsigned getLine() const { return MDNodeSubclassData; }
+ unsigned getLine() const { return SubclassData32; }
unsigned getColumn() const { return SubclassData16; }
Metadata *getScope() const { return getOperand(0); }
Metadata *getInlinedAt() const {
MDNode::MDNode(LLVMContext &Context, unsigned ID, StorageType Storage,
ArrayRef<Metadata *> MDs)
- : Metadata(ID, Storage), Context(Context), NumOperands(MDs.size()),
- MDNodeSubclassData(0) {
+ : Metadata(ID, Storage), NumOperands(MDs.size()), NumUnresolved(0),
+ Context(Context) {
for (unsigned I = 0, E = MDs.size(); I != E; ++I)
setOperand(I, MDs[I]);
if (isDistinct())
return;
- if (isUniqued()) {
- // Check whether any operands are unresolved, requiring re-uniquing.
- unsigned NumUnresolved = countUnresolvedOperands();
- if (!NumUnresolved)
+ if (isUniqued())
+ // Check whether any operands are unresolved, requiring re-uniquing. If
+ // not, don't support RAUW.
+ if (!countUnresolvedOperands())
return;
- SubclassData32 = NumUnresolved;
- }
-
this->Context.makeReplaceable(make_unique<ReplaceableMetadataImpl>(Context));
}
return false;
}
-unsigned MDNode::countUnresolvedOperands() const {
- unsigned NumUnresolved = 0;
+unsigned MDNode::countUnresolvedOperands() {
+ assert(NumUnresolved == 0 && "Expected unresolved ops to be uncounted");
for (const auto &Op : operands())
NumUnresolved += unsigned(isOperandUnresolved(Op));
return NumUnresolved;
// Make this 'uniqued'.
Storage = Uniqued;
- if (unsigned NumUnresolved = countUnresolvedOperands())
- SubclassData32 = NumUnresolved;
- else
+ if (!countUnresolvedOperands())
resolve();
assert(isUniqued() && "Expected this to be uniqued");
// Move the map, so that this immediately looks resolved.
auto Uses = Context.takeReplaceableUses();
- SubclassData32 = 0;
+ NumUnresolved = 0;
assert(isResolved() && "Expected this to be resolved");
// Drop RAUW support.
}
void MDNode::resolveAfterOperandChange(Metadata *Old, Metadata *New) {
- assert(SubclassData32 != 0 && "Expected unresolved operands");
+ assert(NumUnresolved != 0 && "Expected unresolved operands");
// Check if an operand was resolved.
if (!isOperandUnresolved(Old)) {
if (isOperandUnresolved(New))
// An operand was un-resolved!
- ++SubclassData32;
+ ++NumUnresolved;
} else if (!isOperandUnresolved(New))
decrementUnresolvedOperandCount();
}
void MDNode::decrementUnresolvedOperandCount() {
- if (!--SubclassData32)
+ if (!--NumUnresolved)
// Last unresolved operand has just been resolved.
resolve();
}
assert(Line < (1u << 24) && "Expected 24-bit line");
assert(Column < (1u << 16) && "Expected 16-bit column");
- MDNodeSubclassData = Line;
+ SubclassData32 = Line;
SubclassData16 = Column;
}