mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-28 16:11:29 +00:00
[demangler] Fix a bug in r328464 found by oss-fuzz.
llvm-svn: 328507
This commit is contained in:
parent
56f0fc4716
commit
615e753e09
@ -1096,23 +1096,48 @@ struct ForwardTemplateReference : Node {
|
||||
size_t Index;
|
||||
Node *Ref = nullptr;
|
||||
|
||||
// If we're currently printing this node. It is possible (though invalid) for
|
||||
// a forward template reference to refer to itself via a substitution. This
|
||||
// creates a cyclic AST, which will stack overflow printing. To fix this, bail
|
||||
// out if more than one print* function is active.
|
||||
mutable bool Printing = false;
|
||||
|
||||
ForwardTemplateReference(size_t Index_)
|
||||
: Node(KForwardTemplateReference, Cache::Unknown, Cache::Unknown,
|
||||
Cache::Unknown),
|
||||
Index(Index_) {}
|
||||
|
||||
bool hasRHSComponentSlow(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return false;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
return Ref->hasRHSComponent(S);
|
||||
}
|
||||
bool hasArraySlow(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return false;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
return Ref->hasArray(S);
|
||||
}
|
||||
bool hasFunctionSlow(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return false;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
return Ref->hasFunction(S);
|
||||
}
|
||||
|
||||
void printLeft(OutputStream &S) const override { Ref->printLeft(S); }
|
||||
void printRight(OutputStream &S) const override { Ref->printRight(S); }
|
||||
void printLeft(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
Ref->printLeft(S);
|
||||
}
|
||||
void printRight(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
Ref->printRight(S);
|
||||
}
|
||||
};
|
||||
|
||||
class NameWithTemplateArgs final : public Node {
|
||||
|
@ -1088,23 +1088,48 @@ struct ForwardTemplateReference : Node {
|
||||
size_t Index;
|
||||
Node *Ref = nullptr;
|
||||
|
||||
// If we're currently printing this node. It is possible (though invalid) for
|
||||
// a forward template reference to refer to itself via a substitution. This
|
||||
// creates a cyclic AST, which will stack overflow printing. To fix this, bail
|
||||
// out if more than one print* function is active.
|
||||
mutable bool Printing = false;
|
||||
|
||||
ForwardTemplateReference(size_t Index_)
|
||||
: Node(KForwardTemplateReference, Cache::Unknown, Cache::Unknown,
|
||||
Cache::Unknown),
|
||||
Index(Index_) {}
|
||||
|
||||
bool hasRHSComponentSlow(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return false;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
return Ref->hasRHSComponent(S);
|
||||
}
|
||||
bool hasArraySlow(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return false;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
return Ref->hasArray(S);
|
||||
}
|
||||
bool hasFunctionSlow(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return false;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
return Ref->hasFunction(S);
|
||||
}
|
||||
|
||||
void printLeft(OutputStream &S) const override { Ref->printLeft(S); }
|
||||
void printRight(OutputStream &S) const override { Ref->printRight(S); }
|
||||
void printLeft(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
Ref->printLeft(S);
|
||||
}
|
||||
void printRight(OutputStream &S) const override {
|
||||
if (Printing)
|
||||
return;
|
||||
SwapAndRestore<bool> SavePrinting(Printing, true);
|
||||
Ref->printRight(S);
|
||||
}
|
||||
};
|
||||
|
||||
class NameWithTemplateArgs final : public Node {
|
||||
|
Loading…
Reference in New Issue
Block a user