/external/bison/djgpp/ |
D | djunpack.bat | 2 Rem 3 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line 4 Rem format, or else stock DOS/Windows shells will refuse to run it. 5 Rem 6 Rem This batch file unpacks the Bison distribution while simultaneously 7 Rem renaming some of the files whose names are invalid on DOS or conflict 8 Rem with other file names after truncation to DOS 8+3 namespace. 9 Rem 10 Rem Copyright (C) 2005, 2006 Free Software Foundation, Inc. 11 Rem [all …]
|
D | config.bat | 2 Rem Configure Bison for DJGPP. 4 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line 5 Rem format, or else stock DOS/Windows shells will refuse to run it. 7 Rem Copyright (C) 2005, 2006 Free Software Foundation, Inc. 9 Rem This program is free software; you can redistribute it and/or modify 10 Rem it under the terms of the GNU General Public License as published by 11 Rem the Free Software Foundation; either version 2, or (at your option) 12 Rem any later version. 14 Rem This program is distributed in the hope that it will be useful, 15 Rem but WITHOUT ANY WARRANTY; without even the implied warranty of [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | IndVarSimplify.cpp | 141 void EliminateIVRemainder(BinaryOperator *Rem, 643 if (BinaryOperator *Rem = dyn_cast<BinaryOperator>(UseInst)) { in SimplifyIVUsers() local 644 bool IsSigned = Rem->getOpcode() == Instruction::SRem; in SimplifyIVUsers() 645 if (IsSigned || Rem->getOpcode() == Instruction::URem) { in SimplifyIVUsers() 646 EliminateIVRemainder(Rem, IVOperand, IsSigned); in SimplifyIVUsers() 1215 void IndVarSimplify::EliminateIVRemainder(BinaryOperator *Rem, in EliminateIVRemainder() argument 1220 if (IVOperand != Rem->getOperand(0)) in EliminateIVRemainder() 1224 const SCEV *S = SE->getSCEV(Rem->getOperand(0)); in EliminateIVRemainder() 1225 const SCEV *X = SE->getSCEV(Rem->getOperand(1)); in EliminateIVRemainder() 1228 const Loop *ICmpLoop = LI->getLoopFor(Rem->getParent()); in EliminateIVRemainder() [all …]
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 205 Value *Rem; in visitMul() local 207 Rem = Builder->CreateURem(Op0BO, Op1BO); in visitMul() 209 Rem = Builder->CreateSRem(Op0BO, Op1BO); in visitMul() 210 Rem->takeName(BO); in visitMul() 213 return BinaryOperator::CreateSub(Op0BO, Rem); in visitMul() 214 return BinaryOperator::CreateSub(Rem, Op0BO); in visitMul()
|
D | InstCombineSimplifyDemanded.cpp | 686 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) { in SimplifyDemandedUseBits() local 689 if (Rem->isAllOnesValue()) in SimplifyDemandedUseBits() 691 APInt RA = Rem->getValue().abs(); in SimplifyDemandedUseBits()
|
D | InstCombineShifts.cpp | 46 Value *Rem = Builder->CreateAnd(A, ConstantInt::get(I.getType(), *B-1), in commonShiftTransforms() local 48 I.setOperand(1, Rem); in commonShiftTransforms()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelDAGToDAG.cpp | 671 SDNode *Rem = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG, in Select() local 677 ReplaceUses(SDValue(Node, 1), SDValue(Rem, 0)); in Select() 755 SDNode *Rem = CurDAG->getMachineNode(TargetOpcode::EXTRACT_SUBREG, in Select() local 760 ReplaceUses(SDValue(Node, 1), SDValue(Rem, 0)); in Select()
|
/external/clang/include/clang/AST/ |
D | StmtVisitor.h | 123 BINOP_FALLBACK(Mul) BINOP_FALLBACK(Div) BINOP_FALLBACK(Rem) in BINOP_FALLBACK()
|
D | RecursiveASTVisitor.h | 50 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) \ 64 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \
|
/external/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 468 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) { in ComputeMaskedBits() local 469 APInt RA = Rem->getValue().abs(); in ComputeMaskedBits() 511 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) { in ComputeMaskedBits() local 512 APInt RA = Rem->getValue(); in ComputeMaskedBits()
|
/external/clang/lib/CodeGen/ |
D | CGExprScalar.cpp | 470 HANDLEBINOP(Rem) 2717 COMPOUND_OP(Rem); in EmitCompoundAssignmentLValue()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1988 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { in ComputeMaskedBits() local 1989 const APInt &RA = Rem->getAPIntValue().abs(); in ComputeMaskedBits() 2017 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { in ComputeMaskedBits() local 2018 const APInt &RA = Rem->getAPIntValue(); in ComputeMaskedBits()
|
D | LegalizeDAG.cpp | 2400 SDValue Rem = DAG.getLoad(RetVT, dl, getLastCALLSEQ(), FIPtr, in ExpandDivRemLibCall() local 2403 Results.push_back(Rem); in ExpandDivRemLibCall()
|