OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 static std::unique_ptr<ArrayBufferContentsArray> transferArrayBufferContents( | 121 static std::unique_ptr<ArrayBufferContentsArray> transferArrayBufferContents( |
122 v8::Isolate*, | 122 v8::Isolate*, |
123 const ArrayBufferArray&, | 123 const ArrayBufferArray&, |
124 ExceptionState&); | 124 ExceptionState&); |
125 | 125 |
126 static std::unique_ptr<ImageBitmapContentsArray> transferImageBitmapContents( | 126 static std::unique_ptr<ImageBitmapContentsArray> transferImageBitmapContents( |
127 v8::Isolate*, | 127 v8::Isolate*, |
128 const ImageBitmapArray&, | 128 const ImageBitmapArray&, |
129 ExceptionState&); | 129 ExceptionState&); |
130 | 130 |
131 // Informs the V8 about external memory allocated and owned by this object. | 131 // Informs V8 about external memory allocated and owned by this object. |
132 // Large values should contribute to GC counters to eventually trigger a GC, | 132 // Large values should contribute to GC counters to eventually trigger a GC, |
133 // otherwise flood of postMessage() can cause OOM. | 133 // otherwise flood of postMessage() can cause OOM. |
134 // Ok to invoke multiple times (only adds memory once). | 134 // Ok to invoke multiple times (only adds memory once). |
135 // The memory registration is revoked automatically in destructor. | 135 // The memory registration is revoked automatically in destructor. |
136 void registerMemoryAllocatedWithCurrentScriptContext(); | 136 void registerMemoryAllocatedWithCurrentScriptContext(); |
137 | 137 |
| 138 // Upon passing a serialized value from one context to another (via a |
| 139 // postMessage()), the allocation amounts it has registered with the |
| 140 // 'origining' context must be discharged, as the 'target' context will assume |
| 141 // ownership of value. This method takes care of the first part of the |
| 142 // external allocation bookkeeping, the above registration method the other |
| 143 // half. |
| 144 void unregisterMemoryAllocatedByCurrentScriptContext(); |
| 145 |
138 const uint8_t* data() const { return m_dataBuffer.get(); } | 146 const uint8_t* data() const { return m_dataBuffer.get(); } |
139 size_t dataLengthInBytes() const { return m_dataBufferSize; } | 147 size_t dataLengthInBytes() const { return m_dataBufferSize; } |
140 | 148 |
141 BlobDataHandleMap& blobDataHandles() { return m_blobDataHandles; } | 149 BlobDataHandleMap& blobDataHandles() { return m_blobDataHandles; } |
142 ArrayBufferContentsArray* getArrayBufferContentsArray() { | 150 ArrayBufferContentsArray* getArrayBufferContentsArray() { |
143 return m_arrayBufferContentsArray.get(); | 151 return m_arrayBufferContentsArray.get(); |
144 } | 152 } |
145 ImageBitmapContentsArray* getImageBitmapContentsArray() { | 153 ImageBitmapContentsArray* getImageBitmapContentsArray() { |
146 return m_imageBitmapContentsArray.get(); | 154 return m_imageBitmapContentsArray.get(); |
147 } | 155 } |
(...skipping 24 matching lines...) Expand all Loading... |
172 void transferOffscreenCanvas(v8::Isolate*, | 180 void transferOffscreenCanvas(v8::Isolate*, |
173 const OffscreenCanvasArray&, | 181 const OffscreenCanvasArray&, |
174 ExceptionState&); | 182 ExceptionState&); |
175 | 183 |
176 DataBufferPtr m_dataBuffer; | 184 DataBufferPtr m_dataBuffer; |
177 size_t m_dataBufferSize = 0; | 185 size_t m_dataBufferSize = 0; |
178 | 186 |
179 std::unique_ptr<ArrayBufferContentsArray> m_arrayBufferContentsArray; | 187 std::unique_ptr<ArrayBufferContentsArray> m_arrayBufferContentsArray; |
180 std::unique_ptr<ImageBitmapContentsArray> m_imageBitmapContentsArray; | 188 std::unique_ptr<ImageBitmapContentsArray> m_imageBitmapContentsArray; |
181 BlobDataHandleMap m_blobDataHandles; | 189 BlobDataHandleMap m_blobDataHandles; |
182 intptr_t m_externallyAllocatedMemory; | 190 size_t m_externallyAllocatedMemory; |
| 191 bool m_adjustTransferableExternalAllocationOnContextTransfer; |
183 }; | 192 }; |
184 | 193 |
185 } // namespace blink | 194 } // namespace blink |
186 | 195 |
187 #endif // SerializedScriptValue_h | 196 #endif // SerializedScriptValue_h |
OLD | NEW |