diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit/TemplateObject-inl.h | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit/TemplateObject-inl.h')
-rw-r--r-- | js/src/jit/TemplateObject-inl.h | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/js/src/jit/TemplateObject-inl.h b/js/src/jit/TemplateObject-inl.h new file mode 100644 index 0000000000..3bfeb8e72d --- /dev/null +++ b/js/src/jit/TemplateObject-inl.h @@ -0,0 +1,126 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * vim: set ts=8 sts=2 et sw=2 tw=80: + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef jit_TemplateObject_inl_h +#define jit_TemplateObject_inl_h + +#include "jit/TemplateObject.h" + +#include "vm/EnvironmentObject.h" +#include "vm/PlainObject.h" // js::PlainObject +#include "vm/RegExpObject.h" + +namespace js { +namespace jit { + +inline gc::AllocKind TemplateObject::getAllocKind() const { + return obj_->asTenured().getAllocKind(); +} + +inline bool TemplateObject::isNativeObject() const { + return obj_->is<NativeObject>(); +} + +inline bool TemplateObject::isArrayObject() const { + return obj_->is<ArrayObject>(); +} + +inline bool TemplateObject::isArgumentsObject() const { + return obj_->is<ArgumentsObject>(); +} + +inline bool TemplateObject::isTypedArrayObject() const { + return obj_->is<TypedArrayObject>(); +} + +inline bool TemplateObject::isRegExpObject() const { + return obj_->is<RegExpObject>(); +} + +inline bool TemplateObject::isCallObject() const { + return obj_->is<CallObject>(); +} + +inline bool TemplateObject::isBlockLexicalEnvironmentObject() const { + return obj_->is<BlockLexicalEnvironmentObject>(); +} + +inline bool TemplateObject::isPlainObject() const { + return obj_->is<PlainObject>(); +} + +inline gc::Cell* TemplateObject::shape() const { + Shape* shape = obj_->shape(); + MOZ_ASSERT(!shape->isDictionary()); + return shape; +} + +inline const TemplateNativeObject& TemplateObject::asTemplateNativeObject() + const { + MOZ_ASSERT(isNativeObject()); + return *static_cast<const TemplateNativeObject*>(this); +} + +inline bool TemplateNativeObject::hasDynamicSlots() const { + return asNativeObject().hasDynamicSlots(); +} + +inline uint32_t TemplateNativeObject::numDynamicSlots() const { + return asNativeObject().numDynamicSlots(); +} + +inline uint32_t TemplateNativeObject::numUsedFixedSlots() const { + return asNativeObject().numUsedFixedSlots(); +} + +inline uint32_t TemplateNativeObject::numFixedSlots() const { + return asNativeObject().numFixedSlots(); +} + +inline uint32_t TemplateNativeObject::slotSpan() const { + return asNativeObject().sharedShape()->slotSpan(); +} + +inline Value TemplateNativeObject::getSlot(uint32_t i) const { + return asNativeObject().getSlot(i); +} + +inline const Value* TemplateNativeObject::getDenseElements() const { + return asNativeObject().getDenseElements(); +} + +#ifdef DEBUG +inline bool TemplateNativeObject::isSharedMemory() const { + return asNativeObject().isSharedMemory(); +} +#endif + +inline uint32_t TemplateNativeObject::getDenseCapacity() const { + return asNativeObject().getDenseCapacity(); +} + +inline uint32_t TemplateNativeObject::getDenseInitializedLength() const { + return asNativeObject().getDenseInitializedLength(); +} + +inline uint32_t TemplateNativeObject::getArrayLength() const { + return obj_->as<ArrayObject>().length(); +} + +inline bool TemplateNativeObject::hasDynamicElements() const { + return asNativeObject().hasDynamicElements(); +} + +inline gc::Cell* TemplateNativeObject::regExpShared() const { + RegExpObject* regexp = &obj_->as<RegExpObject>(); + MOZ_ASSERT(regexp->hasShared()); + return regexp->getShared(); +} + +} // namespace jit +} // namespace js + +#endif /* jit_TemplateObject_inl_h */ |