Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: Source/wtf/ArrayBufferContents.cpp

Issue 1097773004: Sharing of SharedArrayBuffer via PostMessage transfer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update for non-split typedarray hierarchy Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 17 matching lines...) Expand all
28 #include "wtf/ArrayBufferContents.h" 28 #include "wtf/ArrayBufferContents.h"
29 29
30 #include "wtf/Assertions.h" 30 #include "wtf/Assertions.h"
31 #include "wtf/PartitionAlloc.h" 31 #include "wtf/PartitionAlloc.h"
32 #include "wtf/Partitions.h" 32 #include "wtf/Partitions.h"
33 #include <string.h> 33 #include <string.h>
34 34
35 namespace WTF { 35 namespace WTF {
36 36
37 ArrayBufferContents::ArrayBufferContents() 37 ArrayBufferContents::ArrayBufferContents()
38 : m_data(0) 38 : m_holder(adoptRef(new DataHolder())) { }
39 , m_sizeInBytes(0)
40 , m_deallocationObserver(0) { }
41 39
42 ArrayBufferContents::ArrayBufferContents(unsigned numElements, unsigned elementB yteSize, ArrayBufferContents::InitializationPolicy policy) 40 ArrayBufferContents::ArrayBufferContents(unsigned numElements, unsigned elementB yteSize, bool isShared, ArrayBufferContents::InitializationPolicy policy)
43 : m_data(0) 41 : m_holder(adoptRef(new DataHolder()))
44 , m_sizeInBytes(0)
45 , m_deallocationObserver(0)
46 { 42 {
47 // Do not allow 32-bit overflow of the total size. 43 // Do not allow 32-bit overflow of the total size.
44 unsigned totalSize = numElements * elementByteSize;
48 if (numElements) { 45 if (numElements) {
49 unsigned totalSize = numElements * elementByteSize;
50 if (totalSize / numElements != elementByteSize) { 46 if (totalSize / numElements != elementByteSize) {
51 m_data = 0;
52 return; 47 return;
53 } 48 }
54 } 49 }
55 allocateMemory(numElements * elementByteSize, policy, m_data); 50
56 m_sizeInBytes = numElements * elementByteSize; 51 void* data = 0;
52 allocateMemory(totalSize, policy, data);
53 m_holder->adopt(data, totalSize, isShared, 0);
57 } 54 }
58 55
59 ArrayBufferContents::ArrayBufferContents( 56 ArrayBufferContents::ArrayBufferContents(
60 void* data, unsigned sizeInBytes, ArrayBufferDeallocationObserver* observer) 57 void* data, unsigned sizeInBytes, bool isShared, ArrayBufferDeallocationObse rver* observer)
61 : m_data(data) 58 : m_holder(adoptRef(new DataHolder()))
62 , m_sizeInBytes(sizeInBytes)
63 , m_deallocationObserver(observer)
64 { 59 {
65 if (!m_data) { 60 if (!data) {
66 ASSERT(!m_sizeInBytes); 61 ASSERT(!sizeInBytes);
67 m_sizeInBytes = 0; 62 sizeInBytes = 0;
68 // Allow null data if size is 0 bytes, make sure m_data is valid pointer . 63 // Allow null data if size is 0 bytes, make sure data is valid pointer.
69 // (partitionAllocGeneric guarantees valid pointer for size 0) 64 // (partitionAllocGeneric guarantees valid pointer for size 0)
70 allocateMemory(0, ZeroInitialize, m_data); 65 allocateMemory(0, ZeroInitialize, data);
71 } 66 }
67 m_holder->adopt(data, sizeInBytes, isShared, observer);
72 } 68 }
73 69
74 ArrayBufferContents::~ArrayBufferContents() 70 ArrayBufferContents::~ArrayBufferContents()
75 { 71 {
76 freeMemory(m_data, m_sizeInBytes);
77 clear(); 72 clear();
78 } 73 }
79 74
80 void ArrayBufferContents::clear() 75 void ArrayBufferContents::clear()
81 { 76 {
82 if (m_data && m_deallocationObserver) 77 m_holder.clear();
83 m_deallocationObserver->arrayBufferDeallocated(m_sizeInBytes);
84 m_data = 0;
85 m_sizeInBytes = 0;
86 m_deallocationObserver = 0;
87 } 78 }
88 79
89 void ArrayBufferContents::transfer(ArrayBufferContents& other) 80 void ArrayBufferContents::transfer(ArrayBufferContents& other)
90 { 81 {
91 ASSERT(!other.m_data); 82 ASSERT(!other.m_holder->m_data);
92 other.m_data = m_data; 83 other.m_holder = m_holder;
93 other.m_sizeInBytes = m_sizeInBytes; 84 if (!m_holder->m_isShared)
94 clear(); 85 clear();
95 } 86 }
96 87
97 void ArrayBufferContents::copyTo(ArrayBufferContents& other) 88 void ArrayBufferContents::copyTo(ArrayBufferContents& other)
98 { 89 {
99 ASSERT(!other.m_sizeInBytes); 90 // TODO(binji): where is this function used? It probably shouldn't be used
100 other.freeMemory(other.m_data, other.m_sizeInBytes); 91 // for shared array buffers.
101 allocateMemory(m_sizeInBytes, DontInitialize, other.m_data); 92 ASSERT(!m_holder->m_isShared && !other.m_holder->m_isShared);
102 if (!other.m_data) 93
94 ASSERT(!other.m_holder->m_sizeInBytes);
95
96 other.m_holder = adoptRef(new DataHolder());
97
98 allocateMemory(m_holder->m_sizeInBytes, DontInitialize, other.m_holder->m_da ta);
99 if (!other.m_holder->m_data)
103 return; 100 return;
104 memcpy(other.m_data, m_data, m_sizeInBytes); 101
105 other.m_sizeInBytes = m_sizeInBytes; 102 m_holder->copyToWithoutBuffer(*other.m_holder);
103 memcpy(other.m_holder->m_data, m_holder->m_data, m_holder->m_sizeInBytes);
104 other.m_holder->m_sizeInBytes = m_holder->m_sizeInBytes;
Yuki 2015/06/09 06:18:08 I'd recommend to use adopt() or create a new insta
binji 2015/06/10 06:04:39 Done.
106 } 105 }
107 106
108 void ArrayBufferContents::allocateMemory(size_t size, InitializationPolicy polic y, void*& data) 107 void ArrayBufferContents::allocateMemory(size_t size, InitializationPolicy polic y, void*& data)
109 { 108 {
110 data = partitionAllocGenericFlags(WTF::Partitions::getBufferPartition(), Par titionAllocReturnNull, size); 109 data = partitionAllocGenericFlags(WTF::Partitions::getBufferPartition(), Par titionAllocReturnNull, size);
111 if (policy == ZeroInitialize && data) 110 if (policy == ZeroInitialize && data)
112 memset(data, '\0', size); 111 memset(data, '\0', size);
113 } 112 }
114 113
115 void ArrayBufferContents::freeMemory(void* data, size_t) 114 void ArrayBufferContents::freeMemory(void* data, size_t)
116 { 115 {
117 partitionFreeGeneric(WTF::Partitions::getBufferPartition(), data); 116 partitionFreeGeneric(WTF::Partitions::getBufferPartition(), data);
118 } 117 }
119 118
119 ArrayBufferContents::DataHolder::DataHolder()
120 : m_data(0)
121 , m_sizeInBytes(0)
122 , m_isShared(false) { }
123
124 ArrayBufferContents::DataHolder::~DataHolder()
125 {
126 ArrayBufferContents::freeMemory(m_data, m_sizeInBytes);
127
128 if (m_data && m_deallocationObserver)
129 m_deallocationObserver->arrayBufferDeallocated(m_sizeInBytes);
130
131 m_data = 0;
132 m_sizeInBytes = 0;
133 m_isShared = false;
134 m_deallocationObserver = 0;
135 }
136
137 void ArrayBufferContents::DataHolder::adopt(void* data, unsigned sizeInBytes, bo ol isShared, ArrayBufferDeallocationObserver* observer)
138 {
139 m_data = data;
Yuki 2015/06/09 06:18:08 ASSERT(!m_data); ? It seems you're assuming that
binji 2015/06/10 06:04:39 Done.
140 m_sizeInBytes = sizeInBytes;
141 m_isShared = isShared;
142 m_deallocationObserver = observer;
143 }
144
145 void ArrayBufferContents::DataHolder::copyToWithoutBuffer(DataHolder& other)
146 {
147 other.m_isShared = m_isShared;
148 other.m_deallocationObserver = m_deallocationObserver;
149 }
150
120 } // namespace WTF 151 } // namespace WTF
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698