Bug 1188290 - Remove an incomplete assertion about store buffer state; r=jandem

This commit is contained in:
Terrence Cole 2015-09-21 09:41:29 -07:00
Родитель fa74c41137
Коммит 3301b277a1
3 изменённых файлов: 16 добавлений и 12 удалений

Просмотреть файл

@ -447,14 +447,6 @@ class StoreBuffer
putFromAnyThread(bufferGeneric, CallbackRef<Key>(callback, key, data));
}
void assertHasCellEdge(Cell** cellp) {
CellPtrEdge cpe(cellp);
MOZ_ASSERT(bufferCell.has(this, CellPtrEdge(cellp)) ||
!CellPtrEdge(cellp).maybeInRememberedSet(nursery_));
}
void assertHasValueEdge(JS::Value* vp) {
MOZ_ASSERT(bufferVal.has(this, ValueEdge(vp)) ||
!ValueEdge(vp).maybeInRememberedSet(nursery_));

Просмотреть файл

@ -0,0 +1,12 @@
this.__proto__ = [];
var T = TypedObject;
var ObjectStruct = new T.StructType({f: T.Object});
var o = new ObjectStruct();
minorgc();
function writeObject(o, v) {
o.f = v;
assertEq(typeof o.f, "object");
}
for (var i = 0; i < 5; i++)
writeObject(o, { toString: function() { return "helo"} }
);

Просмотреть файл

@ -642,11 +642,11 @@ JSObject::writeBarrierPost(void* cellp, JSObject* prev, JSObject* next)
js::gc::StoreBuffer* buffer;
if (next && (buffer = next->storeBuffer())) {
// If we know that the prev has already inserted an entry, we can skip
// doing the lookup to add the new entry.
if (prev && prev->storeBuffer()) {
buffer->assertHasCellEdge(static_cast<js::gc::Cell**>(cellp));
// doing the lookup to add the new entry. Note that we cannot safely
// assert the presence of the entry because it may have been added
// via a different store buffer.
if (prev && prev->storeBuffer())
return;
}
buffer->putCellFromAnyThread(static_cast<js::gc::Cell**>(cellp));
return;
}