/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 242 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 …]
|
D | js-native-context-specialization.cc | 2344 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 …]
|
D | js-intrinsic-lowering.cc | 204 Node* vtrue = jsgraph()->FalseConstant(); in ReduceIsInstanceType() local 225 return Change(node, common()->Phi(MachineRepresentation::kTagged, 2), vtrue, in ReduceIsInstanceType()
|
D | typed-optimization.cc | 507 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()
|
D | js-call-reducer.cc | 863 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 …]
|
D | code-assembler.cc | 1402 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()
|
D | js-typed-lowering.cc | 1835 Node* vtrue; in ReduceJSForInNext() local 1840 vtrue = key; in ReduceJSForInNext() 1875 node->ReplaceInput(0, vtrue); in ReduceJSForInNext()
|
D | effect-control-linearizer.cc | 1316 Node* vtrue = ChangeSmiToInt32(value); in LowerTruncateTaggedToFloat64() local 1317 vtrue = __ ChangeInt32ToFloat64(vtrue); in LowerTruncateTaggedToFloat64() 1318 __ Goto(&done, vtrue); in LowerTruncateTaggedToFloat64()
|
D | wasm-compiler.cc | 4093 Node* vtrue = BuildAllocateHeapNumberWithValue( in BuildChangeInt32ToTagged() local 4105 vtrue, vfalse, merge); in BuildChangeInt32ToTagged()
|
/external/swiftshader/third_party/subzero/tests_lit/reader_tests/ |
D | compare.ll | 366 %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/ |
D | code-stub-assembler.cc | 176 Label vtrue(this), vfalse(this), end(this); in SelectImpl() local 177 Branch(condition, &vtrue, &vfalse); in SelectImpl() 179 BIND(&vtrue); in SelectImpl()
|