Lines Matching refs:use_value
34 HValue* value, HValue* use_value, int use_index, Representation to) {
38 if (use_value->IsPhi()) {
39 next = use_value->block()->predecessors()->at(use_index)->end();
41 next = HInstruction::cast(use_value);
48 bool is_truncating_to_smi = use_value->CheckFlag(HValue::kTruncatingToSmi);
49 bool is_truncating_to_int = use_value->CheckFlag(HValue::kTruncatingToInt32);
64 if (use_value->operand_position(use_index) != RelocInfo::kNoPosition) {
65 new_value->set_position(use_value->operand_position(use_index));
72 use_value->SetOperandAt(use_index, new_value);
83 HValue* use_value = it.value();
85 Representation req = use_value->RequiredInputRepresentation(use_index);
87 InsertRepresentationChangeForUse(value, use_value, use_index, req);