HomeSort by relevance Sort by last modified time
    Searched refs:vfalse (Results 1 - 6 of 6) sorted by null

  /external/v8/src/compiler/
common-operator-reducer.cc 196 Node* vfalse = node->InputAt(1); local
201 std::swap(vtrue, vfalse);
213 vfalse->opcode() == IrOpcode::kFloat32Sub) {
214 Float32BinopMatcher mvfalse(vfalse);
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);
235 vfalse->opcode() == IrOpcode::kFloat64Sub) {
236 Float64BinopMatcher mvfalse(vfalse);
311 Node* const vfalse = node->InputAt(2); local
    [all...]
change-lowering.cc 259 Node* vfalse = graph()->NewNode(common()->Projection(0), add); local
263 vtrue, vfalse, merge);
291 Node* vfalse = ChangeSmiToInt32(value); local
295 vtrue, vfalse, merge);
388 Node* vfalse = ChangeSmiToFloat64(value); local
392 common()->Phi(MachineRepresentation::kFloat64, 2), vtrue, vfalse, merge);
412 Node* vfalse = local
417 vtrue, vfalse, merge);
js-intrinsic-lowering.cc 217 Node* vfalse = graph()->NewNode(machine()->Word32Equal(), efalse, local
228 vfalse, merge);
260 Node* vfalse = local
267 vtrue, vfalse, control);
304 Node* vfalse = graph()->NewNode( local
311 vtrue, vfalse, control);
simplified-lowering.cc 1543 Node* vfalse; local
1594 Node* vfalse = graph()->NewNode( local
    [all...]
js-typed-lowering.cc 773 Node* vfalse = NodeProperties::GetValueInput(input, 2); local
774 Type* vfalse_type = NodeProperties::GetType(vfalse);
777 check->InputAt(0) == vfalse) {
779 return Replace(vfalse);
2528 Node* const vfalse = NodeProperties::GetValueInput(node, 2); local
    [all...]
  /external/v8/test/unittests/compiler/
common-operator-reducer-unittest.cc 329 Node* vfalse = graph()->NewNode(machine()->Float32Sub(), c0, p0); local
332 common()->Phi(MachineRepresentation::kFloat32, 2), vtrue, vfalse, merge);
349 Node* vfalse = graph()->NewNode(machine()->Float64Sub(), c0, p0); local
352 common()->Phi(MachineRepresentation::kFloat64, 2), vtrue, vfalse, merge);
445 Node* vfalse = Parameter(1); local
449 vtrue, vfalse, merge);
458 IsReturn(vfalse, efalse, if_false)));

Completed in 48 milliseconds