Changeset 163665 in webkit


Ignore:
Timestamp:
Feb 7, 2014, 4:55:15 PM (11 years ago)
Author:
mark.lam@apple.com
Message:

Removed superflous JSLock::entryStackPointer field.
<https://webkit.org/b/128413>

Reviewed by Geoffrey Garen.

  • runtime/JSLock.cpp:

(JSC::JSLock::lock):

  • runtime/JSLock.h:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r163664 r163665  
     12014-02-07  Mark Lam  <mark.lam@apple.com>
     2
     3        Removed superflous JSLock::entryStackPointer field.
     4        <https://webkit.org/b/128413>
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * runtime/JSLock.cpp:
     9        (JSC::JSLock::lock):
     10        * runtime/JSLock.h:
     11
    1122014-02-07  Mark Lam  <mark.lam@apple.com>
    213
  • trunk/Source/JavaScriptCore/runtime/JSLock.cpp

    r163661 r163665  
    11/*
    2  * Copyright (C) 2005, 2008, 2012 Apple Inc. All rights reserved.
     2 * Copyright (C) 2005, 2008, 2012, 2014 Apple Inc. All rights reserved.
    33 *
    44 * This library is free software; you can redistribute it and/or
     
    126126
    127127        if (!m_vm->stackPointerAtVMEntry) {
    128             entryStackPointer = &holder; // A proxy for the current stack pointer.
    129             m_vm->stackPointerAtVMEntry = entryStackPointer;
     128            m_vm->stackPointerAtVMEntry = &holder; // A proxy for the current stack pointer.
    130129            threadData.setSavedReservedZoneSize(m_vm->updateStackLimitWithReservedZoneSize(Options::reservedZoneSize()));
    131130        }
  • trunk/Source/JavaScriptCore/runtime/JSLock.h

    r163214 r163665  
    11/*
    2  * Copyright (C) 2005, 2008, 2009 Apple Inc. All rights reserved.
     2 * Copyright (C) 2005, 2008, 2009, 2014 Apple Inc. All rights reserved.
    33 *
    44 * This library is free software; you can redistribute it and/or
     
    124124        unsigned m_lockDropDepth;
    125125        VM* m_vm;
    126         void* entryStackPointer;
    127126    };
    128127
Note: See TracChangeset for help on using the changeset viewer.