/art/test/2019-constantcalculationsinking/src/ |
D | Main.java | 47 outer: in testLoopAddInt() 53 continue outer; in testLoopAddInt() local 64 outer: in testLoopSubInt() 70 continue outer; in testLoopSubInt() local 81 outer: in testLoopSubLong() 87 continue outer; in testLoopSubLong() local 98 outer: in testLoopMulInt() 105 continue outer; in testLoopMulInt() local 116 outer: in testLoopMulLong() 123 continue outer; in testLoopMulLong() local [all …]
|
/art/compiler/optimizing/ |
D | linear_order.cc | 32 static bool IsInnerLoop(HLoopInformation* outer, HLoopInformation* inner) { in IsInnerLoop() argument 33 return (inner != outer) in IsInnerLoop() 35 && (outer != nullptr) in IsInnerLoop() 36 && inner->IsIn(*outer); in IsInnerLoop()
|
D | loop_optimization.h | 57 outer(nullptr), in LoopNode() 62 LoopNode* outer; member
|
D | loop_optimization.cc | 573 node->outer = last_loop_; in AddLoop() 578 while (last_loop_->outer != nullptr && !loop_info->IsIn(*last_loop_->outer->loop_info)) { in AddLoop() 579 last_loop_ = last_loop_->outer; in AddLoop() 581 node->outer = last_loop_->outer; in AddLoop() 599 if (node->outer != nullptr) { in RemoveLoop() 600 node->outer->inner = node->next; in RemoveLoop() 605 node->next->outer = node->outer; in RemoveLoop()
|
D | graph_visualizer.cc | 668 HLoopInformation* outer = loop_info->GetPreHeader()->GetLoopInformation(); in PrintInstruction() local 669 if (outer != nullptr) { in PrintInstruction() 670 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/test/800-smali/smali/ |
D | b_134061982.smali | 16 # * v1 = "outer" catch value to operate on
|
D | b_134061983_2.smali | 16 # * v1 = "outer" catch value to operate on
|
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/entrypoints/quick/ |
D | quick_field_entrypoints.cc | 56 ArtMethod* outer = GetCalleeSaveOuterMethod(self, CalleeSaveType::kSaveRefsOnly); in GetReferrer() local 57 if (outer->GetEntryPointFromQuickCompiledCode() == nullptr) { in GetReferrer() 58 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/test/1966-get-set-local-objects-no-table/jasmin/ |
D | TestCases1966.j | 17 .inner class public static TestClass1 inner art/Test1966$TestClass1 outer art/Test1966 18 .inner interface public static abstract TestInterface inner art/Test1966$TestInterface outer art/Te…
|
/art/test/530-checker-peel-unroll/src/ |
D | Main.java | 857 outer: in peelingBreakFromNest() 861 break outer; in peelingBreakFromNest() local
|
/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 | 390 ObjPtr<Array> outer = multi->AsObjectArray<Array>()->Get(k); in TEST_F() local 391 EXPECT_OBJ_PTR_EQ(int_array_class.Get(), outer->GetClass()); in TEST_F() 392 EXPECT_EQ(j, outer->GetLength()); in TEST_F()
|
/art/runtime/jni/ |
D | jni_internal_test.cc | 2036 jobject outer; in TEST_F() local 2041 outer = env_->NewLocalRef(original); in TEST_F() 2045 inner1 = env_->NewLocalRef(outer); in TEST_F() 2051 EXPECT_EQ(JNILocalRefType, env_->GetObjectRefType(outer)); in TEST_F() 2070 EXPECT_EQ(JNIInvalidRefType, env_->GetObjectRefType(outer)); in TEST_F()
|
/art/runtime/ |
D | class_linker_test.cc | 897 ObjPtr<mirror::Class> outer = class_linker_->FindClass(soa.Self(), "LNested;", class_loader); in TEST_F() local 898 ASSERT_TRUE(outer != nullptr); in TEST_F() 899 EXPECT_EQ(0U, outer->NumVirtualMethods()); in TEST_F() 900 EXPECT_EQ(1U, outer->NumDirectMethods()); in TEST_F()
|