/external/swiftshader/third_party/LLVM/test/Transforms/LICM/ |
D | no-preheader-test.ll | 5 br i1 %ifcond, label %Then, label %Else 8 Else: ; preds = %0 10 Loop: ; preds = %Loop, %Else, %Then 11 %j = phi i32 [ 0, %Then ], [ 12, %Else ], [ %Next, %Loop ] ; <i32> [#uses=1]
|
/external/llvm/test/Transforms/LICM/ |
D | no-preheader-test.ll | 6 br i1 %ifcond, label %Then, label %Else 9 Else: ; preds = %0 11 Loop: ; preds = %Loop, %Else, %Then 12 %j = phi i32 [ 0, %Then ], [ 12, %Else ], [ %Next, %Loop ] ; <i32> [#uses=1]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LICM/ |
D | no-preheader-test.ll | 6 br i1 %ifcond, label %Then, label %Else 9 Else: ; preds = %0 11 Loop: ; preds = %Loop, %Else, %Then 12 %j = phi i32 [ 0, %Then ], [ 12, %Else ], [ %Next, %Loop ] ; <i32> [#uses=1]
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_emulate_branches.c | 46 struct rc_instruction * Else; member 100 branch->Else = inst; in handle_else() 215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst); in handle_endif() 217 if (branch->Else) in handle_endif() 218 allocate_and_insert_proxies(s, &ElseProxies, branch->Else->Next, inst); in handle_endif() 230 if (branch->Else) in handle_endif() 231 rc_remove_instruction(branch->Else); in handle_endif()
|
D | r500_fragprog_emit.c | 59 int Else; member 551 branch->Else = -1; in emit_flowcontrol() 567 branch->Else = newip; in emit_flowcontrol() 596 if (branch->Else >= 0) { in emit_flowcontrol() 599 s->Code->inst[branch->If].inst3 = R500_FC_JUMP_ADDR(branch->Else + 1); in emit_flowcontrol() 601 s->Code->inst[branch->Else].inst2 = R500_FC_OP_JUMP in emit_flowcontrol() 608 s->Code->inst[branch->Else].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1); in emit_flowcontrol()
|
/external/u-boot/arch/x86/include/asm/acpi/ |
D | globutil.asl | 13 } Else { 51 } Else { 61 } Else { 64 } Else {
|
D | debug.asl | 70 } Else { 113 } Else { 116 } Else { 120 } Else {
|
D | irqlinks.asl | 75 } Else { 133 } Else { 191 } Else { 249 } Else { 307 } Else { 365 } Else { 423 } Else { 481 } Else {
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 185 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon1b6fdac40111::IfExprAST 189 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 190 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 357 auto Else = ParseExpression(); in ParseIfExpr() local 358 if (!Else) in ParseIfExpr() 362 std::move(Else)); in ParseIfExpr() 655 Value *ElseV = Else->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 176 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anona9d9756c0111::IfExprAST 180 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 181 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 343 auto Else = ParseExpression(); in ParseIfExpr() local 344 if (!Else) in ParseIfExpr() 348 std::move(Else)); in ParseIfExpr() 641 Value *ElseV = Else->codegen(); in codegen()
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | idnaContextRules.txt | 109 # Else If .cp. .in. BackwardCompatible Then BackwardCompatible(cp); 110 # Else If .cp. .in. Unassigned Then UNASSIGNED; 111 # Else If .cp. .in. LDH Then PVALID; 112 # Else If .cp. .in. JoinControl Then CONTEXTJ; 113 # Else If .cp. .in. Unstable Then DISALLOWED; 114 # Else If .cp. .in. IgnorableProperties Then DISALLOWED; 115 # Else If .cp. .in. IgnorableBlocks Then DISALLOWED; 116 # Else If .cp. .in. OldHangulJamo Then DISALLOWED; 117 # Else If .cp. .in. LetterDigits Then PVALID; 118 # Else DISALLOWED;
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/ |
D | PhiValuesTest.cpp | 34 BasicBlock *Else = BasicBlock::Create(C, "else", F); in TEST() local 36 BranchInst::Create(If, Else, UndefValue::get(I1Ty), Entry); in TEST() 38 BranchInst::Create(Then, Else); in TEST() 47 Phi1->addIncoming(Val2, Else); in TEST() 50 Phi2->addIncoming(Val3, Else); in TEST()
|
D | SparsePropagation.cpp | 382 BasicBlock *Else = BasicBlock::Create(Context, "else", F); in TEST_F() local 386 Builder.CreateCondBr(Cond, Then, Else); in TEST_F() 389 Builder.SetInsertPoint(Else); in TEST_F() 422 BasicBlock *Else = BasicBlock::Create(Context, "else", F); in TEST_F() local 426 Builder.CreateCondBr(Cond, Then, Else); in TEST_F() 429 Builder.SetInsertPoint(Else); in TEST_F()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 195 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon1e55e66d0111::IfExprAST 199 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 200 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 376 auto Else = ParseExpression(); in ParseIfExpr() local 377 if (!Else) in ParseIfExpr() 381 std::move(Else)); in ParseIfExpr() 752 Value *ElseV = Else->codegen(); in codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 205 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon8fec4bc50111::IfExprAST 209 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 210 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 391 auto Else = ParseExpression(); in ParseIfExpr() local 392 if (!Else) in ParseIfExpr() 396 std::move(Else)); in ParseIfExpr() 767 Value *ElseV = Else->codegen(); in codegen()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 144 ExprAST *Cond, *Then, *Else; member in IfExprAST 147 : Cond(cond), Then(then), Else(_else) {} in IfExprAST() 293 ExprAST *Else = ParseExpression(); in ParseIfExpr() local 294 if (!Else) return 0; in ParseIfExpr() 296 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 543 Value *ElseV = Else->Codegen(); in Codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | toy.cpp | 202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anonbdf6bacf0111::IfExprAST 206 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 396 auto Else = ParseExpression(); in ParseIfExpr() local 397 if (!Else) in ParseIfExpr() 401 std::move(Else)); in ParseIfExpr() 856 Value *ElseV = Else->codegen(); in codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | toy.cpp | 208 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon481d0f270111::IfExprAST 212 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 408 auto Else = ParseExpression(); in ParseIfExpr() local 409 if (!Else) in ParseIfExpr() 413 std::move(Else)); in ParseIfExpr() 868 Value *ElseV = Else->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | toy.cpp | 202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon497a49ce0111::IfExprAST 206 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 396 auto Else = ParseExpression(); in ParseIfExpr() local 397 if (!Else) in ParseIfExpr() 401 std::move(Else)); in ParseIfExpr() 856 Value *ElseV = Else->codegen(); in codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | toy.cpp | 208 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon5f242d250111::IfExprAST 212 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 408 auto Else = ParseExpression(); in ParseIfExpr() local 409 if (!Else) in ParseIfExpr() 413 std::move(Else)); in ParseIfExpr() 868 Value *ElseV = Else->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | toy.cpp | 202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anond4fdd8cd0111::IfExprAST 206 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 396 auto Else = ParseExpression(); in ParseIfExpr() local 397 if (!Else) in ParseIfExpr() 401 std::move(Else)); in ParseIfExpr() 856 Value *ElseV = Else->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 203 std::unique_ptr<ExprAST> Cond, Then, Else; member in IfExprAST 207 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 208 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 384 auto Else = ParseExpression(); in ParseIfExpr() local 385 if (!Else) in ParseIfExpr() 389 std::move(Else)); in ParseIfExpr() 845 Value *ElseV = Else->codegen(); in codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | toy.cpp | 208 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anond3a09e260111::IfExprAST 212 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 408 auto Else = ParseExpression(); in ParseIfExpr() local 409 if (!Else) in ParseIfExpr() 413 std::move(Else)); in ParseIfExpr() 868 Value *ElseV = Else->codegen(); in codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 208 std::unique_ptr<ExprAST> Cond, Then, Else; member in IfExprAST 212 std::unique_ptr<ExprAST> Else) in IfExprAST() argument 213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 393 auto Else = ParseExpression(); in ParseIfExpr() local 394 if (!Else) in ParseIfExpr() 398 std::move(Else)); in ParseIfExpr() 854 Value *ElseV = Else->codegen(); in codegen()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 159 ExprAST *Cond, *Then, *Else; member in IfExprAST 162 : Cond(cond), Then(then), Else(_else) {} in IfExprAST() 321 ExprAST *Else = ParseExpression(); in ParseIfExpr() local 322 if (!Else) return 0; in ParseIfExpr() 324 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 647 Value *ElseV = Else->Codegen(); in Codegen()
|