Changeset 181481 in webkit
- Timestamp:
- Mar 13, 2015, 11:02:40 AM (10 years ago)
- Location:
- trunk/Source
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r181469 r181481 1 2015-03-13 Mark Lam <mark.lam@apple.com> 2 3 Introduce WTF::Atomic to wrap std::atomic for a friendlier CAS. 4 <https://webkit.org/b/142661> 5 6 Reviewed by Filip Pizlo. 7 8 Changed CodeBlock, and the DFG's crashLock to use WTF::Atomic instead of 9 std::atomic. 10 11 * bytecode/CodeBlock.cpp: 12 (JSC::CodeBlock::CodeBlock): 13 (JSC::CodeBlock::visitAggregate): 14 * bytecode/CodeBlock.h: 15 * dfg/DFGCommon.cpp: 16 (JSC::DFG::startCrashing): 17 1 18 2015-03-12 Mark Lam <mark.lam@apple.com> 2 19 -
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r181467 r181481 1646 1646 , m_needsActivation(other.m_needsActivation) 1647 1647 , m_mayBeExecuting(false) 1648 , m_visitAggregateHasBeenCalled(false)1649 1648 , m_source(other.m_source) 1650 1649 , m_sourceOffset(other.m_sourceOffset) … … 1663 1662 #endif 1664 1663 { 1664 m_visitAggregateHasBeenCalled.store(false, std::memory_order_relaxed); 1665 1665 1666 ASSERT(m_heap->isDeferred()); 1666 1667 ASSERT(m_scopeRegister.isLocal()); … … 1708 1709 , m_needsActivation(unlinkedCodeBlock->hasActivationRegister() && unlinkedCodeBlock->codeType() == FunctionCode) 1709 1710 , m_mayBeExecuting(false) 1710 , m_visitAggregateHasBeenCalled(false)1711 1711 , m_source(sourceProvider) 1712 1712 , m_sourceOffset(sourceOffset) … … 1720 1720 #endif 1721 1721 { 1722 m_visitAggregateHasBeenCalled.store(false, std::memory_order_relaxed); 1723 1722 1724 ASSERT(m_heap->isDeferred()); 1723 1725 ASSERT(m_scopeRegister.isLocal()); … … 2203 2205 // To this end, use an atomic operation to check (and set) if I've been called already. 2204 2206 // Only one thread may proceed past this point - whichever one wins the atomic set race. 2205 bool expected = false; 2206 bool setByMe = m_visitAggregateHasBeenCalled.compare_exchange_strong(expected, true, std::memory_order_acquire); 2207 bool setByMe = m_visitAggregateHasBeenCalled.compare_exchange_strong(false, true, std::memory_order_acquire); 2207 2208 if (!setByMe) 2208 2209 return; -
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r181456 r181481 1066 1066 bool m_needsActivation; 1067 1067 bool m_mayBeExecuting; 1068 std::atomic<bool> m_visitAggregateHasBeenCalled;1068 Atomic<bool> m_visitAggregateHasBeenCalled; 1069 1069 1070 1070 RefPtr<SourceProvider> m_source; -
trunk/Source/JavaScriptCore/dfg/DFGCommon.cpp
r181469 r181481 35 35 namespace JSC { namespace DFG { 36 36 37 static std::atomic<unsigned> crashLock;37 static Atomic<unsigned> crashLock; 38 38 39 39 void startCrashing() 40 40 { 41 unsigned expected = 0; 42 while (!crashLock.compare_exchange_weak(expected, 1, std::memory_order_acquire)) { 41 while (!crashLock.compare_exchange_weak(0, 1, std::memory_order_acquire)) 43 42 std::this_thread::yield(); 44 expected = 0;45 }46 43 } 47 44 -
trunk/Source/WTF/ChangeLog
r181467 r181481 1 2015-03-13 Mark Lam <mark.lam@apple.com> 2 3 Introduce WTF::Atomic to wrap std::atomic for a friendlier CAS. 4 <https://webkit.org/b/142661> 5 6 Reviewed by Filip Pizlo. 7 8 The CAS functions provided by std::atomic takes a reference to the expected 9 value and modifies it if the CAS fails. However, in a lot of our CAS usage, 10 we don't want the expected value to change. The solution to this is to 11 provide a WTF::Atomic struct that wraps std::atomic, and provide CAS 12 methods that won't alter the expected value if the CAS fails. 13 14 The method names in WTF::Atomic are chosen to be identical to those 15 in std::atomic so that WTF::Atomic can be a simple drop in replacement 16 for std::atomic. 17 18 Also changed ByteSpinLock to use WTF::Atomic instead of std::atomic. 19 20 * wtf/Atomics.h: 21 (WTF::Atomic::load): 22 (WTF::Atomic::store): 23 (WTF::Atomic::compare_exchange_weak): 24 (WTF::Atomic::compare_exchange_strong): 25 * wtf/ByteSpinLock.h: 26 (WTF::ByteSpinLock::ByteSpinLock): 27 (WTF::ByteSpinLock::lock): 28 1 29 2015-03-12 Filip Pizlo <fpizlo@apple.com> 2 30 -
trunk/Source/WTF/wtf/Atomics.h
r181305 r181481 1 1 /* 2 * Copyright (C) 2007 , 2008, 2010, 2012, 2013Apple Inc. All rights reserved.2 * Copyright (C) 2007-2008, 2010, 2012-2013, 2015 Apple Inc. All rights reserved. 3 3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com) 4 4 * … … 60 60 #define Atomics_h 61 61 62 #include <atomic> 62 63 #include <wtf/StdLibExtras.h> 63 64 … … 71 72 72 73 namespace WTF { 74 75 // Atomic wraps around std::atomic with the sole purpose of making the compare_exchange 76 // operations not alter the expected value. This is more in line with how we typically 77 // use CAS in our code. 78 // 79 // Atomic is a struct without explicitly defined constructors so that it can be 80 // initialized at compile time. 81 82 template<typename T> 83 struct Atomic { 84 85 T load(std::memory_order order) const { return value.load(order); } 86 87 void store(T desired, std::memory_order order) { value.store(desired, order); } 88 89 bool compare_exchange_weak(T expected, T desired, std::memory_order order) 90 { 91 T expectedOrActual = expected; 92 return value.compare_exchange_weak(expectedOrActual, desired, order); 93 } 94 95 bool compare_exchange_strong(T expected, T desired, std::memory_order order) 96 { 97 T expectedOrActual = expected; 98 return value.compare_exchange_strong(expectedOrActual, desired, order); 99 } 100 101 std::atomic<T> value; 102 }; 73 103 74 104 #if OS(WINDOWS) … … 346 376 } // namespace WTF 347 377 378 using WTF::Atomic; 379 348 380 #endif // Atomics_h -
trunk/Source/WTF/wtf/ByteSpinLock.h
r181461 r181481 1 1 /* 2 * Copyright (C) 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2013, 2015 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 27 27 #define ByteSpinLock_h 28 28 29 #include <atomic>30 29 #include <thread> 31 30 #include <wtf/Assertions.h> 31 #include <wtf/Atomics.h> 32 32 #include <wtf/Locker.h> 33 33 #include <wtf/Noncopyable.h> … … 39 39 public: 40 40 ByteSpinLock() 41 : m_lock(false)42 41 { 42 m_lock.store(false, std::memory_order_relaxed); 43 43 } 44 44 45 45 void lock() 46 46 { 47 bool expected = false; 48 while (!m_lock.compare_exchange_weak(expected, true, std::memory_order_acquire)) { 47 while (!m_lock.compare_exchange_weak(false, true, std::memory_order_acquire)) 49 48 std::this_thread::yield(); 50 expected = false;51 }52 49 } 53 50 … … 60 57 61 58 private: 62 std::atomic<bool> m_lock;59 Atomic<bool> m_lock; 63 60 }; 64 61
Note:
See TracChangeset
for help on using the changeset viewer.