Searched refs:true_value (Results 1 – 4 of 4) sorted by relevance
/aosp12/art/compiler/optimizing/ |
H A D | select_generator.cc | 142 HInstruction* true_value = nullptr; in Run() local 145 true_value = true_block->GetFirstInstruction()->InputAt(0); in Run() 148 true_value = phi->InputAt(predecessor_index_true); in Run() 158 true_value, in Run() 162 if (true_value->GetType() == DataType::Type::kReference) { in Run()
|
H A D | instruction_simplifier.cc | 1010 HInstruction* true_value = select->GetTrueValue(); in VisitSelect() local 1016 std::swap(true_value, false_value); in VisitSelect() 1018 select->ReplaceInput(true_value, 1); in VisitSelect() 1023 if (true_value == false_value) { in VisitSelect() 1025 replace_with = true_value; in VisitSelect() 1029 replace_with = true_value; in VisitSelect() 1047 DataType::Type t_type = true_value->GetType(); in VisitSelect() 1063 ((a == true_value && b == false_value) || in VisitSelect() 1064 (b == true_value && a == false_value))) { in VisitSelect() 1081 HInstruction* true_sub1 = true_value->InputAt(0); in VisitSelect() [all …]
|
H A D | nodes.h | 8107 HInstruction* true_value, 8110 : HExpression(kSelect, HPhi::ToPhiType(true_value->GetType()), SideEffects::None(), dex_pc) { 8111 DCHECK_EQ(HPhi::ToPhiType(true_value->GetType()), HPhi::ToPhiType(false_value->GetType())); 8118 SetRawInputAt(1, true_value);
|
/aosp12/art/runtime/ |
H A D | transaction_test.cc | 634 Handle<mirror::Object> true_value = hs.NewHandle(true_field->GetObject(boolean_class.Get())); in TEST_F() local 635 ASSERT_TRUE(true_value != nullptr); in TEST_F() 636 ASSERT_TRUE(heap->ObjectIsInBootImageSpace(true_value.Get())); in TEST_F() 709 EXPECT_TRUE(transaction.WriteConstraint(soa.Self(), true_value.Get())); in TEST_F() 733 EXPECT_TRUE(strict_transaction.WriteConstraint(soa.Self(), true_value.Get())); in TEST_F()
|