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

/external/v8/src/compiler/
H A Dcommon-operator-reducer.cc196 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...]
H A Dchange-lowering.cc259 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);
H A Djs-intrinsic-lowering.cc217 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);
H A Dsimplified-lowering.cc1543 Node* vfalse; local
1545 vfalse = jsgraph()->UndefinedConstant();
1547 vfalse =
1550 vfalse =
1553 vfalse = jsgraph()->Int32Constant(0);
1564 node->ReplaceInput(1, vfalse);
1594 Node* vfalse = graph()->NewNode( local
1603 node->AppendInput(graph()->zone(), vfalse);
H A Djs-typed-lowering.cc773 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
2529 Type* const vfalse_type = NodeProperties::GetType(vfalse);
2531 // Select(condition:true, vtrue, vfalse) => vtrue
2535 // Select(condition:false, vtrue, vfalse) => vfalse
2536 return Replace(vfalse);
[all...]
/external/v8/test/unittests/compiler/
H A Dcommon-operator-reducer-unittest.cc329 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 126 milliseconds