mirror of
https://github.com/darlinghq/darling-JavaScriptCore.git
synced 2024-11-23 12:19:46 +00:00
138 lines
5.0 KiB
C++
138 lines
5.0 KiB
C++
/*
|
|
* Copyright (C) 2013, 2016 Apple, Inc. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "IterationKind.h"
|
|
#include "JSInternalFieldObjectImpl.h"
|
|
#include "JSSet.h"
|
|
|
|
namespace JSC {
|
|
|
|
class JSSetIterator final : public JSInternalFieldObjectImpl<3> {
|
|
public:
|
|
using HashMapBucketType = HashMapBucket<HashMapBucketDataKey>;
|
|
using Base = JSInternalFieldObjectImpl<3>;
|
|
|
|
DECLARE_EXPORT_INFO;
|
|
|
|
enum class Field : uint8_t {
|
|
SetBucket = 0,
|
|
IteratedObject,
|
|
Kind,
|
|
};
|
|
static_assert(numberOfInternalFields == 3);
|
|
|
|
static std::array<JSValue, numberOfInternalFields> initialValues()
|
|
{
|
|
return { {
|
|
jsNull(),
|
|
jsNull(),
|
|
jsNumber(0),
|
|
} };
|
|
}
|
|
|
|
const WriteBarrier<Unknown>& internalField(Field field) const { return Base::internalField(static_cast<uint32_t>(field)); }
|
|
WriteBarrier<Unknown>& internalField(Field field) { return Base::internalField(static_cast<uint32_t>(field)); }
|
|
|
|
template<typename CellType, SubspaceAccess mode>
|
|
static IsoSubspace* subspaceFor(VM& vm)
|
|
{
|
|
return vm.setIteratorSpace<mode>();
|
|
}
|
|
|
|
static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype)
|
|
{
|
|
return Structure::create(vm, globalObject, prototype, TypeInfo(JSSetIteratorType, StructureFlags), info());
|
|
}
|
|
|
|
static JSSetIterator* create(VM& vm, Structure* structure, JSSet* iteratedObject, IterationKind kind)
|
|
{
|
|
JSSetIterator* instance = new (NotNull, allocateCell<JSSetIterator>(vm.heap)) JSSetIterator(vm, structure);
|
|
instance->finishCreation(vm, iteratedObject, kind);
|
|
return instance;
|
|
}
|
|
|
|
static JSSetIterator* createWithInitialValues(VM&, Structure*);
|
|
|
|
ALWAYS_INLINE HashMapBucketType* advanceIter(VM& vm)
|
|
{
|
|
HashMapBucketType* prev = iterator();
|
|
HashMapBucketType* sentinel = jsCast<HashMapBucketType*>(vm.sentinelSetBucket());
|
|
if (prev == sentinel)
|
|
return nullptr;
|
|
HashMapBucketType* bucket = prev->next();
|
|
while (bucket && bucket->deleted())
|
|
bucket = bucket->next();
|
|
if (!bucket) {
|
|
setIterator(vm, sentinel);
|
|
return nullptr;
|
|
}
|
|
setIterator(vm, bucket); // We keep iterator on the last value since the first thing we do in this function is call next().
|
|
return bucket;
|
|
}
|
|
|
|
bool next(JSGlobalObject* globalObject, JSValue& value)
|
|
{
|
|
HashMapBucketType* bucket = advanceIter(getVM(globalObject));
|
|
if (!bucket)
|
|
return false;
|
|
|
|
switch (kind()) {
|
|
case IterationKind::Values:
|
|
case IterationKind::Keys:
|
|
value = bucket->key();
|
|
break;
|
|
case IterationKind::Entries:
|
|
value = createPair(globalObject, bucket->key(), bucket->key());
|
|
break;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
IterationKind kind() const { return static_cast<IterationKind>(internalField(Field::Kind).get().asUInt32AsAnyInt()); }
|
|
JSObject* iteratedObject() const { return jsCast<JSObject*>(internalField(Field::IteratedObject).get()); }
|
|
HashMapBucketType* iterator() const { return jsCast<HashMapBucketType*>(internalField(Field::SetBucket).get()); }
|
|
|
|
private:
|
|
JSSetIterator(VM& vm, Structure* structure)
|
|
: Base(vm, structure)
|
|
{
|
|
}
|
|
|
|
void setIterator(VM& vm, HashMapBucketType* bucket)
|
|
{
|
|
internalField(Field::SetBucket).set(vm, this, bucket);
|
|
}
|
|
|
|
JS_EXPORT_PRIVATE void finishCreation(VM&, JSSet*, IterationKind);
|
|
void finishCreation(VM&);
|
|
JS_EXPORT_PRIVATE JSValue createPair(JSGlobalObject*, JSValue, JSValue);
|
|
static void visitChildren(JSCell*, SlotVisitor&);
|
|
};
|
|
STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(JSSetIterator);
|
|
|
|
} // namespace JSC
|