Home
last modified time | relevance | path

Searched refs:outer (Results 1 – 11 of 11) sorted by relevance

/art/test/547-regression-trycatch-critical-edge/smali/
DTestCase.smali19 # the outer loop would have a smaller liveness position than the two back edges
21 # edge between TryBoundary and outer loop header (b/25493695).
29 move v2, p0 # v2 = outer loop counter
39 if-eqz v3, :outer_loop # back edge of outer loop
/art/test/488-checker-inline-recursive-calls/
Dinfo.txt1 Checker test for inlining calls that in turn call the outer method.
/art/test/596-checker-dead-phi/smali/
DIrreducibleLoop.smali23 # Check that the outer loop suspend check environment only has the parameter vreg.
64 # Add a marker on the outer loop back edge.
/art/compiler/optimizing/
Dssa_liveness_analysis.cc39 static bool IsInnerLoop(HLoopInformation* outer, HLoopInformation* inner) { in IsInnerLoop() argument
40 return (inner != outer) in IsInnerLoop()
42 && (outer != nullptr) in IsInnerLoop()
43 && inner->IsIn(*outer); in IsInnerLoop()
Dgraph_visualizer.cc557 HLoopInformation* outer = loop_info->GetPreHeader()->GetLoopInformation(); in PrintInstruction() local
558 if (outer != nullptr) { in PrintInstruction()
559 StartAttributeStream("outer_loop") << "B" << outer->GetHeader()->GetBlockId(); in PrintInstruction()
/art/test/598-checker-irreducible-dominance/smali/
DIrreducibleLoop.smali21 # through `inner_back_edge` and incorrectly label the outer loop non-irreducible.
/art/runtime/base/
Dtiming_logger_test.cc109 TimingLogger::ScopedTiming outer(outersplit, &logger); in TEST_F() local
/art/runtime/mirror/
Dobject_test.cc349 Array* outer = multi->AsObjectArray<Array>()->Get(k); in TEST_F() local
350 EXPECT_TRUE(outer->GetClass() == class_linker_->FindSystemClass(soa.Self(), "[I")); in TEST_F()
351 EXPECT_EQ(j, outer->GetLength()); in TEST_F()
/art/runtime/
Dclass_linker_test.cc688 mirror::Class* outer = class_linker_->FindClass(soa.Self(), "LNested;", class_loader); in TEST_F() local
689 ASSERT_TRUE(outer != nullptr); in TEST_F()
690 EXPECT_EQ(0U, outer->NumVirtualMethods()); in TEST_F()
691 EXPECT_EQ(1U, outer->NumDirectMethods()); in TEST_F()
Djni_internal_test.cc1882 jobject outer; in TEST_F() local
1887 outer = env_->NewLocalRef(original); in TEST_F()
1891 inner1 = env_->NewLocalRef(outer); in TEST_F()
1897 EXPECT_EQ(JNILocalRefType, env_->GetObjectRefType(outer)); in TEST_F()
1916 EXPECT_EQ(JNIInvalidRefType, env_->GetObjectRefType(outer)); in TEST_F()
/art/test/800-smali/smali/
Db_22881413.smali73 # 1) Use a while, so that the end of the loop is a goto. That way, the merging of outer-loop