Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dcode-assembler.cc756 variable_phis_[vars[i]->impl_] = nullptr; in CodeAssemblerLabel()
779 DCHECK(variable_phis_.find(var) == variable_phis_.end() || in MergeVariables()
786 auto phi = variable_phis_.find(var); in MergeVariables()
787 if (phi != variable_phis_.end()) { in MergeVariables()
824 variable_phis_[var] = nullptr; in Bind()
831 for (auto var : variable_phis_) { in Bind()
843 variable_phis_[var_impl] = phi; in Bind()
849 auto i = variable_phis_.find(var); in Bind()
850 if (i != variable_phis_.end()) { in Bind()
Dcode-assembler.h471 std::map<CodeAssemblerVariable::Impl*, Node*> variable_phis_; variable