Home
last modified time | relevance | path

Searched refs:ASSERT_INS_EQ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dload_store_elimination_test.cc8396 ASSERT_INS_EQ(replacement_write->InputAt(0), replacement_new_inst); in TEST_P()
8397 ASSERT_INS_EQ(replacement_write->InputAt(1), c11); in TEST_P()
8407 ASSERT_INS_EQ(replacement_middle_read->GetTarget()->AsPhi()->InputAt(0), replacement_new_inst); in TEST_P()
8408 ASSERT_INS_EQ(replacement_middle_read->GetTarget()->AsPhi()->InputAt(1), cnull); in TEST_P()
8411 ASSERT_INS_EQ(replacement_middle_read->GetDefaultValue()->AsPhi()->InputAt(0), c0); in TEST_P()
8412 ASSERT_INS_EQ(replacement_middle_read->GetDefaultValue()->AsPhi()->InputAt(1), c11); in TEST_P()
8421 ASSERT_INS_EQ(replacement_breturn_read->GetTarget(), replacement_middle_read->GetTarget()); in TEST_P()
8424 ASSERT_INS_EQ(replacement_breturn_read->GetDefaultValue()->AsPhi()->InputAt(0), c33); in TEST_P()
8427 ASSERT_INS_EQ(other_input, replacement_middle_read); in TEST_P()
8555 ASSERT_INS_EQ(replacement_write->InputAt(0), replacement_new_inst); in TEST_P()
[all …]
Doptimizing_unit_test.h88 #define ASSERT_INS_EQ(a, b) ASSERT_EQ(InstructionDumper{a}, InstructionDumper{b}) macro