#ifndef gc_Heap_inl_h
#define gc_Heap_inl_h
#include "gc/Heap.h"
#include "gc/StoreBuffer.h"
#include "gc/Zone.h"
inline void js::gc::Arena::init(JS::Zone* zoneArg, AllocKind kind,
const AutoLockGC& lock) {
MOZ_ASSERT(firstFreeSpan.isEmpty());
MOZ_ASSERT(!zone);
MOZ_ASSERT(!allocated());
MOZ_ASSERT(!onDelayedMarkingList_);
MOZ_ASSERT(!hasDelayedBlackMarking_);
MOZ_ASSERT(!hasDelayedGrayMarking_);
MOZ_ASSERT(!nextDelayedMarkingArena_);
MOZ_MAKE_MEM_UNDEFINED(this, ArenaSize);
zone = zoneArg;
allocKind = size_t(kind);
onDelayedMarkingList_ = 0;
hasDelayedBlackMarking_ = 0;
hasDelayedGrayMarking_ = 0;
nextDelayedMarkingArena_ = 0;
if (zone->isAtomsZone()) {
zone->runtimeFromAnyThread()->gc.atomMarking.registerArena(this, lock);
} else {
bufferedCells() = &ArenaCellSet::Empty;
}
setAsFullyUnused();
}
inline void js::gc::Arena::release(const AutoLockGC& lock) {
if (zone->isAtomsZone()) {
zone->runtimeFromAnyThread()->gc.atomMarking.unregisterArena(this, lock);
}
setAsNotAllocated();
}
inline js::gc::ArenaCellSet*& js::gc::Arena::bufferedCells() {
MOZ_ASSERT(zone && !zone->isAtomsZone());
return bufferedCells_;
}
inline size_t& js::gc::Arena::atomBitmapStart() {
MOZ_ASSERT(zone && zone->isAtomsZone());
return atomBitmapStart_;
}
#endif