Backed out changeset 88fbb17e3c20 (bug 1865637) for causing animation related mochite...
[gecko.git] / js / src / wasm / WasmInstance-inl.h
blob519e718cf9f1ef5ed0f63b5ee8c1fc0f9eff10c2
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: set ts=8 sts=2 et sw=2 tw=80:
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef wasm_Instance_inl_h
8 #define wasm_Instance_inl_h
10 #include "wasm/WasmInstance.h"
12 #include "wasm/WasmCode.h"
14 namespace js {
15 namespace wasm {
17 const CodeTier& Instance::code(Tier t) const { return code_->codeTier(t); }
19 uint8_t* Instance::codeBase(Tier t) const { return code_->segment(t).base(); }
21 const MetadataTier& Instance::metadata(Tier t) const {
22 return code_->metadata(t);
25 const Metadata& Instance::metadata() const { return code_->metadata(); }
27 bool Instance::isAsmJS() const { return metadata().isAsmJS(); }
29 } // namespace wasm
30 } // namespace js
32 #endif // wasm_Instance_inl_h