Home
last modified time | relevance | path

Searched refs:interpreter_code_ (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/wasm/
Dwasm-interpreter.cc936 ZoneVector<InterpreterCode> interpreter_code_; member in v8::internal::wasm::__anon49171a620111::CodeMap
943 : zone_(zone), module_(module), interpreter_code_(zone) { in CodeMap()
945 interpreter_code_.reserve(module->functions.size()); in CodeMap()
972 DCHECK_LT(function_index, interpreter_code_.size()); in GetCode()
973 return Preprocess(&interpreter_code_[function_index]); in GetCode()
995 if (index >= interpreter_code_.size()) return nullptr; in GetIndirectCode()
998 index &= static_cast<int32_t>((index - interpreter_code_.size()) & in GetIndirectCode()
1022 DCHECK_EQ(interpreter_code_.size(), function->func_index); in AddFunction()
1023 interpreter_code_.push_back(code); in AddFunction()
1028 DCHECK_LT(function->func_index, interpreter_code_.size()); in SetFunctionCode()
[all …]