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

Unified Diff: src/objects.h

Issue 1094863002: Remove the weak list of views from array buffers (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index f16dc98a13e7ca3a1b6b2a1952c0c062e90a1cb8..de1e41c1a65574ec7b19ce1ff2b3a43af9b0c623 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -4630,9 +4630,9 @@ class ExternalUint8ClampedArray: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined and clamps the converted value between 0 and 255.
- static Handle<Object> SetValue(Handle<ExternalUint8ClampedArray> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalUint8ClampedArray> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalUint8ClampedArray)
@@ -4654,9 +4654,9 @@ class ExternalInt8Array: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<ExternalInt8Array> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalInt8Array> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalInt8Array)
@@ -4678,9 +4678,9 @@ class ExternalUint8Array: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<ExternalUint8Array> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalUint8Array> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalUint8Array)
@@ -4702,9 +4702,9 @@ class ExternalInt16Array: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<ExternalInt16Array> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalInt16Array> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalInt16Array)
@@ -4727,9 +4727,9 @@ class ExternalUint16Array: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<ExternalUint16Array> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalUint16Array> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalUint16Array)
@@ -4751,9 +4751,9 @@ class ExternalInt32Array: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<ExternalInt32Array> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalInt32Array> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalInt32Array)
@@ -4776,9 +4776,9 @@ class ExternalUint32Array: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<ExternalUint32Array> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalUint32Array> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalUint32Array)
@@ -4801,9 +4801,9 @@ class ExternalFloat32Array: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<ExternalFloat32Array> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalFloat32Array> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalFloat32Array)
@@ -4826,9 +4826,9 @@ class ExternalFloat64Array: public ExternalArray {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<ExternalFloat64Array> array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<ExternalFloat64Array> array,
+ uint32_t index, Handle<Object> value);
DECLARE_CAST(ExternalFloat64Array)
@@ -4891,9 +4891,9 @@ class FixedTypedArray: public FixedTypedArrayBase {
// This accessor applies the correct conversion from Smi, HeapNumber
// and undefined.
- static Handle<Object> SetValue(Handle<FixedTypedArray<Traits> > array,
- uint32_t index,
- Handle<Object> value);
+ static Handle<Object> SetValue(Handle<JSObject> holder,
+ Handle<FixedTypedArray<Traits> > array,
+ uint32_t index, Handle<Object> value);
DECLARE_PRINTER(FixedTypedArray)
DECLARE_VERIFIER(FixedTypedArray)
@@ -10216,15 +10216,14 @@ class JSArrayBuffer: public JSObject {
inline bool is_neuterable();
inline void set_is_neuterable(bool value);
+ inline bool was_neutered();
+ inline void set_was_neutered(bool value);
+
// [weak_next]: linked list of array buffers.
DECL_ACCESSORS(weak_next, Object)
- // [weak_first_array]: weak linked list of views.
- DECL_ACCESSORS(weak_first_view, Object)
-
DECLARE_CAST(JSArrayBuffer)
- // Neutering. Only neuters the buffer, not associated typed arrays.
void Neuter();
// Dispatched behavior.
@@ -10235,18 +10234,18 @@ class JSArrayBuffer: public JSObject {
static const int kByteLengthOffset = kBackingStoreOffset + kPointerSize;
static const int kFlagOffset = kByteLengthOffset + kPointerSize;
static const int kWeakNextOffset = kFlagOffset + kPointerSize;
- static const int kWeakFirstViewOffset = kWeakNextOffset + kPointerSize;
- static const int kSize = kWeakFirstViewOffset + kPointerSize;
+ static const int kSize = kWeakNextOffset + kPointerSize;
static const int kSizeWithInternalFields =
kSize + v8::ArrayBuffer::kInternalFieldCount * kPointerSize;
- private:
// Bit position in a flag
static const int kIsExternalBit = 0;
static const int kShouldBeFreed = 1;
static const int kIsNeuterableBit = 2;
+ static const int kWasNeuteredBit = 3;
+ private:
DISALLOW_IMPLICIT_CONSTRUCTORS(JSArrayBuffer);
};
@@ -10262,9 +10261,6 @@ class JSArrayBufferView: public JSObject {
// [byte_length]: length of typed array in bytes.
DECL_ACCESSORS(byte_length, Object)
- // [weak_next]: linked list of typed arrays over the same array buffer.
- DECL_ACCESSORS(weak_next, Object)
-
DECLARE_CAST(JSArrayBufferView)
DECLARE_VERIFIER(JSArrayBufferView)
@@ -10272,11 +10268,7 @@ class JSArrayBufferView: public JSObject {
static const int kBufferOffset = JSObject::kHeaderSize;
static const int kByteOffsetOffset = kBufferOffset + kPointerSize;
static const int kByteLengthOffset = kByteOffsetOffset + kPointerSize;
- static const int kWeakNextOffset = kByteLengthOffset + kPointerSize;
- static const int kViewSize = kWeakNextOffset + kPointerSize;
-
- protected:
- void NeuterView();
+ static const int kViewSize = kByteLengthOffset + kPointerSize;
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(JSArrayBufferView);
@@ -10288,9 +10280,6 @@ class JSTypedArray: public JSArrayBufferView {
// [length]: length of typed array in elements.
DECL_ACCESSORS(length, Object)
- // Neutering. Only neuters this typed array.
- void Neuter();
-
DECLARE_CAST(JSTypedArray)
ExternalArrayType type();
@@ -10318,9 +10307,6 @@ class JSTypedArray: public JSArrayBufferView {
class JSDataView: public JSArrayBufferView {
public:
- // Only neuters this DataView
- void Neuter();
-
DECLARE_CAST(JSDataView)
// Dispatched behavior.

Powered by Google App Engine
This is Rietveld 408576698