Searched refs:js_code_ (Results 1 – 2 of 2) sorted by relevance
15 return kind_ == JS ? js_code_->constant_pool() : wasm_code_->constant_pool(); in constant_pool()20 ? js_code_->InstructionStart() in instruction_start()26 ? js_code_->InstructionEnd() in instruction_end()32 return kind_ == JS ? js_code_->InstructionSize() in instruction_size()37 return kind_ == JS ? js_code_->relocation_start() in relocation_start()42 return kind_ == JS ? js_code_->relocation_end() in relocation_end()48 return kind_ == JS ? js_code_->relocation_size() in relocation_size()
22 CodeReference() : kind_(JS), js_code_() {} in CodeReference()25 explicit CodeReference(Handle<Code> js_code) : kind_(JS), js_code_(js_code) {} in CodeReference()35 return kind_ == JS ? js_code_.is_null() : wasm_code_ == nullptr; in is_null()40 return js_code_; in as_js_code()52 Handle<Code> js_code_; member