mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
Bug 1004220 - IonMonkey: Add a dump() for MResumePoint r=nbp
This commit is contained in:
parent
9650756698
commit
019ea170c8
@ -292,6 +292,11 @@ MDefinition::dump(FILE *fp) const
|
|||||||
fprintf(fp, " = ");
|
fprintf(fp, " = ");
|
||||||
printOpcode(fp);
|
printOpcode(fp);
|
||||||
fprintf(fp, "\n");
|
fprintf(fp, "\n");
|
||||||
|
|
||||||
|
if (isInstruction()) {
|
||||||
|
if (MResumePoint *resume = toInstruction()->resumePoint())
|
||||||
|
resume->dump(fp);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -2306,6 +2311,41 @@ MResumePoint::inherit(MBasicBlock *block)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MResumePoint::dump(FILE *fp) const
|
||||||
|
{
|
||||||
|
fprintf(fp, "resumepoint mode=");
|
||||||
|
|
||||||
|
switch (mode()) {
|
||||||
|
case MResumePoint::ResumeAt:
|
||||||
|
fprintf(fp, "At");
|
||||||
|
break;
|
||||||
|
case MResumePoint::ResumeAfter:
|
||||||
|
fprintf(fp, "After");
|
||||||
|
break;
|
||||||
|
case MResumePoint::Outer:
|
||||||
|
fprintf(fp, "Outer");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (MResumePoint *c = caller())
|
||||||
|
fprintf(fp, " (caller in block%u)", c->block()->id());
|
||||||
|
|
||||||
|
for (size_t i = 0; i < numOperands(); i++) {
|
||||||
|
fprintf(fp, " ");
|
||||||
|
if (operands_[i].hasProducer())
|
||||||
|
getOperand(i)->printName(fp);
|
||||||
|
else
|
||||||
|
fprintf(fp, "(null)");
|
||||||
|
}
|
||||||
|
fprintf(fp, "\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
MResumePoint::dump() const
|
||||||
|
{
|
||||||
|
dump(stderr);
|
||||||
|
}
|
||||||
|
|
||||||
MDefinition *
|
MDefinition *
|
||||||
MToInt32::foldsTo(TempAllocator &alloc, bool useValueNumbers)
|
MToInt32::foldsTo(TempAllocator &alloc, bool useValueNumbers)
|
||||||
{
|
{
|
||||||
|
@ -217,6 +217,9 @@ class MNode : public TempObject
|
|||||||
|
|
||||||
virtual bool writeRecoverData(CompactBufferWriter &writer) const;
|
virtual bool writeRecoverData(CompactBufferWriter &writer) const;
|
||||||
|
|
||||||
|
virtual void dump(FILE *fp) const = 0;
|
||||||
|
virtual void dump() const = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Sets an unset operand, updating use information.
|
// Sets an unset operand, updating use information.
|
||||||
virtual void setOperand(size_t index, MDefinition *operand) = 0;
|
virtual void setOperand(size_t index, MDefinition *operand) = 0;
|
||||||
@ -613,6 +616,7 @@ class MDefinition : public MNode
|
|||||||
# undef OPCODE_CASTS
|
# undef OPCODE_CASTS
|
||||||
|
|
||||||
inline MInstruction *toInstruction();
|
inline MInstruction *toInstruction();
|
||||||
|
inline const MInstruction *toInstruction() const;
|
||||||
bool isInstruction() const {
|
bool isInstruction() const {
|
||||||
return !isPhi();
|
return !isPhi();
|
||||||
}
|
}
|
||||||
@ -9669,7 +9673,7 @@ class MResumePoint MOZ_FINAL : public MNode, public InlineForwardListNode<MResum
|
|||||||
uint32_t stackDepth() const {
|
uint32_t stackDepth() const {
|
||||||
return stackDepth_;
|
return stackDepth_;
|
||||||
}
|
}
|
||||||
MResumePoint *caller() {
|
MResumePoint *caller() const {
|
||||||
return caller_;
|
return caller_;
|
||||||
}
|
}
|
||||||
void setCaller(MResumePoint *caller) {
|
void setCaller(MResumePoint *caller) {
|
||||||
@ -9699,6 +9703,9 @@ class MResumePoint MOZ_FINAL : public MNode, public InlineForwardListNode<MResum
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool writeRecoverData(CompactBufferWriter &writer) const;
|
bool writeRecoverData(CompactBufferWriter &writer) const;
|
||||||
|
|
||||||
|
virtual void dump(FILE *fp) const;
|
||||||
|
virtual void dump() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
class MIsCallable
|
class MIsCallable
|
||||||
@ -10206,6 +10213,12 @@ MInstruction *MDefinition::toInstruction()
|
|||||||
return (MInstruction *)this;
|
return (MInstruction *)this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const MInstruction *MDefinition::toInstruction() const
|
||||||
|
{
|
||||||
|
JS_ASSERT(!isPhi());
|
||||||
|
return (const MInstruction *)this;
|
||||||
|
}
|
||||||
|
|
||||||
typedef Vector<MDefinition *, 8, IonAllocPolicy> MDefinitionVector;
|
typedef Vector<MDefinition *, 8, IonAllocPolicy> MDefinitionVector;
|
||||||
|
|
||||||
// Helper functions used to decide how to build MIR.
|
// Helper functions used to decide how to build MIR.
|
||||||
|
@ -1278,6 +1278,9 @@ void
|
|||||||
MBasicBlock::dump(FILE *fp)
|
MBasicBlock::dump(FILE *fp)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
if (MResumePoint *resume = entryResumePoint()) {
|
||||||
|
resume->dump();
|
||||||
|
}
|
||||||
for (MPhiIterator iter(phisBegin()); iter != phisEnd(); iter++) {
|
for (MPhiIterator iter(phisBegin()); iter != phisEnd(); iter++) {
|
||||||
iter->dump(fp);
|
iter->dump(fp);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user