Home
last modified time | relevance | path

Searched refs:Else (Results 1 – 25 of 197) sorted by relevance

12345678

/external/llvm/test/Transforms/LICM/
Dno-preheader-test.ll5 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/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_emulate_branches.c46 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()
Dr500_fragprog_emit.c59 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/eigen/Eigen/src/Eigen2Support/
DMeta.h22 template<bool Condition, typename Then, typename Else>
25 template<typename Then, typename Else>
26 struct ei_meta_if <false, Then, Else> { typedef Else ret; };
/external/v8/src/
Dcode-stubs-hydrogen.cc298 if_number.Else(); in BuildCodeStub()
361 zero_capacity.Else(); in BuildCodeStub()
369 if_fixed_cow.Else(); in BuildCodeStub()
378 if_fixed.Else(); in BuildCodeStub()
699 is_valid.Else(); in BuildCodeStub()
706 in_range.Else(); in BuildCodeStub()
1010 if_nil.Else(); in BuildCodeInitializedStub()
1057 if_leftisstring.Else(); in BuildCodeInitializedStub()
1077 if_rightisstring.Else(); in BuildCodeInitializedStub()
1109 if_heap_number.Else(); in BuildCodeInitializedStub()
[all …]
/external/eigen/Eigen/src/Core/util/
DMeta.h28 template<bool Condition, typename Then, typename Else>
31 template<typename Then, typename Else>
32 struct conditional <false, Then, Else> { typedef Else type; };
/external/v8/src/compiler/
Dcontrol-builders.cc21 void IfBuilder::Else() { in Else() function in v8::internal::compiler::IfBuilder
71 control_if.Else(); in BreakUnless()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp164 ExprAST *Cond, *Then, *Else; member in __anon08d88ba30111::IfExprAST
168 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
330 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
331 if (!Else) in ParseIfExpr()
334 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
605 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp183 ExprAST *Cond, *Then, *Else; member in __anon7d54fca40111::IfExprAST
187 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
361 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
362 if (!Else) in ParseIfExpr()
365 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
713 Value *ElseV = Else->Codegen(); in Codegen()
/external/clang/include/clang/Lex/
DPPCallbacks.h312 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { in Else() function
494 void Else(SourceLocation Loc, SourceLocation IfLoc) override { in Else() function
495 First->Else(Loc, IfLoc); in Else()
496 Second->Else(Loc, IfLoc); in Else()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp182 ExprAST *Cond, *Then, *Else; member in IfExprAST
185 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
357 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
358 if (!Else) return 0; in ParseIfExpr()
360 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
771 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp189 ExprAST *Cond, *Then, *Else; member in __anonf1d16da50111::IfExprAST
193 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
381 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
382 if (!Else) in ParseIfExpr()
385 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
818 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp167 ExprAST *Cond, *Then, *Else; member in IfExprAST
170 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
342 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
343 if (!Else) return 0; in ParseIfExpr()
345 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
753 Value *ElseV = Else->Codegen(); in Codegen()
Dtoy.cpp168 ExprAST *Cond, *Then, *Else; member in IfExprAST
171 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
343 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
344 if (!Else) return 0; in ParseIfExpr()
346 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
1033 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dtoken.ml18 | If | Then | Else Constructor
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Dtoken.ml18 | If | Then | Else Constructor
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dtoken.ml18 | If | Then | Else Constructor
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
Dtoy.cpp178 std::unique_ptr<ExprAST> Else) in IfExprAST()
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
182 std::unique_ptr<ExprAST> Cond, Then, Else; member
367 auto Else = ParseExpression(); in ParseIfExpr() local
368 if (!Else) in ParseIfExpr()
372 std::move(Else)); in ParseIfExpr()
878 Value *ElseV = Else->IRGen(C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/initial/
Dtoy.cpp178 std::unique_ptr<ExprAST> Else) in IfExprAST()
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
182 std::unique_ptr<ExprAST> Cond, Then, Else; member
367 auto Else = ParseExpression(); in ParseIfExpr() local
368 if (!Else) in ParseIfExpr()
372 std::move(Else)); in ParseIfExpr()
878 Value *ElseV = Else->IRGen(C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
Dtoy.cpp178 std::unique_ptr<ExprAST> Else) in IfExprAST()
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
182 std::unique_ptr<ExprAST> Cond, Then, Else; member
367 auto Else = ParseExpression(); in ParseIfExpr() local
368 if (!Else) in ParseIfExpr()
372 std::move(Else)); in ParseIfExpr()
878 Value *ElseV = Else->IRGen(C); in IRGen()
/external/llvm/lib/Target/R600/
DSIAnnotateControlFlow.cpp60 Constant *Else; member in __anon7c43e1ae0111::SIAnnotateControlFlow
134 Else = M.getOrInsertFunction( in doInitialization()
204 Value *Ret = CallInst::Create(Else, popSaved(), "", Term); in insertElse()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp297 ExprAST *Cond, *Then, *Else; member in __anon664ddea60211::IfExprAST
301 : ExprAST(Loc), Cond(cond), Then(then), Else(_else) {} in IfExprAST()
306 Else->dump(indent(out, ind) << "Else:", ind + 1); in dump()
527 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
528 if (!Else) in ParseIfExpr()
531 return new IfExprAST(IfLoc, Cond, Then, Else); in ParseIfExpr()
1017 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/docs/tutorial/
DLangImpl5.rst21 If/Then/Else
60 Lexer Extensions for If/Then/Else
84 AST Extensions for If/Then/Else
93 ExprAST *Cond, *Then, *Else;
96 : Cond(cond), Then(then), Else(_else) {}
102 Parser Extensions for If/Then/Else
131 ExprAST *Else = ParseExpression();
132 if (!Else) return 0;
134 return new IfExprAST(Cond, Then, Else);
151 LLVM IR for If/Then/Else
[all …]
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
Dtoy.cpp179 std::unique_ptr<ExprAST> Else) in IfExprAST()
180 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
183 std::unique_ptr<ExprAST> Cond, Then, Else; member
368 auto Else = ParseExpression(); in ParseIfExpr() local
369 if (!Else) in ParseIfExpr()
373 std::move(Else)); in ParseIfExpr()
879 Value *ElseV = Else->IRGen(C); in IRGen()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp166 ExprAST *Cond, *Then, *Else; member in IfExprAST
169 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
341 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
342 if (!Else) return 0; in ParseIfExpr()
344 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
993 Value *ElseV = Else->Codegen(); in Codegen()

12345678