Searched defs:Inc (Results 1 - 14 of 14) sorted by relevance

/external/llvm/lib/Target/X86/
H A DX86AtomicExpandPass.cpp174 Value *Loaded, Value *Inc) {
178 return Inc;
180 return Builder.CreateAdd(Loaded, Inc, "new");
182 return Builder.CreateSub(Loaded, Inc, "new");
184 return Builder.CreateAnd(Loaded, Inc, "new");
186 return Builder.CreateNot(Builder.CreateAnd(Loaded, Inc), "new");
188 return Builder.CreateOr(Loaded, Inc, "new");
190 return Builder.CreateXor(Loaded, Inc, "new");
192 NewVal = Builder.CreateICmpSGT(Loaded, Inc);
193 return Builder.CreateSelect(NewVal, Loaded, Inc, "ne
173 performAtomicOp(AtomicRMWInst::BinOp Op, IRBuilder<> &Builder, Value *Loaded, Value *Inc) argument
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-compiler.cc12 // * Neither the name of Google Inc. nor the names of its
71 static double Inc(Isolate* isolate, int x) { function
85 TEST(Inc) {
88 CHECK_EQ(4.0, Inc(CcTest::i_isolate(), 3));
/external/clang/lib/Analysis/
H A DReachableCode.cpp596 const Expr *Inc = FS->getInc(); local
597 Loc = Inc->getLocStart();
598 R2 = Inc->getSourceRange();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp756 Value *Inc = Builder->CreateAdd(Op1, One); local
758 Inc, ConstantInt::get(I.getType(), 3));
/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp450 ConstantInt *Inc = dyn_cast<ConstantInt>(Inst->getOperand(1)); local
451 if (!Inc || !Inc->isOne())
H A DLoopRerollPass.cpp332 bool collectAllRoots(Loop *L, uint64_t Inc, uint64_t Scale, Instruction *IV,
610 bool LoopReroll::collectAllRoots(Loop *L, uint64_t Inc, uint64_t Scale, argument
632 } else if (Idx == Scale && Inc > 1) {
774 uint64_t Inc = cast<SCEVConstant>(RealIVSCEV->getOperand(1))-> local
778 uint64_t Scale = Inc;
788 if (Inc == 1 && !findScaleFromMul(RealIV, Scale, IV, LoopIncs))
797 if (!collectAllRoots(L, Inc, Scale, IV, Roots, AllRoots, LoopIncs))
1077 if (Inc == 1)
1095 if (Inc == 1)
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.h638 void increaseRegUnitWeight(unsigned RUID, unsigned Inc) { argument
639 getRegUnit(RUID).Weight += Inc;
/external/clang/lib/AST/
H A DStmt.cpp789 Expr *Cond, Expr *Inc, DeclStmt *LoopVar,
796 SubExprs[INC] = Inc;
852 Expr *Inc, Stmt *Body, SourceLocation FL, SourceLocation LP,
859 SubExprs[INC] = Inc;
788 CXXForRangeStmt(DeclStmt *Range, DeclStmt *BeginEndStmt, Expr *Cond, Expr *Inc, DeclStmt *LoopVar, Stmt *Body, SourceLocation FL, SourceLocation CL, SourceLocation RPL) argument
851 ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, Expr *Inc, Stmt *Body, SourceLocation FL, SourceLocation LP, SourceLocation RP) argument
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp1835 SDValue Inc = N->getOperand(AddrOpIdx + 1); local
1838 if ((NumVecs <= 2) && !isa<ConstantSDNode>(Inc.getNode()))
1843 !isa<ConstantSDNode>(Inc.getNode()))
1844 Ops.push_back(isa<ConstantSDNode>(Inc.getNode()) ? Reg0 : Inc);
1869 SDValue Inc = N->getOperand(AddrOpIdx + 1); local
1870 assert(isa<ConstantSDNode>(Inc.getNode()) &&
1872 (void)Inc;
1985 SDValue Inc = N->getOperand(AddrOpIdx + 1); local
1988 if (NumVecs <= 2 && !isa<ConstantSDNode>(Inc
2034 SDValue Inc = N->getOperand(AddrOpIdx + 1); local
2120 SDValue Inc = N->getOperand(AddrOpIdx + 1); local
2219 SDValue Inc = N->getOperand(2); local
[all...]
H A DARMISelLowering.cpp8906 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0); local
8907 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
8929 Ops.push_back(Inc);
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp5385 llvm::Value *Inc = llvm::ConstantInt::get(IntTy, TypeAlign - 1); local
5387 llvm::Value *Add = CGF.Builder.CreateAdd(AddrAsInt, Inc);
/external/clang/lib/Sema/
H A DSemaStmt.cpp1947 /*Inc=*/nullptr, DS, RParenLoc, Kind);
2092 Expr *Inc, Stmt *LoopVarDecl,
2109 ExprResult NotEqExpr = Cond, IncrExpr = Inc;
2090 BuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation ColonLoc, Stmt *RangeDecl, Stmt *BeginEnd, Expr *Cond, Expr *Inc, Stmt *LoopVarDecl, SourceLocation RParenLoc, BuildForRangeKind Kind) argument
H A DTreeTransform.h1167 VarDecl *CondVar, Sema::FullExprArg Inc,
1170 CondVar, Inc, RParenLoc, Body);
1598 Expr *Cond, Expr *Inc,
1619 Cond, Inc, LoopVar, RParenLoc,
5719 ExprResult Inc = getDerived().TransformExpr(S->getInc());
5720 if (Inc.isInvalid())
5723 Sema::FullExprArg FullInc(getSema().MakeFullDiscardedValueExpr(Inc.get()));
5735 Inc.get() == S->getInc() &&
6187 ExprResult Inc = getDerived().TransformExpr(S->getInc()); local
6188 if (Inc
1165 RebuildForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, Stmt *Init, Sema::FullExprArg Cond, VarDecl *CondVar, Sema::FullExprArg Inc, SourceLocation RParenLoc, Stmt *Body) argument
1595 RebuildCXXForRangeStmt(SourceLocation ForLoc, SourceLocation ColonLoc, Stmt *Range, Stmt *BeginEnd, Expr *Cond, Expr *Inc, Stmt *LoopVar, SourceLocation RParenLoc) argument
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp7412 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0); local
7413 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
7418 Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
7428 Ops.push_back(Inc);
7534 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0); local
7535 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
7542 Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
7551 Ops.push_back(Inc);

Completed in 4030 milliseconds