HomeSort by relevance Sort by last modified time
    Searched refs:WasmInterpreter (Results 1 - 3 of 3) sorted by null

  /external/v8/src/wasm/
wasm-debug.cc 31 WasmInterpreter interpreter_;
38 // WasmInterpreter has to be allocated in place, since it is not movable.
57 // Return raw pointer into heap. The WasmInterpreter will make its own copy
65 WasmInterpreter* interpreter() { return &interpreter_; }
106 WasmInterpreter::Thread* thread = interpreter_.GetThread(0);
109 DCHECK(thread->state() == WasmInterpreter::STOPPED ||
110 thread->state() == WasmInterpreter::FINISHED);
116 WasmInterpreter::State state = ContinueExecution(thread);
118 case WasmInterpreter::State::PAUSED:
121 case WasmInterpreter::State::FINISHED
    [all...]
wasm-interpreter.h 98 friend class WasmInterpreter;
110 class V8_EXPORT_PRIVATE WasmInterpreter {
169 WasmInterpreter(const ModuleBytesEnv& env, AccountingAllocator* allocator);
170 ~WasmInterpreter();
wasm-interpreter.cc 930 // Implementation of public interface for WasmInterpreter::Thread.
933 WasmInterpreter::State state() { return state_; }
951 WasmInterpreter::State Run() {
954 if (state_ == WasmInterpreter::STOPPED ||
955 state_ == WasmInterpreter::PAUSED) {
956 state_ = WasmInterpreter::RUNNING;
959 } while (state_ == WasmInterpreter::STOPPED);
963 WasmInterpreter::State Step() {
965 if (state_ == WasmInterpreter::STOPPED ||
966 state_ == WasmInterpreter::PAUSED)
    [all...]

Completed in 120 milliseconds