Searched refs:interpreter_code_ (Results 1 – 1 of 1) sorted by relevance
891 ZoneVector<InterpreterCode> interpreter_code_; member in v8::internal::wasm::CodeMap894 : zone_(zone), module_(module), interpreter_code_(zone) { in CodeMap()906 if (function->func_index < interpreter_code_.size()) { in FindCode()907 InterpreterCode* code = &interpreter_code_[function->func_index]; in FindCode()915 CHECK_LT(function_index, interpreter_code_.size()); in GetCode()916 return Preprocess(&interpreter_code_[function_index]); in GetCode()925 if (index >= interpreter_code_.size()) return nullptr; in GetIndirectCode()947 DCHECK_EQ(interpreter_code_.size(), function->func_index); in AddFunction()948 interpreter_code_.push_back(code); in AddFunction()949 return static_cast<int>(interpreter_code_.size()) - 1; in AddFunction()