Home
last modified time | relevance | path

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

/external/v8/src/
Dcode-reference.cc15 return kind_ == JS ? js_code_->constant_pool() : wasm_code_->constant_pool(); in constant_pool()
21 : reinterpret_cast<Address>(wasm_code_->instructions().start()); in instruction_start()
27 : reinterpret_cast<Address>(wasm_code_->instructions().start() + in instruction_end()
28 wasm_code_->instructions().size()); in instruction_end()
33 : wasm_code_->instructions().length(); in instruction_size()
38 : wasm_code_->reloc_info().start(); in relocation_start()
43 : wasm_code_->reloc_info().start() + in relocation_end()
44 wasm_code_->reloc_info().length(); in relocation_end()
49 : wasm_code_->reloc_info().length(); in relocation_size()
Dcode-reference.h24 : kind_(WASM), wasm_code_(wasm_code) {} in CodeReference()
35 return kind_ == JS ? js_code_.is_null() : wasm_code_ == nullptr; in is_null()
45 return wasm_code_; in as_wasm_code()
51 const wasm::WasmCode* wasm_code_; member
/external/v8/src/compiler/
Dwasm-compiler.h65 wasm::WasmCode* wasm_code_ = nullptr; variable
Dwasm-compiler.cc5203 if (ok_) wasm_code_ = info.wasm_code(); in ExecuteCompilation()
5205 if (ok_) wasm_unit_->native_module()->PublishCode(wasm_code_); in ExecuteCompilation()
5228 return wasm_code_; in FinishCompilation()