Home
last modified time | relevance | path

Searched refs:vfalse (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/compiler/
Dcommon-operator-reducer.cc243 Node* vfalse = inputs[1]; in ReducePhi() local
249 std::swap(vtrue, vfalse); in ReducePhi()
261 vfalse->opcode() == IrOpcode::kFloat32Sub) { in ReducePhi()
262 Float32BinopMatcher mvfalse(vfalse); in ReducePhi()
272 vfalse->opcode() == IrOpcode::kFloat64Sub) { in ReducePhi()
273 Float64BinopMatcher mvfalse(vfalse); in ReducePhi()
388 Node* const vfalse = node->InputAt(2); in ReduceSelect() local
389 if (vtrue == vfalse) return Replace(vtrue); in ReduceSelect()
394 return Replace(vfalse); in ReduceSelect()
402 vfalse->opcode() == IrOpcode::kFloat32Sub) { in ReduceSelect()
[all …]
Deffect-control-linearizer.cc1255 Node* vfalse = __ LoadField(AccessBuilder::ForHeapNumberValue(), value); in LowerChangeTaggedToInt32() local
1256 vfalse = __ ChangeFloat64ToInt32(vfalse); in LowerChangeTaggedToInt32()
1257 __ Goto(&done, vfalse); in LowerChangeTaggedToInt32()
1275 Node* vfalse = __ LoadField(AccessBuilder::ForHeapNumberValue(), value); in LowerChangeTaggedToUint32() local
1276 vfalse = __ ChangeFloat64ToUint32(vfalse); in LowerChangeTaggedToUint32()
1277 __ Goto(&done, vfalse); in LowerChangeTaggedToUint32()
1299 Node* vfalse = __ LoadField(AccessBuilder::ForHeapNumberValue(), value); in LowerChangeTaggedToTaggedSigned() local
1300 vfalse = __ ChangeFloat64ToInt32(vfalse); in LowerChangeTaggedToTaggedSigned()
1301 vfalse = ChangeInt32ToSmi(vfalse); in LowerChangeTaggedToTaggedSigned()
1302 __ Goto(&done, vfalse); in LowerChangeTaggedToTaggedSigned()
[all …]
Dmemory-optimizer.cc246 Node* vfalse = __ Call(allocate_operator_.get(), target, size); in VisitAllocateRaw() local
247 vfalse = __ IntSub(vfalse, __ IntPtrConstant(kHeapObjectTag)); in VisitAllocateRaw()
248 __ Goto(&done, vfalse); in VisitAllocateRaw()
Djs-intrinsic-lowering.cc214 Node* vfalse = in ReduceIsInstanceType() local
226 vfalse, merge); in ReduceIsInstanceType()
Dtyped-optimization.cc509 Node* const vfalse = NodeProperties::GetValueInput(node, 2); in ReduceSelect() local
510 Type const vfalse_type = NodeProperties::GetType(vfalse); in ReduceSelect()
517 return Replace(vfalse); in ReduceSelect()
Dcode-assembler.cc1402 Label vtrue(this), vfalse(this); in Branch() local
1403 Branch(condition, &vtrue, &vfalse); in Branch()
1408 Bind(&vfalse); in Branch()
1419 Label vfalse(this); in Branch() local
1420 Branch(condition, true_label, &vfalse); in Branch()
1421 Bind(&vfalse); in Branch()
Djs-typed-lowering.cc712 Node* vfalse = efalse = if_false = graph()->NewNode( in ReduceCreateConsString() local
720 NodeProperties::ReplaceControlInput(on_exception, vfalse); in ReduceCreateConsString()
722 if_false = graph()->NewNode(common()->IfSuccess(), vfalse); in ReduceCreateConsString()
1845 Node* vfalse; in ReduceJSForInNext() local
1854 vfalse = efalse = if_false = in ReduceJSForInNext()
1863 if_false = graph()->NewNode(common()->IfSuccess(), vfalse); in ReduceJSForInNext()
1864 NodeProperties::ReplaceControlInput(if_exception, vfalse); in ReduceJSForInNext()
1876 node->ReplaceInput(1, vfalse); in ReduceJSForInNext()
Djs-native-context-specialization.cc2354 Node* vfalse; in BuildElementAccess() local
2357 vfalse = jsgraph()->UndefinedConstant(); in BuildElementAccess()
2365 vtrue, vfalse, control); in BuildElementAccess()
2546 Node* vfalse; in BuildElementAccess() local
2549 vfalse = jsgraph()->UndefinedConstant(); in BuildElementAccess()
2557 vtrue, vfalse, control); in BuildElementAccess()
2729 Node* vfalse = jsgraph()->UndefinedConstant(); in BuildIndexedStringLoad() local
2735 vtrue, vfalse, *control); in BuildIndexedStringLoad()
Djs-call-reducer.cc2213 Node* vfalse = to; in DoFilterPostCallbackWork() local
2218 vtrue, vfalse, *control); in DoFilterPostCallbackWork()
4043 Node* vfalse = efalse = graph()->NewNode(simplified()->CheckSmi(p.feedback()), in ReduceStringPrototypeSubstring() local
4049 vtrue, vfalse, control); in ReduceStringPrototypeSubstring()
4109 Node* vfalse = efalse = graph()->NewNode( in ReduceStringPrototypeSlice() local
4115 vtrue, vfalse, control); in ReduceStringPrototypeSlice()
4160 Node* vfalse = jsgraph()->EmptyStringConstant(); in ReduceStringPrototypeSlice() local
4166 vtrue, vfalse, control); in ReduceStringPrototypeSlice()
4210 Node* vfalse = efalse = graph()->NewNode( in ReduceStringPrototypeSubstr() local
4216 vtrue, vfalse, control); in ReduceStringPrototypeSubstr()
[all …]
Dwasm-compiler.cc4098 Node* vfalse = graph()->NewNode(common->Projection(0), add, if_false); in BuildChangeInt32ToTagged() local
4099 vfalse = BuildChangeInt32ToIntPtr(vfalse); in BuildChangeInt32ToTagged()
4105 vtrue, vfalse, merge); in BuildChangeInt32ToTagged()
/external/swiftshader/third_party/subzero/tests_lit/reader_tests/
Dcompare.ll351 %vfalse = fcmp false float %a1, %a2
372 ; CHECK-NEXT: %vfalse = fcmp false float %a1, %a2
393 %vfalse = fcmp false double %a1, %a2
414 ; CHECK-NEXT: %vfalse = fcmp false double %a1, %a2
435 %vfalse = fcmp false <4 x float> %a1, %a2
456 ; CHECK-NEXT: %vfalse = fcmp false <4 x float> %a1, %a2
/external/v8/src/
Dcode-stub-assembler.cc176 Label vtrue(this), vfalse(this), end(this); in SelectImpl() local
177 Branch(condition, &vtrue, &vfalse); in SelectImpl()
184 BIND(&vfalse); in SelectImpl()