Lines Matching full:use_value
11 HValue* value, HValue* use_value, int use_index, Representation to) {
15 if (use_value->IsPhi()) {
16 next = use_value->block()->predecessors()->at(use_index)->end();
18 next = HInstruction::cast(use_value);
25 bool is_truncating_to_smi = use_value->CheckFlag(HValue::kTruncatingToSmi);
26 bool is_truncating_to_int = use_value->CheckFlag(HValue::kTruncatingToInt32);
41 if (!use_value->operand_position(use_index).IsUnknown()) {
42 new_value->set_position(use_value->operand_position(use_index));
50 use_value->SetOperandAt(use_index, new_value);
69 HValue* use_value = it.value();
71 Representation req = use_value->RequiredInputRepresentation(use_index);
83 HValue* use_value = it.value();
85 Representation req = use_value->RequiredInputRepresentation(use_index);
98 use_value->SetOperandAt(use_index, change->value());
103 InsertRepresentationChangeForUse(value, use_value, use_index, req);