Changeset 163665 in webkit
- Timestamp:
- Feb 7, 2014, 4:55:15 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r163664 r163665 1 2014-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 1 12 2014-02-07 Mark Lam <mark.lam@apple.com> 2 13 -
trunk/Source/JavaScriptCore/runtime/JSLock.cpp
r163661 r163665 1 1 /* 2 * Copyright (C) 2005, 2008, 2012 Apple Inc. All rights reserved.2 * Copyright (C) 2005, 2008, 2012, 2014 Apple Inc. All rights reserved. 3 3 * 4 4 * This library is free software; you can redistribute it and/or … … 126 126 127 127 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. 130 129 threadData.setSavedReservedZoneSize(m_vm->updateStackLimitWithReservedZoneSize(Options::reservedZoneSize())); 131 130 } -
trunk/Source/JavaScriptCore/runtime/JSLock.h
r163214 r163665 1 1 /* 2 * Copyright (C) 2005, 2008, 2009 Apple Inc. All rights reserved.2 * Copyright (C) 2005, 2008, 2009, 2014 Apple Inc. All rights reserved. 3 3 * 4 4 * This library is free software; you can redistribute it and/or … … 124 124 unsigned m_lockDropDepth; 125 125 VM* m_vm; 126 void* entryStackPointer;127 126 }; 128 127
Note:
See TracChangeset
for help on using the changeset viewer.