C++程序  |  31行  |  953 B

// Copyright 2016 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.

#ifndef V8_ASMJS_ASM_JS_H_
#define V8_ASMJS_ASM_JS_H_

#include "src/globals.h"

namespace v8 {
namespace internal {

class JSArrayBuffer;
class ParseInfo;

// Interface to compile and instantiate for asmjs.
class AsmJs {
 public:
  static MaybeHandle<FixedArray> ConvertAsmToWasm(ParseInfo* info);
  static bool IsStdlibValid(Isolate* isolate, Handle<FixedArray> wasm_data,
                            Handle<JSReceiver> stdlib);
  static MaybeHandle<Object> InstantiateAsmWasm(Isolate* isolate,
                                                Handle<FixedArray> wasm_data,
                                                Handle<JSArrayBuffer> memory,
                                                Handle<JSReceiver> foreign);
};

}  // namespace internal
}  // namespace v8
#endif