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

123

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h1192 static Likelihood getLikelihood(const Stmt *Then, const Stmt *Else);
1196 /// the Attr's are the conflicting attributes of the Then and Else Stmt.
1198 determineLikelihoodConflict(const Stmt *Then, const Stmt *Else);
1955 SourceLocation RParenLoc, Stmt *Then, SourceLocation EL, Stmt *Else);
1966 Stmt *Else = nullptr);
2013 void setElse(Stmt *Else) { argument
2016 getTrailingObjects<Stmt *>()[elseOffset()] = Else;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DCore.h3645 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
3647 LLVMBasicBlockRef Else, unsigned NumCases);
3954 LLVMValueRef Then, LLVMValueRef Else,
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtPrinter.cpp257 if (Stmt *Else = If->getElse()) {
260 if (auto *CS = dyn_cast<CompoundStmt>(Else)) {
264 } else if (auto *ElseIf = dyn_cast<IfStmt>(Else)) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp793 BasicBlock *Else = Br->getSuccessor(1); local
794 BranchInst *NewBr = BranchInst::Create(Then, Else, OffsetInRange);
799 // Update phis in Else resulting from InitialBB being split
800 for (auto &Phi : Else->phis())
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DCore.cpp3155 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
3156 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
3160 LLVMBasicBlockRef Else, unsigned NumCases) {
3161 return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
3919 LLVMValueRef Then, LLVMValueRef Else,
3921 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Decho.cpp510 LLVMValueRef Else = LLVMGetOperand(Src, 1); local
511 LLVMBasicBlockRef ElseBB = DeclareBB(LLVMValueAsBasicBlock(Else));
/netbsd-current/usr.bin/make/unit-tests/
H A Dcond-short.mk7 # distinguishes between the operators 'And', 'And Then', 'Or', 'Or Else'.
/netbsd-current/external/lgpl3/gmp/dist/mpn/x86_64/zen/
H A Dmul_basecase.asm34 C * Try 2x unrolling instead of current 4x, at least for mul_1. Else consider
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPDirectives.cpp596 Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
3138 Callbacks->Else(Result.getLocation(), CI.IfLoc);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp770 if (const Stmt *Else = S.getElse()) {
778 EmitStmt(Else);
/netbsd-current/sys/arch/mac68k/obio/
H A Diwm.s924 * occurred, mark buffer valid. Else ignore the sector.
1256 movel %a6@(-10),%a4 | Else, get ptr to current slot
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h1189 // Else, iterate through the rest of the elements in the pack.
1626 const Node *Else; member in class:ConditionalExpr
1630 : Node(KConditionalExpr), Cond(Cond_), Then(Then_), Else(Else_) {}
1632 template<typename Fn> void match(Fn F) const { F(Cond, Then, Else); }
1640 Else->print(S);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp2986 if (Stmt *Else = I->getElse()) {
2995 if (!isa<CompoundStmt>(Else))
2996 addLocalScopeAndDtors(Else);
2998 ElseBlock = addStmt(Else);
3000 if (!ElseBlock) // Can occur when the Else body has all NullStmts.
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5167 const Stmt *const Else = Node.getElse();
5168 return (Else != nullptr && InnerMatcher.matches(*Else, Finder, Builder));
/netbsd-current/sys/arch/m68k/060sp/dist/
H A Dpfpsp.s1146 # Else: (normal case) #
2407 # Else: (normal case) #
2442 # _real_trace(). Else, a normal exit is made through _fpsp_done(). #
4226 # Else if instruction access error, #
4228 # Else if data access error, #
4231 # Else #
7992 # and return the EXOP if exceptions are enabled. Else, scale the #
8809 # and return the EXOP if exceptions are enabled. Else, scale the #
9260 # occurred. If so, return default underflow/overflow result. Else, #
10394 # and return the EXOP if exceptions are enabled. Else, scal
[all...]
H A Dilsp.s96 # or 32-bit divides if possible. Else, use a special math algorithm #
H A Dfpsp.s1146 # Else: (normal case) #
2407 # Else: (normal case) #
2442 # _real_trace(). Else, a normal exit is made through _fpsp_done(). #
3965 # Else: (normal case) #
11560 # and return the EXOP if exceptions are enabled. Else, scale the #
12377 # and return the EXOP if exceptions are enabled. Else, scale the #
12828 # occurred. If so, return default underflow/overflow result. Else, #
13962 # and return the EXOP if exceptions are enabled. Else, scale the #
14303 # and return the EXOP if exceptions are enabled. Else, scale the #
14639 # occurred. If so, return default result and maybe EXOP. Else, inser
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h1326 SourceLocation ElseLoc, Stmt *Else) {
1328 RParenLoc, Then, ElseLoc, Else);
7375 StmtResult Else; local
7377 Else = getDerived().TransformStmt(S->getElse());
7378 if (Else.isInvalid())
7386 Else.get() == S->getElse())
7391 S->getRParenLoc(), Init.get(), Then.get(), S->getElseLoc(), Else.get());
1323 RebuildIfStmt(SourceLocation IfLoc, bool IsConstexpr, SourceLocation LParenLoc, Sema::ConditionResult Cond, SourceLocation RParenLoc, Stmt *Init, Stmt *Then, SourceLocation ElseLoc, Stmt *Else) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp78 unsigned Else = (Mask >> Pos) & 1; local
79 ITStates.push_back(CCBits ^ Else);
120 VPTStates.push_back(ARMVCC::Else);
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/m68k/
H A Dlb1sf68.S2031 | NaN; then check if b is NaN, and return NaN also in that case. Else
3512 | NaN; then check if b is NaN, and return NaN also in that case. Else
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/m68k/
H A Dlb1sf68.S2040 | NaN; then check if b is NaN, and return NaN also in that case. Else
3521 | NaN; then check if b is NaN, and return NaN also in that case. Else
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp7299 ARMOperand::CreateVPTPred(ARMVCC::Else, PLoc));
7664 unsigned VPTPred = Bit ? ARMVCC::Else : ARMVCC::Then;

Completed in 498 milliseconds

123