Home
last modified time | relevance | path

Searched refs:Rem (Results 1 – 13 of 13) sorted by relevance

/external/bison/djgpp/
Ddjunpack.bat2 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 …]
Dconfig.bat2 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/
DIndVarSimplify.cpp141 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/
DInstCombineMulDivRem.cpp205 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()
DInstCombineSimplifyDemanded.cpp686 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()
DInstCombineShifts.cpp46 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/
DSystemZISelDAGToDAG.cpp671 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/
DStmtVisitor.h123 BINOP_FALLBACK(Mul) BINOP_FALLBACK(Div) BINOP_FALLBACK(Rem) in BINOP_FALLBACK()
DRecursiveASTVisitor.h50 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) \
64 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \
/external/llvm/lib/Analysis/
DValueTracking.cpp468 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/
DCGExprScalar.cpp470 HANDLEBINOP(Rem)
2717 COMPOUND_OP(Rem); in EmitCompoundAssignmentLValue()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1988 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()
DLegalizeDAG.cpp2400 SDValue Rem = DAG.getLoad(RetVT, dl, getLastCALLSEQ(), FIPtr, in ExpandDivRemLibCall() local
2403 Results.push_back(Rem); in ExpandDivRemLibCall()