Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dhydrogen-representation-changes.cc11 HValue* value, HValue* use_value, int use_index, Representation to) { in InsertRepresentationChangeForUse() argument
15 if (use_value->IsPhi()) { in InsertRepresentationChangeForUse()
16 next = use_value->block()->predecessors()->at(use_index)->end(); in InsertRepresentationChangeForUse()
18 next = HInstruction::cast(use_value); in InsertRepresentationChangeForUse()
25 bool is_truncating_to_smi = use_value->CheckFlag(HValue::kTruncatingToSmi); in InsertRepresentationChangeForUse()
26 bool is_truncating_to_int = use_value->CheckFlag(HValue::kTruncatingToInt32); in InsertRepresentationChangeForUse()
41 if (!use_value->operand_position(use_index).IsUnknown()) { in InsertRepresentationChangeForUse()
42 new_value->set_position(use_value->operand_position(use_index)); in InsertRepresentationChangeForUse()
50 use_value->SetOperandAt(use_index, new_value); in InsertRepresentationChangeForUse()
73 HValue* use_value = it.value(); in InsertRepresentationChangesForValue() local
[all …]
Dhydrogen-representation-changes.h23 HValue* use_value,