Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dcommon-operator-reducer.cc242 Node* vtrue = inputs[0]; in ReducePhi() local
249 std::swap(vtrue, vfalse); in ReducePhi()
260 if (mcond.left().Is(0.0) && mcond.right().Equals(vtrue) && in ReducePhi()
263 if (mvfalse.left().IsZero() && mvfalse.right().Equals(vtrue)) { in ReducePhi()
266 return Change(node, machine()->Float32Abs(), vtrue); in ReducePhi()
271 if (mcond.left().Is(0.0) && mcond.right().Equals(vtrue) && in ReducePhi()
274 if (mvfalse.left().IsZero() && mvfalse.right().Equals(vtrue)) { in ReducePhi()
277 return Change(node, machine()->Float64Abs(), vtrue); in ReducePhi()
387 Node* const vtrue = node->InputAt(1); in ReduceSelect() local
389 if (vtrue == vfalse) return Replace(vtrue); in ReduceSelect()
[all …]
Djs-native-context-specialization.cc2344 Node* vtrue; in BuildElementAccess() local
2347 vtrue = etrue = graph()->NewNode( in BuildElementAccess()
2365 vtrue, vfalse, control); in BuildElementAccess()
2519 Node* vtrue; in BuildElementAccess() local
2522 vtrue = etrue = in BuildElementAccess()
2532 vtrue = graph()->NewNode( in BuildElementAccess()
2533 simplified()->ConvertTaggedHoleToUndefined(), vtrue); in BuildElementAccess()
2537 vtrue = etrue = graph()->NewNode( in BuildElementAccess()
2540 vtrue, etrue, if_true); in BuildElementAccess()
2557 vtrue, vfalse, control); in BuildElementAccess()
[all …]
Djs-intrinsic-lowering.cc204 Node* vtrue = jsgraph()->FalseConstant(); in ReduceIsInstanceType() local
225 return Change(node, common()->Phi(MachineRepresentation::kTagged, 2), vtrue, in ReduceIsInstanceType()
Dtyped-optimization.cc507 Node* const vtrue = NodeProperties::GetValueInput(node, 1); in ReduceSelect() local
508 Type const vtrue_type = NodeProperties::GetType(vtrue); in ReduceSelect()
513 return Replace(vtrue); in ReduceSelect()
Djs-call-reducer.cc863 Node* vtrue; in ReduceReflectGet() local
871 vtrue = etrue = if_true = in ReduceReflectGet()
900 ReplaceWithValue(node, vtrue, etrue, if_true); in ReduceReflectGet()
901 return Changed(vtrue); in ReduceReflectGet()
939 Node* vtrue; in ReduceReflectHas() local
941 vtrue = etrue = if_true = in ReduceReflectHas()
970 ReplaceWithValue(node, vtrue, etrue, if_true); in ReduceReflectHas()
971 return Changed(vtrue); in ReduceReflectHas()
2172 Node* vtrue; in DoFilterPostCallbackWork() local
2208 vtrue = new_length_a; in DoFilterPostCallbackWork()
[all …]
Dcode-assembler.cc1402 Label vtrue(this), vfalse(this); in Branch() local
1403 Branch(condition, &vtrue, &vfalse); in Branch()
1405 Bind(&vtrue); in Branch()
1433 Label vtrue(this); in Branch() local
1434 Branch(condition, &vtrue, false_label); in Branch()
1435 Bind(&vtrue); in Branch()
Djs-typed-lowering.cc1835 Node* vtrue; in ReduceJSForInNext() local
1840 vtrue = key; in ReduceJSForInNext()
1875 node->ReplaceInput(0, vtrue); in ReduceJSForInNext()
Deffect-control-linearizer.cc1316 Node* vtrue = ChangeSmiToInt32(value); in LowerTruncateTaggedToFloat64() local
1317 vtrue = __ ChangeInt32ToFloat64(vtrue); in LowerTruncateTaggedToFloat64()
1318 __ Goto(&done, vtrue); in LowerTruncateTaggedToFloat64()
Dwasm-compiler.cc4093 Node* vtrue = BuildAllocateHeapNumberWithValue( in BuildChangeInt32ToTagged() local
4105 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.cc176 Label vtrue(this), vfalse(this), end(this); in SelectImpl() local
177 Branch(condition, &vtrue, &vfalse); in SelectImpl()
179 BIND(&vtrue); in SelectImpl()