Searched refs:outer (Results 1 – 14 of 14) sorted by relevance
/art/compiler/optimizing/ |
D | linear_order.cc | 29 static bool IsInnerLoop(HLoopInformation* outer, HLoopInformation* inner) { in IsInnerLoop() argument 30 return (inner != outer) in IsInnerLoop() 32 && (outer != nullptr) in IsInnerLoop() 33 && inner->IsIn(*outer); in IsInnerLoop()
|
D | loop_optimization.h | 50 outer(nullptr), in LoopNode() 55 LoopNode* outer; member
|
D | loop_optimization.cc | 278 node->outer = last_loop_; in AddLoop() 283 while (last_loop_->outer != nullptr && !loop_info->IsIn(*last_loop_->outer->loop_info)) { in AddLoop() 284 last_loop_ = last_loop_->outer; in AddLoop() 286 node->outer = last_loop_->outer; in AddLoop() 304 if (node->outer != nullptr) { in RemoveLoop() 305 node->outer->inner = node->next; in RemoveLoop() 310 node->next->outer = node->outer; in RemoveLoop()
|
D | graph_visualizer.cc | 607 HLoopInformation* outer = loop_info->GetPreHeader()->GetLoopInformation(); in PrintInstruction() local 608 if (outer != nullptr) { in PrintInstruction() 609 StartAttributeStream("outer_loop") << "B" << outer->GetHeader()->GetBlockId(); in PrintInstruction()
|
/art/test/547-regression-trycatch-critic-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/runtime/entrypoints/quick/ |
D | quick_field_entrypoints.cc | 62 ArtMethod* outer = GetCalleeSaveOuterMethod(self, Runtime::kSaveRefsOnly); in GetReferrer() local 63 if (outer->GetEntryPointFromQuickCompiledCode() == nullptr) { in GetReferrer() 64 return outer; in GetReferrer()
|
/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 | 341 Array* outer = multi->AsObjectArray<Array>()->Get(k); in TEST_F() local 342 EXPECT_TRUE(outer->GetClass() == class_linker_->FindSystemClass(soa.Self(), "[I")); in TEST_F() 343 EXPECT_EQ(j, outer->GetLength()); 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
|
/art/runtime/ |
D | jni_internal_test.cc | 1923 jobject outer; in TEST_F() local 1928 outer = env_->NewLocalRef(original); in TEST_F() 1932 inner1 = env_->NewLocalRef(outer); in TEST_F() 1938 EXPECT_EQ(JNILocalRefType, env_->GetObjectRefType(outer)); in TEST_F() 1957 EXPECT_EQ(JNIInvalidRefType, env_->GetObjectRefType(outer)); in TEST_F()
|
D | class_linker_test.cc | 846 mirror::Class* outer = class_linker_->FindClass(soa.Self(), "LNested;", class_loader); in TEST_F() local 847 ASSERT_TRUE(outer != nullptr); in TEST_F() 848 EXPECT_EQ(0U, outer->NumVirtualMethods()); in TEST_F() 849 EXPECT_EQ(1U, outer->NumDirectMethods()); in TEST_F()
|