https://bugs.kde.org/show_bug.cgi?id=439278

--- Comment #5 from Wyatt Childers <dark...@nearce.com> ---
Alright I got GDB attached, and hopefully I've got some useful information now
(backtrace of all threads has already been attached).

Beyond that plasmashell thread seems to be stuck in a loop here trying to
figure out where to allocate a page (though this may be unrelated/just
statistically significantly reentered hot logic):

jsruntime/qv4persistent.cpp
│   196         Value *PersistentValueStorage::allocate()                       
│   197         {                                                               
│   198             Page *p = static_cast<Page *>(firstPage);                   
│   199             while (p) {                                                 
│  >200                 if (p->header.freeList != -1)                           
│   201                     break;                                              
│   202                 p = p->header.next;                                     
│   203             }                                                           
│   204             if (!p)                                                     
│   205                 p = allocatePage(this);                                 
│   206                                                                         
│   207             Value *v = p->values + p->header.freeList;                  
│   208             p->header.freeList = v->int_32();

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to