Searched refs:outer (Results 1 – 11 of 11) sorted by relevance
/art/test/547-regression-trycatch-critical-edge/smali/ |
D | TestCase.smali | 19 # 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/ |
D | info.txt | 1 Checker test for inlining calls that in turn call the outer method.
|
/art/test/596-checker-dead-phi/smali/ |
D | IrreducibleLoop.smali | 23 # 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/ |
D | ssa_liveness_analysis.cc | 39 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()
|
D | graph_visualizer.cc | 557 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/ |
D | IrreducibleLoop.smali | 21 # through `inner_back_edge` and incorrectly label the outer loop non-irreducible.
|
/art/runtime/base/ |
D | timing_logger_test.cc | 109 TimingLogger::ScopedTiming outer(outersplit, &logger); in TEST_F() local
|
/art/runtime/mirror/ |
D | object_test.cc | 349 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/ |
D | class_linker_test.cc | 688 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()
|
D | jni_internal_test.cc | 1882 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/ |
D | b_22881413.smali | 73 # 1) Use a while, so that the end of the loop is a goto. That way, the merging of outer-loop
|