LirNameMap gets large over time and searching it with binary search is slow (475127, r=shaver).

This commit is contained in:
Andreas Gal 2009-01-26 18:15:39 -08:00
Родитель b5d16a1ca8
Коммит 4f030887d9
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -1239,8 +1239,9 @@ void TraceRecorder::removeFragmentoReferences()
inline LIns*
TraceRecorder::addName(LIns* ins, const char* name)
{
#ifdef DEBUG
lirbuf->names->addName(ins, name);
#ifdef JS_JIT_SPEW
if (js_verboseDebug)
lirbuf->names->addName(ins, name);
#endif
return ins;
}