Fix assertion failure in trace-test.js with TRACEMONKEY=verbose (bug 499154, r=graydon).

This commit is contained in:
Nicholas Nethercote 2009-06-22 10:48:36 +10:00
Родитель 174b6a9874
Коммит b7a14c0256
2 изменённых файлов: 25 добавлений и 22 удалений

Просмотреть файл

@ -163,13 +163,6 @@ namespace nanojit
return page; return page;
} }
LInsp LirBuffer::lastWritten()
{
// Make sure there is a most-recently-written instruction.
NanoAssert(_unused >= pageDataStart(_unused));
return (LInsp)(_unused - sizeof(LIns)); // step back one instruction
}
// Allocate a new page, and write the first instruction to it -- a skip // Allocate a new page, and write the first instruction to it -- a skip
// linking to last instruction of the previous page. // linking to last instruction of the previous page.
void LirBuffer::moveToNewPage(uintptr_t addrOfLastLInsOnCurrentPage) void LirBuffer::moveToNewPage(uintptr_t addrOfLastLInsOnCurrentPage)
@ -202,8 +195,10 @@ namespace nanojit
// If the instruction won't fit on the current page, move to the next // If the instruction won't fit on the current page, move to the next
// page. // page.
if (_unused + szB - 1 > pageBottom(_unused)) if (_unused + szB - 1 > pageBottom(_unused)) {
moveToNewPage((uintptr_t)lastWritten()); uintptr_t addrOfLastLInsOnPage = _unused - sizeof(LIns);
moveToNewPage(addrOfLastLInsOnPage);
}
// We now know that we are on a page that has the requested amount of // We now know that we are on a page that has the requested amount of
// room: record the starting address of the requested space and bump // room: record the starting address of the requested space and bump
@ -349,9 +344,19 @@ namespace nanojit
return 0; return 0;
uintptr_t i = uintptr_t(cur); uintptr_t i = uintptr_t(cur);
LOpcode iop = ((LInsp)i)->opcode(); LOpcode iop = ((LInsp)i)->opcode();
// We pass over skip instructions below, which means we shouldn't see
// one here. // We pass over skip instructions below. Also, the last instruction
// for a fragment shouldn't be a skip(*). Therefore we shouldn't see
// a skip here.
//
// (*) Actually, if the last *inserted* instruction exactly fills up a
// page, a new page will be created, and thus the last *written*
// instruction will be a skip -- the one needed for the cross-page
// link. But the last *inserted* instruction is what is recorded and
// used to initialise each LirReader, and that is what is seen here,
// and therefore this assertion holds.
NanoAssert(iop != LIR_skip); NanoAssert(iop != LIR_skip);
do do
{ {
switch (iop) switch (iop)
@ -1509,24 +1514,24 @@ namespace nanojit
} }
}; };
void live(GC *gc, LirBuffer *lirbuf) void live(GC *gc, Fragment *frag)
{ {
// traverse backwards to find live exprs and a few other stats. // traverse backwards to find live exprs and a few other stats.
LiveTable live(gc); LiveTable live(gc);
uint32_t exits = 0; uint32_t exits = 0;
LirReader br(lirbuf); LirReader br(frag->lastIns);
StackFilter sf(&br, gc, lirbuf, lirbuf->sp); StackFilter sf(&br, gc, frag->lirbuf, frag->lirbuf->sp);
StackFilter r(&sf, gc, lirbuf, lirbuf->rp); StackFilter r(&sf, gc, frag->lirbuf, frag->lirbuf->rp);
int total = 0; int total = 0;
if (lirbuf->state) if (frag->lirbuf->state)
live.add(lirbuf->state, r.pos()); live.add(frag->lirbuf->state, r.pos());
for (LInsp i = r.read(); i != 0; i = r.read()) for (LInsp i = r.read(); i != 0; i = r.read())
{ {
total++; total++;
// first handle side-effect instructions // first handle side-effect instructions
if (!i->isCse(lirbuf->_functions)) if (!i->isCse(frag->lirbuf->_functions))
{ {
live.add(i,0); live.add(i,0);
if (i->isGuard()) if (i->isGuard())
@ -1566,7 +1571,7 @@ namespace nanojit
nj_dprintf("side exits %u\n", exits); nj_dprintf("side exits %u\n", exits);
// print live exprs, going forwards // print live exprs, going forwards
LirNameMap *names = lirbuf->names; LirNameMap *names = frag->lirbuf->names;
bool newblock = true; bool newblock = true;
for (int j=live.retired.size()-1; j >= 0; j--) for (int j=live.retired.size()-1; j >= 0; j--)
{ {
@ -1992,7 +1997,7 @@ namespace nanojit
verbose_only( assm->_outputCache = &asmOutput; ) verbose_only( assm->_outputCache = &asmOutput; )
verbose_only(if (assm->_verbose && core->config.verbose_live) verbose_only(if (assm->_verbose && core->config.verbose_live)
live(gc, triggerFrag->lirbuf);) live(gc, triggerFrag);)
bool treeCompile = core->config.tree_opt && (triggerFrag->kind == BranchTrace); bool treeCompile = core->config.tree_opt && (triggerFrag->kind == BranchTrace);
RegAllocMap regMap(gc); RegAllocMap regMap(gc);

Просмотреть файл

@ -677,7 +677,6 @@ namespace nanojit
void clear(); void clear();
void rewind(); void rewind();
uintptr_t makeRoom(size_t szB); // make room for an instruction uintptr_t makeRoom(size_t szB); // make room for an instruction
LInsp lastWritten(); // most recently written instruction
bool outOMem() { return _noMem != 0; } bool outOMem() { return _noMem != 0; }
debug_only (void validate() const;) debug_only (void validate() const;)
@ -756,7 +755,6 @@ namespace nanojit
LInsp _i; // current instruction that this decoder is operating on. LInsp _i; // current instruction that this decoder is operating on.
public: public:
LirReader(LirBuffer* buf) : LirFilter(0), _i(buf->lastWritten()) { }
LirReader(LInsp i) : LirFilter(0), _i(i) { } LirReader(LInsp i) : LirFilter(0), _i(i) { }
virtual ~LirReader() {} virtual ~LirReader() {}