Searched refs:Else (Results 1 - 25 of 72) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h92 Else enumerator in enum:llvm::ARMVCC::VPTCodes
125 // e.g ExpandPredBlockMask(T, Then) = TT, ExpandPredBlockMask(TT, Else) = TTE,
134 case ARMVCC::Else: return "e";
142 .Case("e", ARMVCC::Else)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DMVEVPTBlockPass.cpp111 assert(NextPred != ARMVCC::Else &&
112 "VPT block pass does not expect Else preds");
182 ARMVCC::VPTCodes CurrentPredicate = ARMVCC::Else;
226 (CurrentPredicate == ARMVCC::Then ? ARMVCC::Else : ARMVCC::Then);
245 // The idea of the predicate is that None, Then and Else are for use when
250 // generation, we hope we'll never generate an Else as input to this pass.
251 assert(Pred != ARMVCC::Else && "VPT block pass does not expect Else preds");
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h96 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
H A DPPCallbacks.h365 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { function in class:clang::PPCallbacks
597 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
598 First->Else(Loc, IfLoc);
599 Second->Else(Loc, IfLoc);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp104 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, function in class:PPConditionalDirectiveRecord
/netbsd-current/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DTGLexer.cpp41 { tgtok::Else, "else" },
740 } else if (Kind == tgtok::Else) {
782 IfdefOrElseEntry.Kind != tgtok::Else) {
871 if (Kind != tgtok::Else && Kind != tgtok::Endif) {
H A DTGLexer.h49 // existing 'Else' that means the preprocessor #else.)
75 Ifdef, Ifndef, Else, Endif, Define enumerator in enum:llvm::tgtok::TokKind
185 // Either tgtok::Ifdef or tgtok::Else.
236 // one of the internal token kinds, i.e. Ifdef, Else, Endif, Define.
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp208 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon1290::IfExprAST
212 std::unique_ptr<ExprAST> Else)
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
408 auto Else = ParseExpression(); local
409 if (!Else)
413 std::move(Else));
869 Value *ElseV = Else->codegen();
874 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp208 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon1289::IfExprAST
212 std::unique_ptr<ExprAST> Else)
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
408 auto Else = ParseExpression(); local
409 if (!Else)
413 std::move(Else));
869 Value *ElseV = Else->codegen();
874 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp208 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon1288::IfExprAST
212 std::unique_ptr<ExprAST> Else)
213 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
408 auto Else = ParseExpression(); local
409 if (!Else)
413 std::move(Else));
869 Value *ElseV = Else->codegen();
874 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
211 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp213 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon1296::IfExprAST
217 std::unique_ptr<ExprAST> Else)
218 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
413 auto Else = ParseExpression(); local
414 if (!Else)
418 std::move(Else));
875 Value *ElseV = Else->codegen();
880 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
216 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp214 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon1297::IfExprAST
218 std::unique_ptr<ExprAST> Else)
219 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
414 auto Else = ParseExpression(); local
415 if (!Else)
419 std::move(Else));
874 Value *ElseV = Else->codegen();
879 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
217 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp206 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:IfExprAST
210 std::unique_ptr<ExprAST> Else)
211 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
391 auto Else = ParseExpression(); local
392 if (!Else)
396 std::move(Else));
852 Value *ElseV = Else->codegen();
857 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
209 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp205 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon1295::IfExprAST
209 std::unique_ptr<ExprAST> Else)
210 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
391 auto Else = ParseExpression(); local
392 if (!Else)
396 std::move(Else));
768 Value *ElseV = Else->codegen();
773 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
208 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp185 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon1294::IfExprAST
189 std::unique_ptr<ExprAST> Else)
190 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
357 auto Else = ParseExpression(); local
358 if (!Else)
362 std::move(Else));
656 Value *ElseV = Else->codegen();
661 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
188 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DByteCodeStmtGen.cpp202 if (const Stmt *Else = IS->getElse()) {
212 if (!visitStmt(Else))
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp295 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon1299::IfExprAST
299 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else)
301 Else(std::move(Else)) {}
307 Else->dump(indent(out, ind) << "Else:", ind + 1);
525 auto Else = ParseExpression(); local
526 if (!Else)
530 std::move(Else));
1043 Value *ElseV = Else
298 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp52 Function *Else; member in class:__anon2253::SIAnnotateControlFlow
137 Else = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_else,
168 /// an "Else" block?
212 /// Close the last "If" block and open a new "Else" block
217 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
/netbsd-current/sys/external/bsd/gnu-efi/dist/lib/ia32/
H A Dmath.c187 sbb eax, eax ; Else,
/netbsd-current/sys/external/bsd/gnu-efi/dist/lib/x86_64/
H A Dmath.c170 sbb eax, eax ; Else,
/netbsd-current/external/bsd/bc/dist/
H A Dscan.l236 else return(Else);
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp182 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
185 : Cond(cond), Then(then), Else(_else) {}
357 ExprAST *Else = ParseExpression(); local
358 if (!Else) return 0;
360 return new IfExprAST(Cond, Then, Else);
769 Value *ElseV = Else->Codegen();
773 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp166 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
169 : Cond(cond), Then(then), Else(_else) {}
341 ExprAST *Else = ParseExpression(); local
342 if (!Else) return 0;
344 return new IfExprAST(Cond, Then, Else);
991 Value *ElseV = Else->Codegen();
995 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp167 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
170 : Cond(cond), Then(then), Else(_else) {}
342 ExprAST *Else = ParseExpression(); local
343 if (!Else) return 0;
345 return new IfExprAST(Cond, Then, Else);
751 Value *ElseV = Else->Codegen();
755 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
H A Dtoy.cpp168 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
171 : Cond(cond), Then(then), Else(_else) {}
343 ExprAST *Else = ParseExpression(); local
344 if (!Else) return 0;
346 return new IfExprAST(Cond, Then, Else);
1031 Value *ElseV = Else->Codegen();
1035 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.

Completed in 405 milliseconds

123