Home
last modified time | relevance | path

Searched refs:merged (Results 1 – 12 of 12) sorted by relevance

/art/runtime/verifier/
Dreg_type_test.cc500 const RegType& merged = ref_type_1.Merge(ref_type_0, &cache_new, /* verifier= */ nullptr); in TEST_F() local
501 EXPECT_TRUE(merged.IsUnresolvedMergedReference()); in TEST_F()
502 RegType& merged_nonconst = const_cast<RegType&>(merged); in TEST_F()
523 const RegType& merged = float_type.Merge(precise_cst, &cache_new, /* verifier= */ nullptr); in TEST_F() local
524 EXPECT_TRUE(merged.IsFloat()); in TEST_F()
528 const RegType& merged = precise_cst.Merge(float_type, &cache_new, /* verifier= */ nullptr); in TEST_F() local
529 EXPECT_TRUE(merged.IsFloat()); in TEST_F()
533 const RegType& merged = float_type.Merge(imprecise_cst, &cache_new, /* verifier= */ nullptr); in TEST_F() local
534 EXPECT_TRUE(merged.IsFloat()); in TEST_F()
538 const RegType& merged = imprecise_cst.Merge(float_type, &cache_new, /* verifier= */ nullptr); in TEST_F() local
[all …]
/art/test/476-checker-ctor-fence-redun-elim/
Dinfo.txt2 merged together by the compiler when they are redundant.
/art/test/800-smali/smali/
Db_22411633_2.smali36 # rules set any reference merged with Object to Object. This is wrong in the case of the
40 # merged initialized and uninitialized.
Db_27799205_6.smali5 # Make sure that non-merged types still work.
Db_121245951_3.smali26 # If the lock fail at the return-void above merged into the catch
Db_22411633_3.smali25 # At this point, an initialized and an uninitialized reference are merged. However, the
/art/test/570-checker-osr/smali/
DOsr.smali19 # Check that blocks only havig nops are not merged when they are loop headers.
/art/compiler/optimizing/
Dinstruction_simplifier_arm.cc182 bool merged = MergeIntoShifterOperand(user, bitfield_op); in TryMergeIntoUsersShifterOperand() local
183 DCHECK(merged); in TryMergeIntoUsersShifterOperand()
Dinstruction_simplifier_arm64.cc186 bool merged = MergeIntoShifterOperand(user, bitfield_op); in TryMergeIntoUsersShifterOperand() local
187 DCHECK(merged); in TryMergeIntoUsersShifterOperand()
/art/build/
DAndroid.bp63 // here so that it gets merged with other visibility rules in modules
/art/test/463-checker-boolean-simplifier/smali/
DMain2.smali31 # Elementary test negating a boolean. Verifies that blocks are merged and
/art/test/543-checker-dce-trycatch/smali/
DTestCase.smali186 # Merge block. Make complex so it does not get merged with the live branch.