Searched refs:loop2 (Results 1 – 7 of 7) sorted by relevance
/art/compiler/optimizing/ |
D | superblock_cloner_test.cc | 545 HLoopInformation* loop2 = loop2_header->GetLoopInformation(); in TEST_F() local 557 EXPECT_TRUE(loop2->IsIn(*loop1)); in TEST_F() 559 EXPECT_TRUE(loop3->IsIn(*loop2)); in TEST_F() 564 EXPECT_EQ(helper.GetRegionToBeAdjusted(), loop2); in TEST_F() 672 static HLoopInformation* FindCommonLoopCheck(HLoopInformation* loop1, HLoopInformation* loop2) { in FindCommonLoopCheck() argument 673 HLoopInformation* common_loop12 = FindCommonLoop(loop1, loop2); in FindCommonLoopCheck() 674 HLoopInformation* common_loop21 = FindCommonLoop(loop2, loop1); in FindCommonLoopCheck() 713 HLoopInformation* loop2 = loop2_header->GetLoopInformation(); in TEST_F() local 719 EXPECT_TRUE(loop2->IsIn(*loop1)); in TEST_F() 721 EXPECT_TRUE(loop3->IsIn(*loop2)); in TEST_F() [all …]
|
D | superblock_cloner.cc | 1126 HLoopInformation* FindCommonLoop(HLoopInformation* loop1, HLoopInformation* loop2) { in FindCommonLoop() argument 1127 if (loop1 == nullptr || loop2 == nullptr) { in FindCommonLoop() 1131 if (loop1->IsIn(*loop2)) { in FindCommonLoop() 1132 return loop2; in FindCommonLoop() 1136 while (current != nullptr && !loop2->IsIn(*current)) { in FindCommonLoop()
|
D | superblock_cloner.h | 548 HLoopInformation* FindCommonLoop(HLoopInformation* loop1, HLoopInformation* loop2);
|
D | intrinsics_arm64.cc | 2982 vixl::aarch64::Label loop1, loop2, pre_loop2, done; in VisitSystemArrayCopyChar() local 2996 __ Bind(&loop2); in VisitSystemArrayCopyChar() 3000 __ B(&loop2, gt); in VisitSystemArrayCopyChar()
|
/art/test/2023-InvariantLoops_typecast/src/ |
D | Main.java | 53 public long loop2() { in loop2() method in Main 77 long res1 = new Main().loop2(); in main()
|
/art/test/552-checker-primitive-typeprop/smali/ |
D | TypePropagation.smali | 127 :loop2 130 # propagates conflict to loop2's phis 132 if-eqz p1, :loop2
|
/art/test/482-checker-loop-back-edge-use/src/ |
D | Main.java | 44 public static void loop2(boolean incoming) { in loop2() method in Main
|