Changeset 171104 in webkit


Ignore:
Timestamp:
Jul 15, 2014 3:49:58 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Buildfix if LLINT_SLOW_PATH_TRACING is enabled
https://bugs.webkit.org/show_bug.cgi?id=133790

Patch by Eva Balazsfalvi <evab.u-szeged@partner.samsung.com> on 2014-07-15
Reviewed by Mark Lam.

  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::LLINT_SLOW_PATH_DECL):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r171096 r171104  
     12014-07-15  Eva Balazsfalvi  <evab.u-szeged@partner.samsung.com>
     2
     3        Buildfix if LLINT_SLOW_PATH_TRACING is enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=133790
     5
     6        Reviewed by Mark Lam.
     7
     8        * llint/LLIntSlowPaths.cpp:
     9        (JSC::LLInt::LLINT_SLOW_PATH_DECL):
     10
    1112014-07-14  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp

    r170147 r171104  
    456456    dataLogF("Num callee registers = %u.\n", exec->codeBlock()->m_numCalleeRegisters);
    457457    dataLogF("Num vars = %u.\n", exec->codeBlock()->m_numVars);
    458     dataLogF("Current end is at %p.\n", exec->vm().interpreter->stack().end());
     458
     459#if ENABLE(LLINT_C_LOOP)
     460    dataLogF("Current end is at %p.\n", exec->vm().jsStackLimit());
     461#else
     462    dataLogF("Current end is at %p.\n", exec->vm().stackLimit());
    459463#endif
    460464
     465#endif
    461466    // This stack check is done in the prologue for a function call, and the
    462467    // CallFrame is not completely set up yet. For example, if the frame needs
Note: See TracChangeset for help on using the changeset viewer.