Lines Matching defs:other
82 // to visiting bytecodes, and is later passed as input to other nodes that
144 Node* MergeControl(Node* control, Node* other);
254 // any other invocation of {NewNode} would do.
581 void Merge(Environment* other, const BytecodeLivenessState* liveness);
693 const BytecodeGraphBuilder::Environment* other)
694 : builder_(other->builder_),
695 register_count_(other->register_count_),
696 parameter_count_(other->parameter_count_),
697 context_(other->context_),
698 control_dependency_(other->control_dependency_),
699 effect_dependency_(other->effect_dependency_),
700 values_(other->zone()),
701 parameters_state_values_(other->parameters_state_values_),
702 generator_state_(other->generator_state_),
703 register_base_(other->register_base_),
704 accumulator_base_(other->accumulator_base_) {
705 values_ = other->values_;
788 BytecodeGraphBuilder::Environment* other,
793 other->GetControlDependency());
799 other->GetEffectDependency(), control);
804 context_ = builder()->MergeValue(context_, other->context_, control);
806 values_[i] = builder()->MergeValue(values_[i], other->values_[i], control);
819 DCHECK_NE(other->values_[index],
825 builder()->MergeValue(values_[index], other->values_[index], control);
835 DCHECK_NE(other->values_[accumulator_base()],
840 other->values_[accumulator_base()], control);
846 DCHECK_NOT_NULL(other->generator_state_);
848 other->generator_state_, control);
4343 Node* BytecodeGraphBuilder::MergeControl(Node* control, Node* other) {
4348 control->AppendInput(graph_zone(), other);
4353 control->AppendInput(graph_zone(), other);
4358 Node* merge_inputs[] = {control, other};
4364 Node* BytecodeGraphBuilder::MergeEffect(Node* value, Node* other,
4370 value->InsertInput(graph_zone(), inputs - 1, other);
4372 } else if (value != other) {
4375 value->ReplaceInput(inputs - 1, other);
4380 Node* BytecodeGraphBuilder::MergeValue(Node* value, Node* other,
4386 value->InsertInput(graph_zone(), inputs - 1, other);
4389 } else if (value != other) {
4392 value->ReplaceInput(inputs - 1, other);