Bug 848199 - Rename the post barrier verifier nursery; r=billm

This allows us to use the post barrier verifier in parallel with generational
GC. It also makes the state tracking during verification much simpler.
This commit is contained in:
Terrence Cole
2013-02-05 14:07:28 -08:00
parent afaaf32e9f
commit b8de5925c1
12 changed files with 127 additions and 64 deletions

View File

@@ -322,7 +322,7 @@ WeakMap_set_impl(JSContext *cx, CallArgs args)
JS_ReportOutOfMemory(cx);
return false;
}
HashTableWriteBarrierPost(cx->runtime, map, key);
HashTableWriteBarrierPost(cx->runtime, map, key.get());
args.rval().setUndefined();
return true;