Changeset 161175 in webkit


Ignore:
Timestamp:
Dec 30, 2013, 11:39:01 PM (11 years ago)
Author:
mark.lam@apple.com
Message:

CStack: the GC should not be assuming any limit on the stack size.
https://bugs.webkit.org/show_bug.cgi?id=126335.

Not yet reviewed.

  • heap/ConservativeRoots.cpp:

(JSC::ConservativeRoots::genericAddSpan):

Location:
branches/jsCStack/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/jsCStack/Source/JavaScriptCore/ChangeLog

    r161174 r161175  
     12013-12-30  Mark Lam  <mark.lam@apple.com>
     2
     3        CStack: the GC should not be assuming any limit on the stack size.
     4        https://bugs.webkit.org/show_bug.cgi?id=126335.
     5
     6        Not yet reviewed.
     7
     8        * heap/ConservativeRoots.cpp:
     9        (JSC::ConservativeRoots::genericAddSpan):
     10
    1112013-12-30  Mark Lam  <mark.lam@apple.com>
    212
  • branches/jsCStack/Source/JavaScriptCore/heap/ConservativeRoots.cpp

    r155711 r161175  
    100100    }
    101101
    102     ASSERT((static_cast<char*>(end) - static_cast<char*>(begin)) < 0x1000000);
    103102    ASSERT(isPointerAligned(begin));
    104103    ASSERT(isPointerAligned(end));
Note: See TracChangeset for help on using the changeset viewer.