Home
last modified time | relevance | path

Searched refs:BB1 (Results 1 – 25 of 47) sorted by relevance

12

/minix/external/bsd/llvm/dist/llvm/unittests/IR/
H A DDominatorTreeTest.cpp40 BasicBlock *BB1 = FI++; in runOnFunction() local
41 BBI = BB1->begin(); in runOnFunction()
67 EXPECT_TRUE(DT->dominates(BB0, BB1)); in runOnFunction()
72 EXPECT_FALSE(DT->dominates(BB1, BB0)); in runOnFunction()
73 EXPECT_TRUE(DT->dominates(BB1, BB1)); in runOnFunction()
74 EXPECT_FALSE(DT->dominates(BB1, BB2)); in runOnFunction()
75 EXPECT_TRUE(DT->dominates(BB1, BB3)); in runOnFunction()
76 EXPECT_FALSE(DT->dominates(BB1, BB4)); in runOnFunction()
97 EXPECT_FALSE(DT->properlyDominates(BB1, BB1)); in runOnFunction()
141 EXPECT_TRUE(DT->dominates(Y1, BB1)); in runOnFunction()
[all …]
/minix/external/bsd/llvm/dist/llvm/test/Transforms/InstCombine/
H A D2010-01-28-NegativeSRem.ll6 br label %BB1
8 BB1: ; preds = %BB1, %entry
9 ; CHECK: BB1:
10 %x = phi i32 [ -29, %entry ], [ 0, %BB1 ] ; <i32> [#uses=2]
13 br i1 %t, label %BB2, label %BB1
16 BB2: ; preds = %BB1
/minix/external/bsd/llvm/dist/llvm/test/Transforms/ADCE/
H A D2002-05-22-PHITest.ll1 ; It is illegal to remove BB1 because it will mess up the PHI node!
3 ; RUN: opt < %s -adce -S | grep BB1
7 br i1 %C, label %BB1, label %BB2
9 BB1: ; preds = %0
12 BB2: ; preds = %BB1, %0
13 %R = phi i32 [ %A, %0 ], [ %B, %BB1 ] ; <i32> [#uses=1]
H A Dbasictest.ll4 BB1:
14 BB4: ; preds = %BB1
15 %X = phi i32 [ %A, %BB1 ] ; <i32> [#uses=1]
/minix/external/bsd/llvm/dist/llvm/test/Transforms/SCCP/
H A Dsccptest.ll7 br i1 %B, label %BB1, label %BB2
8 BB1: ; preds = %0
13 BB3: ; preds = %BB2, %BB1
14 %Ret = phi i32 [ %Val, %BB1 ], [ 1, %BB2 ] ; <i32> [#uses=1]
18 ; CHECK: %Ret = phi i32 [ 0, %BB1 ], [ 1, %BB2 ]
26 BB1:
29 %j2 = phi i32 [ %j4, %BB7 ], [ 1, %BB1 ]
30 %k2 = phi i32 [ %k4, %BB7 ], [ 0, %BB1 ]
H A Dapint-basictest.ll7 br i1 %B, label %BB1, label %BB2
8 BB1:
14 %Ret = phi i128 [%Val, %BB1], [2, %BB2]
H A Dapint-basictest2.ll8 br i1 %B, label %BB1, label %BB2
9 BB1:
15 %Ret = phi i128 [%Val, %BB1], [1, %BB2]
H A Dapint-ipsccp1.ll5 br i1 %B, label %BB1, label %BB2
6 BB1:
12 %Ret = phi i512 [%Val, %BB1], [2, %BB2]
H A Dapint-basictest3.ll9 br i1 %B, label %BB1, label %BB2
10 BB1:
21 %Ret = phi i128 [%t3, %BB1], [%f3, %BB2]
H A Dapint-basictest4.ll12 br i1 %C, label %BB1, label %BB2
13 BB1:
23 %Ret = phi i100 [%t4, %BB1], [%f3, %BB2]
/minix/external/bsd/llvm/dist/llvm/test/Transforms/LoopSimplify/
H A Dbasictest.ll4 ; to by BB1 & BB2
8 br i1 true, label %BB1, label %BB2
9 BB1: ; preds = %0
13 BB3: ; preds = %BB3, %BB2, %BB1
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/XCore/
H A Dzextfree.ll9 br label %BB1
10 BB1:
11 br i1 %bool, label %BB1, label %BB2
13 br i1 %bool, label %BB1, label %BB2
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/Mips/
H A Dlongbranch.ll59 ; O32-NEXT: bal $[[BB1]]
60 ; O32-NEXT: addiu $1, $1, %lo(($[[BB2]])-($[[BB1]]))
61 ; O32-NEXT: $[[BB1]]:
87 ; N64-NEXT: bal $[[BB1]]
88 ; N64-NEXT: daddiu $1, $1, %lo(($[[BB2]])-($[[BB1]]))
89 ; N64-NEXT: $[[BB1]]:
116 ; MICROMIPS-NEXT: bal $[[BB1]]
118 ; MICROMIPS-NEXT: $[[BB1]]:
146 ; NACL-NEXT: bal $[[BB1]]
147 ; NACL-NEXT: addiu $1, $1, %lo(($[[BB2]])-($[[BB1]]))
[all …]
/minix/external/bsd/llvm/dist/llvm/test/Transforms/ConstProp/
H A Dphi.ll8 br i1 %B, label %BB1, label %BB3
10 BB1: ; preds = %BB0
13 BB3: ; preds = %BB1, %BB0
14 %Ret = phi i32 [ 1, %BB0 ], [ 1, %BB1 ] ; <i32> [#uses=1]
H A Dbasictest.ll9 br i1 %B, label %BB1, label %BB2
11 BB1:
20 ; CHECK: %Ret = phi i32 [ 0, %BB1 ], [ 1, %BB2 ]
21 %Ret = phi i32 [ %Val, %BB1 ], [ 1, %BB2 ]
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSampleProfile.cpp113 void findEquivalencesFor(BasicBlock *BB1,
310 EquivalenceClass[BB2] = BB1; in findEquivalencesFor()
320 unsigned &BB1Weight = BlockWeights[BB1]; in findEquivalencesFor()
341 BasicBlock *BB1 = &BB; in findEquivalenceClasses() local
344 if (EquivalenceClass.count(BB1)) { in findEquivalenceClasses()
345 DEBUG(printBlockEquivalence(dbgs(), BB1)); in findEquivalenceClasses()
350 EquivalenceClass[BB1] = BB1; in findEquivalenceClasses()
363 DT->getDescendants(BB1, DominatedBBs); in findEquivalenceClasses()
375 PDT->getDescendants(BB1, DominatedBBs); in findEquivalenceClasses()
376 findEquivalencesFor(BB1, DominatedBBs, DT); in findEquivalenceClasses()
[all …]
H A DMergedLoadStoreMotion.cpp254 LoadInst *MergedLoadStoreMotion::canHoistFromBlock(BasicBlock *BB1, in canHoistFromBlock() argument
257 for (BasicBlock::iterator BBI = BB1->begin(), BBE = BB1->end(); BBI != BBE; in canHoistFromBlock()
262 if (!isa<LoadInst>(Inst) || Inst->isUsedOutsideOfBlock(BB1)) in canHoistFromBlock()
271 !isLoadHoistBarrierInRange(BB1->front(), *Load1, Load1) && in canHoistFromBlock()
414 StoreInst *MergedLoadStoreMotion::canSinkFromBlock(BasicBlock *BB1, in canSinkFromBlock() argument
418 for (BasicBlock::reverse_iterator RBI = BB1->rbegin(), RBE = BB1->rend(); in canSinkFromBlock()
431 BB1->back(), Loc1) && in canSinkFromBlock()
/minix/external/bsd/llvm/dist/llvm/test/Transforms/LoopRotate/
H A Dpreserve-scev.ll5 br label %BB1
7 BB1: ; preds = %BB19, %BB
14 BB4: ; preds = %BB3, %BB1
15 %tmp5 = phi i32 [ undef, %BB1 ], [ %tmp, %BB2 ] ; <i32> [#uses=1]
46 br label %BB1
/minix/external/bsd/llvm/dist/llvm/test/Transforms/SimplifyCFG/
H A D2009-01-18-PHIPropCrash.ll7 br i1 true, label %BB2, label %BB1
9 BB1: ; preds = %BB
12 BB2: ; preds = %BB1, %BB
13 %tmp3 = phi i1 [ true, %BB ], [ false, %BB1 ] ; <i1> [#uses=1]
H A Dbranch-fold-dbg.ll10 br i1 %1, label %BB5, label %BB1, !dbg !5
12 BB1: ; preds = %Entry
16 BB2: ; preds = %BB1
36 BB5: ; preds = %BB3, %BB2, %BB1, %Entry
/minix/external/bsd/llvm/dist/llvm/test/Feature/
H A Dterminators.ll28 @Addr = global i8* blockaddress(@indbrtest, %BB1)
33 indirectbr i8* %P, [label %BB1, label %BB2, label %BB3]
34 BB1:
38 indirectbr i8* %R, [label %BB1, label %BB2, label %BB3]
/minix/external/bsd/llvm/dist/llvm/test/Assembler/
H A D2002-08-15-ConstantExprProblem.ll8 br label %BB1
10 BB1: ; preds = %BB2, %0
15 br label %BB1
/minix/external/bsd/llvm/dist/llvm/test/Transforms/LoopDeletion/
H A Ddcetest.ll7 BB1:
10 BB2: ; preds = %BB7, %BB1
11 %j2 = phi i32 [ %j4, %BB7 ], [ 1, %BB1 ] ; <i32> [#uses=2]
12 %k2 = phi i32 [ %k4, %BB7 ], [ 0, %BB1 ] ; <i32> [#uses=4]
/minix/external/bsd/llvm/dist/llvm/test/Transforms/Util/
H A Dlowerswitch.ll7 BB1:
17 %merge = phi i64 [ 1, %BB3 ], [ 0, %BB1 ], [ 0, %BB1 ], [ 0, %BB1 ]
/minix/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dwarn-reorder-ctor-initialization.cpp5 struct BB1 {}; struct
7 class complex : public BB, BB1 {
13 BB1(), // expected-warning {{base class 'BB1' will be initialized after base 'BB'}} in complex()

12