// Copyright 2018 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #if !V8_ENABLE_WEBASSEMBLY #error This header should only be included if WebAssembly is enabled. #endif // !V8_ENABLE_WEBASSEMBLY #ifndef V8_WASM_VALUE_TYPE_H_ #define V8_WASM_VALUE_TYPE_H_ #include <optional> #include "src/base/bit-field.h" #include "src/codegen/machine-type.h" #include "src/wasm/wasm-constants.h" #include "src/wasm/wasm-limits.h" namespace v8 { namespace internal { template <typename T> class Signature; // Type for holding simd values, defined in simd128.h. class Simd128; class Zone; wasm // namespace wasm } // namespace internal } // namespace v8 #endif // V8_WASM_VALUE_TYPE_H_