Home
last modified time | relevance | path

Searched refs:rt (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dreference_table_test.cc84 ReferenceTable rt("test", 0, 11); in TEST_F() local
89 rt.Dump(oss); in TEST_F()
91 EXPECT_EQ(0U, rt.Size()); in TEST_F()
95 rt.Remove(nullptr); in TEST_F()
96 EXPECT_EQ(0U, rt.Size()); in TEST_F()
99 rt.Remove(o1.Get()); in TEST_F()
100 EXPECT_EQ(0U, rt.Size()); in TEST_F()
104 rt.Add(o1.Get()); in TEST_F()
105 EXPECT_EQ(1U, rt.Size()); in TEST_F()
107 rt.Dump(oss); in TEST_F()
[all …]
/art/test/800-smali/
Djni.cc31 Runtime* rt = Runtime::Current(); in Java_Main_isAotVerified() local
36 bool ret = rt->GetClassLinker()->VerifyClassUsingOatFile(dex_file, klass, oat_file_class_status); in Java_Main_isAotVerified()
/art/test/961-default-iface-resolution-gen/
Drun18 ./default-run "$@" --dex2oat-timeout 120 --dex2oat-rt-timeout 180
/art/openjdkjvmti/
Dti_method.cc654 const art::verifier::RegType& rt = line->GetRegisterType(verifier.get(), slot_); in InferSlotTypeFromVerifier() local
655 if (rt.IsUndefined()) { in InferSlotTypeFromVerifier()
657 } else if (rt.IsNonZeroReferenceTypes() || rt.IsNull()) { in InferSlotTypeFromVerifier()
658 *descriptor = (rt.HasClass() ? rt.GetDescriptor() : "Ljava/lang/Object;"); in InferSlotTypeFromVerifier()
661 } else if (rt.IsZero()) { in InferSlotTypeFromVerifier()
665 } else if (rt.IsCategory1Types()) { in InferSlotTypeFromVerifier()
669 } else if (rt.IsCategory2Types() && rt.IsLowHalf()) { in InferSlotTypeFromVerifier()
/art/compiler/optimizing/
Dloop_optimization.cc1129 HInstruction* rt = Insert( in Vectorize() local
1134 HSelect(rt, vtc, graph_->GetConstant(induc_type, 0), kNoDexPc)); in Vectorize()
Dcode_generator_arm_vixl.cc108 static inline bool CanEmitNarrowLdr(vixl32::Register rt, vixl32::Register rn, uint32_t offset) { in CanEmitNarrowLdr() argument
109 return rt.IsLow() && rn.IsLow() && offset < 32u; in CanEmitNarrowLdr()