Searched defs:vtrue (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/compiler/
H A Dcommon-operator-reducer.cc195 Node* vtrue = node->InputAt(0); local
201 std::swap(vtrue, vfalse);
212 if (mcond.left().Is(0.0) && mcond.right().Equals(vtrue) &&
215 if (mvfalse.left().IsZero() && mvfalse.right().Equals(vtrue)) {
218 return Change(node, machine()->Float32Abs(), vtrue);
221 if (mcond.left().Equals(vtrue) && mcond.right().Equals(vfalse) &&
225 return Change(node, machine()->Float32Min().op(), vtrue, vfalse);
226 } else if (mcond.left().Equals(vfalse) && mcond.right().Equals(vtrue) &&
230 return Change(node, machine()->Float32Max().op(), vtrue, vfalse);
234 if (mcond.left().Is(0.0) && mcond.right().Equals(vtrue)
310 Node* const vtrue = node->InputAt(1); local
[all...]
H A Dchange-lowering.cc255 Node* vtrue = local
263 vtrue, vfalse, merge);
288 Node* vtrue = graph()->NewNode(op, LoadHeapNumberValue(value, if_true)); local
295 vtrue, vfalse, merge);
385 Node* vtrue = LoadHeapNumberValue(value, if_true); local
392 common()->Phi(MachineRepresentation::kFloat64, 2), vtrue, vfalse, merge);
409 Node* vtrue = ChangeUint32ToSmi(value); local
417 vtrue, vfalse, merge);
H A Djs-intrinsic-lowering.cc209 Node* vtrue = jsgraph()->FalseConstant(); local
227 return Change(node, common()->Phi(MachineRepresentation::kTagged, 2), vtrue,
252 Node* vtrue = jsgraph()->FalseConstant(); local
267 vtrue, vfalse, control);
296 Node* vtrue = jsgraph()->FalseConstant(); local
311 vtrue, vfalse, control);
H A Dsimplified-lowering.cc1537 Node* vtrue = changer->GetRepresentationFor( local
1563 node->ReplaceInput(0, vtrue);
1592 Node* vtrue = jsgraph()->Int32Constant(1); local
1602 node->ReplaceInput(0, vtrue);
H A Djs-typed-lowering.cc771 Node* vtrue = NodeProperties::GetValueInput(input, 1); local
772 Type* vtrue_type = NodeProperties::GetType(vtrue);
2526 Node* const vtrue = NodeProperties::GetValueInput(node, 1); local
2527 Type* const vtrue_type = NodeProperties::GetType(vtrue);
2531 // Select(condition:true, vtrue, vfalse) => vtrue
2532 return Replace(vtrue);
2535 // Select(condition:false, vtrue, vfalse) => vfalse
2539 // Select(condition, vtrue:true, vfalse:false) => condition
2543 // Select(condition, vtrue
[all...]
/external/v8/test/unittests/compiler/
H A Dcommon-operator-reducer-unittest.cc327 Node* vtrue = p0; local
332 common()->Phi(MachineRepresentation::kFloat32, 2), vtrue, vfalse, merge);
347 Node* vtrue = p0; local
352 common()->Phi(MachineRepresentation::kFloat64, 2), vtrue, vfalse, merge);
442 Node* vtrue = Parameter(0); local
449 vtrue, vfalse, merge);
457 EXPECT_THAT(graph()->end(), IsEnd(ret, IsReturn(vtrue, etrue, if_true),

Completed in 221 milliseconds