Home
last modified time | relevance | path

Searched refs:vtrue (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/compiler/
Dcommon-operator-reducer.cc230 Node* vtrue = inputs[0]; in ReducePhi() local
237 std::swap(vtrue, vfalse); in ReducePhi()
248 if (mcond.left().Is(0.0) && mcond.right().Equals(vtrue) && in ReducePhi()
251 if (mvfalse.left().IsZero() && mvfalse.right().Equals(vtrue)) { in ReducePhi()
254 return Change(node, machine()->Float32Abs(), vtrue); in ReducePhi()
259 if (mcond.left().Is(0.0) && mcond.right().Equals(vtrue) && in ReducePhi()
262 if (mvfalse.left().IsZero() && mvfalse.right().Equals(vtrue)) { in ReducePhi()
265 return Change(node, machine()->Float64Abs(), vtrue); in ReducePhi()
375 Node* const vtrue = node->InputAt(1); in ReduceSelect() local
377 if (vtrue == vfalse) return Replace(vtrue); in ReduceSelect()
[all …]
Dtyped-optimization.cc279 Node* const vtrue = NodeProperties::GetValueInput(node, 1); in ReduceSelect() local
280 Type* const vtrue_type = NodeProperties::GetType(vtrue); in ReduceSelect()
285 return Replace(vtrue); in ReduceSelect()
Djs-intrinsic-lowering.cc202 Node* vtrue = jsgraph()->FalseConstant(); in ReduceIsInstanceType() local
220 return Change(node, common()->Phi(MachineRepresentation::kTagged, 2), vtrue, in ReduceIsInstanceType()
Djs-builtin-reducer.cc758 Node* vtrue = jsgraph()->UndefinedConstant(); in ReduceArrayPop() local
801 vtrue, vfalse, control); in ReduceArrayPop()
1658 Node* vtrue = graph()->NewNode(simplified()->StringCharAt(), receiver, in ReduceStringCharAt() local
1668 vtrue, vfalse, control); in ReduceStringCharAt()
1712 Node* vtrue = graph()->NewNode(simplified()->StringCharCodeAt(), in ReduceStringCharCodeAt() local
1722 vtrue, vfalse, control); in ReduceStringCharCodeAt()
Deffect-control-linearizer.cc1054 Node* vtrue = ChangeSmiToInt32(value); in LowerTruncateTaggedToFloat64() local
1055 vtrue = __ ChangeInt32ToFloat64(vtrue); in LowerTruncateTaggedToFloat64()
1056 __ Goto(&done, vtrue); in LowerTruncateTaggedToFloat64()
Dsimplified-lowering.cc3024 Node* vtrue = changer->GetRepresentationFor( in DoLoadBuffer() local
3050 node->ReplaceInput(0, vtrue); in DoLoadBuffer()
Dwasm-compiler.cc2393 Node* vtrue = BuildAllocateHeapNumberWithValue( in BuildChangeInt32ToTagged() local
2401 vtrue, vfalse, merge); in BuildChangeInt32ToTagged()
/external/swiftshader/third_party/subzero/tests_lit/reader_tests/
Dcompare.ll366 %vtrue = fcmp true float %a1, %a2
387 ; CHECK-NEXT: %vtrue = fcmp true float %a1, %a2
408 %vtrue = fcmp true double %a1, %a2
429 ; CHECK-NEXT: %vtrue = fcmp true double %a1, %a2
450 %vtrue = fcmp true <4 x float> %a1, %a2
471 ; CHECK-NEXT: %vtrue = fcmp true <4 x float> %a1, %a2
/external/v8/src/
Dcode-stub-assembler.cc87 Label vtrue(this), vfalse(this), end(this); in Select() local
88 Branch(condition, &vtrue, &vfalse); in Select()
90 Bind(&vtrue); in Select()