/external/v8/src/compiler/ |
common-operator-reducer.cc | 195 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...] |
change-lowering.cc | 255 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);
|
js-intrinsic-lowering.cc | 209 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);
|
simplified-lowering.cc | 1537 Node* vtrue = changer->GetRepresentationFor( local 1592 Node* vtrue = jsgraph()->Int32Constant(1); local [all...] |
js-typed-lowering.cc | 771 Node* vtrue = NodeProperties::GetValueInput(input, 1); local 772 Type* vtrue_type = NodeProperties::GetType(vtrue); 2526 Node* const vtrue = NodeProperties::GetValueInput(node, 1); local [all...] |
/external/v8/test/unittests/compiler/ |
common-operator-reducer-unittest.cc | 327 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),
|