Changeset 221439 in webkit
- Timestamp:
- Aug 31, 2017, 1:46:58 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/stress/dont-reserve-huge-capacity-lexer.js
r219065 r221439 1 //@ skip if ($architecture != "x86-64") or $memoryLimited1 //@ if ($architecture != "x86-64") or $memoryLimited then skip else runDefault end 2 2 3 3 var fe="f"; -
trunk/Source/JavaScriptCore/ChangeLog
r221422 r221439 1 2017-08-31 Filip Pizlo <fpizlo@apple.com> 2 3 All of the different ArrayBuffer::data's should be CagedPtr<> 4 https://bugs.webkit.org/show_bug.cgi?id=175515 5 6 Reviewed by Michael Saboff. 7 8 This straightforwardly implements what the title says. 9 10 * runtime/ArrayBuffer.cpp: 11 (JSC::SharedArrayBufferContents::~SharedArrayBufferContents): 12 (JSC::ArrayBufferContents::destroy): 13 (JSC::ArrayBufferContents::tryAllocate): 14 (JSC::ArrayBufferContents::makeShared): 15 (JSC::ArrayBufferContents::copyTo): 16 (JSC::ArrayBuffer::createFromBytes): 17 (JSC::ArrayBuffer::transferTo): 18 * runtime/ArrayBuffer.h: 19 (JSC::SharedArrayBufferContents::data const): 20 (JSC::ArrayBufferContents::data const): 21 (JSC::ArrayBuffer::data): 22 (JSC::ArrayBuffer::data const): 23 * runtime/ArrayBufferView.h: 24 (JSC::ArrayBufferView::baseAddress const): 25 * runtime/CagedBarrierPtr.h: Added a specialization so that CagedBarrierPtr<Gigacage::Foo, void> is valid. 26 * runtime/DataView.h: 27 (JSC::DataView::get): 28 (JSC::DataView::set): 29 * runtime/JSArrayBufferView.cpp: 30 (JSC::JSArrayBufferView::ConstructionContext::ConstructionContext): 31 * runtime/JSArrayBufferView.h: 32 (JSC::JSArrayBufferView::ConstructionContext::vector const): 33 (JSC::JSArrayBufferView::vector const): 34 * runtime/JSGenericTypedArrayViewInlines.h: 35 (JSC::JSGenericTypedArrayView<Adaptor>::visitChildren): 36 1 37 2017-08-22 Filip Pizlo <fpizlo@apple.com> 2 38 -
trunk/Source/JavaScriptCore/runtime/ArrayBuffer.cpp
r220601 r221439 42 42 SharedArrayBufferContents::~SharedArrayBufferContents() 43 43 { 44 m_destructor(m_data );44 m_destructor(m_data.getMayBeNull()); 45 45 } 46 46 … … 82 82 void ArrayBufferContents::destroy() 83 83 { 84 m_destructor(m_data );84 m_destructor(m_data.getMayBeNull()); 85 85 } 86 86 … … 114 114 115 115 if (policy == ZeroInitialize) 116 memset(m_data , 0, size);116 memset(m_data.get(), 0, size); 117 117 118 118 m_sizeInBytes = numElements * elementByteSize; … … 122 122 void ArrayBufferContents::makeShared() 123 123 { 124 m_shared = adoptRef(new SharedArrayBufferContents(m_data , WTFMove(m_destructor)));124 m_shared = adoptRef(new SharedArrayBufferContents(m_data.getMayBeNull(), WTFMove(m_destructor))); 125 125 m_destructor = [] (void*) { }; 126 126 } … … 142 142 if (!other.m_data) 143 143 return; 144 memcpy(other.m_data , m_data, m_sizeInBytes);144 memcpy(other.m_data.get(), m_data.get(), m_sizeInBytes); 145 145 other.m_sizeInBytes = m_sizeInBytes; 146 146 } … … 199 199 Ref<ArrayBuffer> ArrayBuffer::createFromBytes(const void* data, unsigned byteLength, ArrayBufferDestructorFunction&& destructor) 200 200 { 201 if (data && byteLength &&!Gigacage::isCaged(Gigacage::Primitive, data))201 if (data && !Gigacage::isCaged(Gigacage::Primitive, data)) 202 202 Gigacage::disablePrimitiveGigacage(); 203 203 … … 323 323 324 324 if (!m_contents.m_data) { 325 result.m_data = 0;325 result.m_data = nullptr; 326 326 return false; 327 327 } -
trunk/Source/JavaScriptCore/runtime/ArrayBuffer.h
r220628 r221439 1 1 /* 2 * Copyright (C) 2009 , 2013, 2016Apple Inc. All rights reserved.2 * Copyright (C) 2009-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 29 29 #include "GCIncomingRefCounted.h" 30 30 #include "Weak.h" 31 #include <wtf/CagedPtr.h> 31 32 #include <wtf/Function.h> 32 33 #include <wtf/StdLibExtras.h> … … 48 49 ~SharedArrayBufferContents(); 49 50 50 void* data() const { return m_data ; }51 void* data() const { return m_data.getMayBeNull(); } 51 52 52 53 private: 53 // FIXME: This should be CagedPtr<>. 54 // https://bugs.webkit.org/show_bug.cgi?id=175515 55 void* m_data; 54 CagedPtr<Gigacage::Primitive, void> m_data; 56 55 ArrayBufferDestructorFunction m_destructor; 57 56 }; … … 71 70 explicit operator bool() { return !!m_data; } 72 71 73 void* data() const { return m_data ; }72 void* data() const { return m_data.getMayBeNull(); } 74 73 unsigned sizeInBytes() const { return m_sizeInBytes; } 75 74 … … 98 97 ArrayBufferDestructorFunction m_destructor; 99 98 RefPtr<SharedArrayBufferContents> m_shared; 100 // FIXME: This should be CagedPtr<>. 101 // https://bugs.webkit.org/show_bug.cgi?id=175515 102 void* m_data; 99 CagedPtr<Gigacage::Primitive, void> m_data; 103 100 unsigned m_sizeInBytes; 104 101 }; … … 186 183 void* ArrayBuffer::data() 187 184 { 188 return m_contents.m_data ;185 return m_contents.m_data.getMayBeNull(); 189 186 } 190 187 191 188 const void* ArrayBuffer::data() const 192 189 { 193 return m_contents.m_data ;190 return m_contents.m_data.getMayBeNull(); 194 191 } 195 192 -
trunk/Source/JavaScriptCore/runtime/ArrayBufferView.h
r220628 r221439 1 1 /* 2 * Copyright (C) 2009 , 2013, 2016Apple Inc. All rights reserved.2 * Copyright (C) 2009-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 73 73 if (isNeutered()) 74 74 return 0; 75 return m_baseAddress ;75 return m_baseAddress.getMayBeNull(); 76 76 } 77 77 … … 148 148 149 149 // This is the address of the ArrayBuffer's storage, plus the byte offset. 150 // FIXME: This should be CagedPtr<>. 151 // https://bugs.webkit.org/show_bug.cgi?id=175515 152 void* m_baseAddress; 150 CagedPtr<Gigacage::Primitive, void> m_baseAddress; 153 151 154 152 unsigned m_byteOffset : 31; -
trunk/Source/JavaScriptCore/runtime/CagedBarrierPtr.h
r220352 r221439 89 89 }; 90 90 91 template<Gigacage::Kind passedKind> 92 class CagedBarrierPtr<passedKind, void> { 93 public: 94 static constexpr Gigacage::Kind kind = passedKind; 95 typedef void Type; 96 97 CagedBarrierPtr() { } 98 99 template<typename U> 100 CagedBarrierPtr(VM& vm, JSCell* cell, U&& value) 101 { 102 m_barrier.set(vm, cell, std::forward<U>(value)); 103 } 104 105 void clear() { m_barrier.clear(); } 106 107 template<typename U> 108 void set(VM& vm, JSCell* cell, U&& value) 109 { 110 m_barrier.set(vm, cell, std::forward<U>(value)); 111 } 112 113 void* get() const { return m_barrier.get().get(); } 114 void* getMayBeNull() const { return m_barrier.get().getMayBeNull(); } 115 116 bool operator==(const CagedBarrierPtr& other) const 117 { 118 return getMayBeNull() == other.getMayBeNull(); 119 } 120 121 bool operator!=(const CagedBarrierPtr& other) const 122 { 123 return !(*this == other); 124 } 125 126 explicit operator bool() const 127 { 128 return *this != CagedBarrierPtr(); 129 } 130 131 template<typename U> 132 void setWithoutBarrier(U&& value) { m_barrier.setWithoutBarrier(std::forward<U>(value)); } 133 134 private: 135 AuxiliaryBarrier<CagedPtr<kind, void>> m_barrier; 136 }; 137 91 138 } // namespace JSC -
trunk/Source/JavaScriptCore/runtime/DataView.h
r212535 r221439 1 1 /* 2 * Copyright (C) 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2013-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 63 63 ASSERT_WITH_SECURITY_IMPLICATION(offset + sizeof(T) <= byteLength()); 64 64 return flipBytesIfLittleEndian( 65 *reinterpret_cast<T*>(static_cast<uint8_t*>(m_baseAddress ) + offset),65 *reinterpret_cast<T*>(static_cast<uint8_t*>(m_baseAddress.get()) + offset), 66 66 littleEndian); 67 67 } … … 87 87 } else 88 88 ASSERT_WITH_SECURITY_IMPLICATION(offset + sizeof(T) <= byteLength()); 89 *reinterpret_cast<T*>(static_cast<uint8_t*>(m_baseAddress ) + offset) =89 *reinterpret_cast<T*>(static_cast<uint8_t*>(m_baseAddress.get()) + offset) = 90 90 flipBytesIfLittleEndian(value, littleEndian); 91 91 } -
trunk/Source/JavaScriptCore/runtime/JSArrayBufferView.cpp
r220352 r221439 78 78 79 79 if (mode == ZeroFill) { 80 uint64_t* asWords = static_cast<uint64_t*>(m_vector );80 uint64_t* asWords = static_cast<uint64_t*>(m_vector.get()); 81 81 for (unsigned i = size / sizeof(uint64_t); i--;) 82 82 asWords[i] = 0; … … 95 95 return; 96 96 if (mode == ZeroFill) 97 memset(m_vector , 0, size);97 memset(m_vector.get(), 0, size); 98 98 99 99 vm.heap.reportExtraMemoryAllocated(static_cast<size_t>(length) * elementSize); -
trunk/Source/JavaScriptCore/runtime/JSArrayBufferView.h
r220628 r221439 134 134 135 135 Structure* structure() const { return m_structure; } 136 void* vector() const { return m_vector ; }136 void* vector() const { return m_vector.getMayBeNull(); } 137 137 uint32_t length() const { return m_length; } 138 138 TypedArrayMode mode() const { return m_mode; } … … 141 141 private: 142 142 Structure* m_structure; 143 // FIXME: This should be CagedPtr<>. 144 // https://bugs.webkit.org/show_bug.cgi?id=175515 145 void* m_vector; 143 CagedPtr<Gigacage::Primitive, void> m_vector; 146 144 uint32_t m_length; 147 145 TypedArrayMode m_mode; … … 170 168 void neuter(); 171 169 172 void* vector() const { return m_vector.get (); }170 void* vector() const { return m_vector.getMayBeNull(); } 173 171 174 172 unsigned byteOffset(); … … 193 191 static String toStringName(const JSObject*, ExecState*); 194 192 195 // FIXME: This should be CagedBarrierPtr<>. 196 // https://bugs.webkit.org/show_bug.cgi?id=175515 197 AuxiliaryBarrier<void*> m_vector; 193 CagedBarrierPtr<Gigacage::Primitive, void> m_vector; 198 194 uint32_t m_length; 199 195 TypedArrayMode m_mode; -
trunk/Source/JavaScriptCore/runtime/JSGenericTypedArrayViewInlines.h
r220377 r221439 518 518 switch (thisObject->m_mode) { 519 519 case FastTypedArray: { 520 if (void* vector = thisObject->m_vector.get ())520 if (void* vector = thisObject->m_vector.getMayBeNull()) 521 521 visitor.markAuxiliary(vector); 522 522 break; -
trunk/Source/WTF/ChangeLog
r221425 r221439 1 2017-08-31 Filip Pizlo <fpizlo@apple.com> 2 3 All of the different ArrayBuffer::data's should be CagedPtr<> 4 https://bugs.webkit.org/show_bug.cgi?id=175515 5 6 Reviewed by Michael Saboff. 7 8 Added a specialization so that CagedPtr<void> is valid. 9 10 * wtf/CagedPtr.h: 11 1 12 2017-08-31 Per Arne Vollan <pvollan@apple.com> 2 13 -
trunk/Source/WTF/wtf/CagedPtr.h
r220712 r221439 78 78 }; 79 79 80 template<Gigacage::Kind passedKind> 81 class CagedPtr<passedKind, void> { 82 public: 83 static constexpr Gigacage::Kind kind = passedKind; 84 85 CagedPtr(void* ptr = nullptr) 86 : m_ptr(ptr) 87 { 88 } 89 90 void* get() const 91 { 92 ASSERT(m_ptr); 93 return Gigacage::caged(kind, m_ptr); 94 } 95 96 void* getMayBeNull() const 97 { 98 if (!m_ptr) 99 return nullptr; 100 return get(); 101 } 102 103 bool operator==(const CagedPtr& other) const 104 { 105 return getMayBeNull() == other.getMayBeNull(); 106 } 107 108 bool operator!=(const CagedPtr& other) const 109 { 110 return !(*this == other); 111 } 112 113 explicit operator bool() const 114 { 115 return *this != CagedPtr(); 116 } 117 118 protected: 119 void* m_ptr; 120 }; 121 80 122 } // namespace WTF 81 123
Note:
See TracChangeset
for help on using the changeset viewer.