/external/v8/src/arm64/ |
assembler-arm64-inl.h | 974 Instr Assembler::Cond(Condition cond) { 975 return cond << Condition_offset; [all...] |
/external/valgrind/memcheck/ |
mc_errors.c | 106 } Cond; 449 /* Could also show extra->Err.Cond.otag if debugging origin 467 if (extra->Err.Cond.origin_ec) 468 mc_pp_origin( extra->Err.Cond.origin_ec, 469 extra->Err.Cond.otag & 3 ); 471 /* Could also show extra->Err.Cond.otag if debugging origin 476 if (extra->Err.Cond.origin_ec) 477 mc_pp_origin( extra->Err.Cond.origin_ec, 478 extra->Err.Cond.otag & 3 ); 781 extra.Err.Cond.otag = otag [all...] |
/frameworks/compile/slang/ |
slang_rs_object_ref_count.cpp | 405 // for (Init; Cond; Inc) 417 // Cond -> "rsIntIter < NumArrayElements" 440 clang::BinaryOperator *Cond = 494 Cond, 776 // for (Init; Cond; Inc) 801 // Cond -> "rsIntIter < NumArrayElements" 805 clang::BinaryOperator *Cond = 878 Cond, [all...] |
/external/clang/include/clang/AST/ |
StmtOpenMP.h | 421 void setCond(Expr *Cond) { 422 *std::next(child_begin(), CondOffset) = Cond; 496 Expr *Cond; 531 Cond != nullptr && Init != nullptr && Inc != nullptr; 541 Cond = nullptr; [all...] |
/external/clang/lib/CodeGen/ |
CGStmt.cpp | 617 JumpDest LoopHeader = getJumpDestInCurrentScope("while.cond"); 701 JumpDest LoopCond = getJumpDestInCurrentScope("do.cond"); 770 JumpDest Continue = getJumpDestInCurrentScope("for.cond"); 800 ExitBlock = createBasicBlock("for.cond.cleanup"); 866 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond"); 875 ExitBlock = createBasicBlock("for.cond.cleanup"); [all...] |
/external/clang/lib/Sema/ |
AnalysisBasedWarnings.cpp | [all...] |
/external/llvm/examples/Kaleidoscope/Chapter8/ |
toy.cpp | 294 std::unique_ptr<ExprAST> Cond, Then, Else; 297 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond, 299 : ExprAST(Loc), Cond(std::move(Cond)), Then(std::move(Then)), 304 Cond->dump(indent(out, ind) << "Cond:", ind + 1); 325 Start->dump(indent(out, ind) << "Cond:", ind + 1); 507 auto Cond = ParseExpression(); 508 if (!Cond) 528 return llvm::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy.cpp | 189 ExprAST *Cond, *Then, *Else; 191 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 192 : Cond(cond), Then(then), Else(_else) {} 349 ExprAST *Cond = ParseExpression(); 350 if (!Cond) return 0; 367 return new IfExprAST(Cond, Then, Else); 1103 Value *CondV = Cond->Codegen(); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 208 ExprAST *Cond, *Then, *Else; 210 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 211 : Cond(cond), Then(then), Else(_else) {} 368 ExprAST *Cond = ParseExpression(); 369 if (!Cond) return 0; 386 return new IfExprAST(Cond, Then, Else); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 166 ExprAST *Cond, *Then, *Else; 168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 169 : Cond(cond), Then(then), Else(_else) {} 326 ExprAST *Cond = ParseExpression(); 327 if (!Cond) return 0; 344 return new IfExprAST(Cond, Then, Else); 961 Value *CondV = Cond->Codegen(); [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy.cpp | 168 ExprAST *Cond, *Then, *Else; 170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 171 : Cond(cond), Then(then), Else(_else) {} 328 ExprAST *Cond = ParseExpression(); 329 if (!Cond) return 0; 346 return new IfExprAST(Cond, Then, Else); 1001 Value *CondV = Cond->Codegen(); [all...] |
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
toy.cpp | 178 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, 180 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} 183 std::unique_ptr<ExprAST> Cond, Then, Else; 351 auto Cond = ParseExpression(); 352 if (!Cond) 372 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), 846 Value *CondV = Cond->IRGen(C); [all...] |
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
toy.cpp | 177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, 179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} 182 std::unique_ptr<ExprAST> Cond, Then, Else; 350 auto Cond = ParseExpression(); 351 if (!Cond) 371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), 845 Value *CondV = Cond->IRGen(C); [all...] |
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
toy.cpp | 177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, 179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} 182 std::unique_ptr<ExprAST> Cond, Then, Else; 350 auto Cond = ParseExpression(); 351 if (!Cond) 371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), 845 Value *CondV = Cond->IRGen(C); [all...] |
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
toy.cpp | 177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, 179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} 182 std::unique_ptr<ExprAST> Cond, Then, Else; 350 auto Cond = ParseExpression(); 351 if (!Cond) 371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), 845 Value *CondV = Cond->IRGen(C); [all...] |
/external/llvm/include/llvm/IR/ |
PatternMatch.h | 746 SelectClass_match(const Cond_t &Cond, const LHS_t &LHS, const RHS_t &RHS) 747 : C(Cond), L(LHS), R(RHS) {} 757 template <typename Cond, typename LHS, typename RHS> 758 inline SelectClass_match<Cond, LHS, RHS> m_Select(const Cond &C, const LHS &L, 760 return SelectClass_match<Cond, LHS, RHS>(C, L, R); 765 template <int64_t L, int64_t R, typename Cond> 766 inline SelectClass_match<Cond, constantint_match<L>, constantint_match<R>> 767 m_SelectCst(const Cond &C) { 925 Cond_t Cond; [all...] |
/external/llvm/lib/Analysis/ |
InstructionSimplify.cpp | 340 // For example, select (cond, X, X & Z) & Z -> X & Z. 383 Value *Cond = SI->getCondition(); 387 // Now that we have "cmp select(Cond, TV, FV), RHS", analyse it. 390 if (TCmp == Cond) { 393 TCmp = getTrue(Cond->getType()); 397 if (!isSameCompare(Cond, Pred, TV, RHS)) 399 TCmp = getTrue(Cond->getType()); 404 if (FCmp == Cond) { 407 FCmp = getFalse(Cond->getType()); 411 if (!isSameCompare(Cond, Pred, FV, RHS) [all...] |
/external/llvm/lib/CodeGen/ |
IfConversion.cpp | 88 /// TargetInstrInfo::AnalyzeBranch() (i.e. TBB, FBB, and Cond), and its 202 bool FeasibilityAnalysis(BBInfo &BBI, SmallVectorImpl<MachineOperand> &Cond, 213 SmallVectorImpl<MachineOperand> &Cond, 216 SmallVectorImpl<MachineOperand> &Cond, 751 SmallVector<MachineOperand, 4> Cond(BBI.BrCond.begin(), BBI.BrCond.end()); 753 if (TII->ReverseBranchCondition(Cond)) 757 !TII->SubsumesPredicate(Cond, RevPred)) [all...] |
/external/llvm/lib/Target/AMDGPU/ |
R600ISelLowering.cpp | [all...] |
SIISelLowering.cpp | [all...] |
/external/llvm/lib/Target/ARM/ |
ARMConstantIslandPass.cpp | 42 STATISTIC(NumCBrFixed, "Number of cond branches fixed"); 249 ImmBranch(MachineInstr *mi, unsigned maxdisp, bool cond, unsigned ubr) 250 : MI(mi), MaxDisp(maxdisp), isCond(cond), UncondBr(ubr) {} 664 SmallVector<MachineOperand, 4> Cond; 665 bool TooDifficult = TII->AnalyzeBranch(*MBB, TBB, FBB, Cond); [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonHardwareLoops.cpp | 435 SmallVector<MachineOperand,2> Cond; 437 bool NotAnalyzed = TII->AnalyzeBranch(*ExitingBlock, TB, FB, Cond, false); 442 if (!TII->getPredReg(Cond, PredR, PredPos, PredRegFlags)) 582 SmallVector<MachineOperand,2> Cond; 584 bool NotAnalyzed = TII->AnalyzeBranch(*ExitingBlock, TB, FB, Cond, false); 609 // to put imm(0), followed by P in the vector Cond. 612 bool Negated = TII->predOpcodeHasNot(Cond) ^ (TB != Header); 614 if (!TII->getPredReg(Cond, PredReg, PredPos, PredRegFlags)) [all...] |
/external/llvm/lib/Target/Mips/ |
MipsFastISel.cpp | 904 // if (cond) goto TBB 980 const Value *Cond = SI->getCondition(); 983 unsigned CondReg = getRegForValue(Cond); [all...] |
MipsSEISelLowering.cpp | 684 SDValue IfSet, IfClr, Cond; 689 // Op1Op0, or Op1Op1. Keep track of the Cond, IfSet, and IfClr nodes, while 693 Cond = Op0Op0; 710 Cond = Op0Op1; 728 Cond = Op1Op0; 732 Cond = Op1Op0; 736 Cond = Op1Op1; 740 Cond = Op1Op1; 744 Cond = Op0Op0; 748 Cond = Op0Op0 [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineAndOrXor.cpp | [all...] |