Searched refs:Rem (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Transforms/Utils/
H A DIntegerDivision.h26 /// Generate code to calculate the remainder of two integers, replacing Rem
33 /// @brief Replace Rem with generated code.
34 bool expandRemainder(BinaryOperator *Rem);
/macosx-10.9.5/gpatch-3/patch/pc/djgpp/
H A Dconfigure.bat2 Rem Configure patch for DJGPP v2.
3 Rem $Id: configure.bat,v 1.4 1997/06/17 06:52:12 eggert Exp $
5 Rem The DOS shell has fixed-size environment storage.
6 Rem When the environment is full, the shell prints
7 Rem "Out of environment space" and truncates the string at will.
8 Rem Since people often ignore these messages,
9 Rem test whether the environment variable got the correct value.
11 Rem Where is our source directory?
17 Rem Create Makefile
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp76 void eliminateIVRemainder(BinaryOperator *Rem, Value *IVOperand,
185 void SimplifyIndvar::eliminateIVRemainder(BinaryOperator *Rem, argument
190 if (IVOperand != Rem->getOperand(0))
194 const SCEV *S = SE->getSCEV(Rem->getOperand(0));
195 const SCEV *X = SE->getSCEV(Rem->getOperand(1));
198 const Loop *ICmpLoop = LI->getLoopFor(Rem->getParent());
206 Rem->replaceAllUsesWith(Rem->getOperand(0));
219 ICmpInst *ICmp = new ICmpInst(Rem, ICmpInst::ICMP_EQ,
220 Rem
[all...]
H A DIntegerDivision.cpp326 /// Generate code to calculate the remainder of two integers, replacing Rem with
333 /// @brief Replace Rem with generated code.
334 bool llvm::expandRemainder(BinaryOperator *Rem) { argument
335 assert((Rem->getOpcode() == Instruction::SRem ||
336 Rem->getOpcode() == Instruction::URem) &&
339 IRBuilder<> Builder(Rem);
342 if (Rem->getOpcode() == Instruction::SRem) {
343 Value *Remainder = generateSignedRemainderCode(Rem->getOperand(0),
344 Rem->getOperand(1), Builder);
346 Rem
[all...]
/macosx-10.9.5/gnudiff-19/diffutils/ms/
H A Dconfig.bat5 Rem Copyright (C) 2001 Free Software Foundation, Inc.
7 Rem This program is free software; you can redistribute it and/or modify
8 Rem it under the terms of the GNU General Public License as published by
9 Rem the Free Software Foundation; either version 2, or (at your option)
10 Rem any later version.
12 Rem This program is distributed in the hope that it will be useful,
13 Rem but WITHOUT ANY WARRANTY; without even the implied warranty of
14 Rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 Rem GNU General Public License for more details.
17 Rem Yo
[all...]
/macosx-10.9.5/groff-38/groff/arch/djgpp/
H A Dconfig.bat4 Rem The SmallEnv tests protect against fixed and too small size
5 Rem of the environment in stock DOS shell.
7 Rem Find out where the sources are
17 Rem Update configuration files
23 Rem Make sure they have a config.site file
27 Rem This is required because DOS/Windows are case-insensitive
28 Rem to file names, and "make install" will do nothing if Make
29 Rem finds a file called `install'.
32 Rem Set HOSTNAME so it shows in config.status
62 Rem instal
[all...]
H A Dt-groff.bat2 Rem This script runs groff without requiring that it be installed.
3 Rem The current directory must be the build directory.
15 Rem chdir to src, to avoid overflowing the DOS limits with a long PATH.
21 Rem
25 Rem Make the following command pipe to Less if you have Less installed:
27 Rem
32 Rem Uncomment the following command if you have a PostScript printer:
34 Rem
39 Rem Uncomment the following command if you have a LaserJet4 printer:
41 Rem
[all...]
/macosx-10.9.5/libiconv-41/libiconv/libcharset/djgpp/
H A Dconfig.bat3 Rem The SmallEnv tests protect against fixed and too small size
4 Rem of the environment in stock DOS shell.
6 Rem Find out if NLS is wanted or not,
7 Rem if dependency-tracking is wanted or not,
8 Rem if caching is wanted or not
9 Rem and where the sources are.
10 Rem We always default to NLS support,
11 Rem no dependency tracking
12 Rem and to in place configuration.
29 Rem Loo
[all...]
/macosx-10.9.5/libiconv-41/libiconv/djgpp/
H A Dconfig.bat2 Rem Configure libiconv 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.
8 Rem The SmallEnv tests protect against fixed and too small size
9 Rem of the environment in stock DOS shell.
11 Rem Find out if NLS is wanted or not,
12 Rem if dependency-tracking is wanted or not,
13 Rem if caching is wanted or not
14 Rem and where the sources are.
15 Rem W
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/unittests/Transforms/Utils/
H A DIntegerDivision.cpp100 Value *Rem = Builder.CreateSRem(A, B); local
103 Value *Ret = Builder.CreateRet(Rem);
105 expandRemainder(cast<BinaryOperator>(Rem));
130 Value *Rem = Builder.CreateURem(A, B); local
133 Value *Ret = Builder.CreateRet(Rem);
135 expandRemainder(cast<BinaryOperator>(Rem));
/macosx-10.9.5/emacs-92/emacs/nt/
H A Dconfigure.bat247 Rem WARNING -- COMMAND.COM on some systems only looks at the first
248 Rem 8 characters of a label. So do NOT be tempted to change
249 Rem chkapi* into something fancier like checkw32api
250 Rem You HAVE been warned!
307 Rem It is not clear what GCC version began supporting -mtune
308 Rem and pentium4 on x86, so check this explicitly.
493 Rem See if fc.exe returns a meaningful exit status. If it does, we
494 Rem might as well avoid unnecessary overwriting of config.h and epaths.h,
495 Rem since this forces recompilation of every source file.
522 Rem Som
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp205 Value *Rem; local
207 Rem = Builder->CreateURem(Op0BO, Op1BO);
209 Rem = Builder->CreateSRem(Op0BO, Op1BO);
210 Rem->takeName(BO);
213 return BinaryOperator::CreateSub(Op0BO, Rem);
214 return BinaryOperator::CreateSub(Rem, Op0BO);
H A DInstCombineSimplifyDemanded.cpp691 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
694 if (Rem->isAllOnesValue())
696 APInt RA = Rem->getValue().abs();
H A DInstCombineShifts.cpp47 Value *Rem = Builder->CreateAnd(A, ConstantInt::get(I.getType(), *B-1), local
49 I.setOperand(1, Rem);
/macosx-10.9.5/emacs-92/emacs/
H A Dconfig.bat140 Rem ----------------------------------------------------------------------
161 Rem See if DECL_ALIGN can be supported with this GCC
250 Rem The two variants for the line below is for when the shell
251 Rem supports long file names but DJGPP does not
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DValueTracking.cpp535 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
536 APInt RA = Rem->getValue().abs();
572 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
573 APInt RA = Rem->getValue();
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dvb.vim226 syn keyword vbStatement RaiseEvent Randomize ReDim Redim Rem Reset Resume
H A Dmaple.vim240 syn keyword mvLibrary Factor Rem coth igcdex piecewise sturm
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2068 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2069 const APInt &RA = Rem->getAPIntValue().abs();
2093 if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2094 const APInt &RA = Rem->getAPIntValue();
H A DLegalizeDAG.cpp2088 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
2091 Results.push_back(Rem);

Completed in 319 milliseconds