Home
last modified time | relevance | path

Searched defs:Rem (Results 1 – 25 of 61) sorted by relevance

123

/external/llvm-project/llvm/unittests/Transforms/Utils/
DIntegerDivisionTest.cpp100 Value *Rem = Builder.CreateSRem(A, B); in TEST() local
130 Value *Rem = Builder.CreateURem(A, B); in TEST() local
221 Value *Rem = Builder.CreateSRem(A, B); in TEST() local
251 Value *Rem = Builder.CreateURem(A, B); in TEST() local
/external/llvm/unittests/Transforms/Utils/
DIntegerDivision.cpp101 Value *Rem = Builder.CreateSRem(A, B); in TEST() local
131 Value *Rem = Builder.CreateURem(A, B); in TEST() local
222 Value *Rem = Builder.CreateSRem(A, B); in TEST() local
252 Value *Rem = Builder.CreateURem(A, B); in TEST() local
/external/llvm-project/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp375 bool llvm::expandRemainder(BinaryOperator *Rem) { in expandRemainder()
485 bool llvm::expandRemainderUpTo32Bits(BinaryOperator *Rem) { in expandRemainderUpTo32Bits()
534 bool llvm::expandRemainderUpTo64Bits(BinaryOperator *Rem) { in expandRemainderUpTo64Bits()
DSimplifyIndVar.cpp322 void SimplifyIndvar::replaceSRemWithURem(BinaryOperator *Rem) { in replaceSRemWithURem()
334 void SimplifyIndvar::replaceRemWithNumerator(BinaryOperator *Rem) { in replaceRemWithNumerator()
343 void SimplifyIndvar::replaceRemWithNumeratorOrZero(BinaryOperator *Rem) { in replaceRemWithNumeratorOrZero()
358 void SimplifyIndvar::simplifyIVRemainder(BinaryOperator *Rem, Value *IVOperand, in simplifyIVRemainder()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp375 bool llvm::expandRemainder(BinaryOperator *Rem) { in expandRemainder()
485 bool llvm::expandRemainderUpTo32Bits(BinaryOperator *Rem) { in expandRemainderUpTo32Bits()
534 bool llvm::expandRemainderUpTo64Bits(BinaryOperator *Rem) { in expandRemainderUpTo64Bits()
DSimplifyIndVar.cpp320 void SimplifyIndvar::replaceSRemWithURem(BinaryOperator *Rem) { in replaceSRemWithURem()
332 void SimplifyIndvar::replaceRemWithNumerator(BinaryOperator *Rem) { in replaceRemWithNumerator()
341 void SimplifyIndvar::replaceRemWithNumeratorOrZero(BinaryOperator *Rem) { in replaceRemWithNumeratorOrZero()
356 void SimplifyIndvar::simplifyIVRemainder(BinaryOperator *Rem, Value *IVOperand, in simplifyIVRemainder()
/external/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp376 bool llvm::expandRemainder(BinaryOperator *Rem) { in expandRemainder()
486 bool llvm::expandRemainderUpTo32Bits(BinaryOperator *Rem) { in expandRemainderUpTo32Bits()
535 bool llvm::expandRemainderUpTo64Bits(BinaryOperator *Rem) { in expandRemainderUpTo64Bits()
DSimplifyIndVar.cpp270 void SimplifyIndvar::eliminateIVRemainder(BinaryOperator *Rem, in eliminateIVRemainder()
429 if (BinaryOperator *Rem = dyn_cast<BinaryOperator>(UseInst)) { in eliminateIVUser() local
/external/llvm-project/llvm/lib/Support/
DBranchProbability.cpp91 uint64_t Rem = (uint64_t(Upper32) << 32) | Mid32; in scale() local
DAPFixedPoint.cpp305 APInt Rem; in div() local
DAPInt.cpp2824 APInt Quo, Rem; in RoundingUDiv() local
2839 APInt Quo, Rem; in RoundingSDiv() local
3005 APInt Rem; in SolveQuadraticEquationWrap() local
/external/llvm/lib/Support/
DBranchProbability.cpp93 uint64_t Rem = (uint64_t(Upper32) << 32) | Mid32; in scale() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DBranchProbability.cpp91 uint64_t Rem = (uint64_t(Upper32) << 32) | Mid32; in scale() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUPrintfRuntimeBinding.cpp261 size_t Rem = SizeStr % DWORD_ALIGN; in lowerPrintfForGpu() local
449 size_t Rem = SizeStr % DWORD_ALIGN; in lowerPrintfForGpu() local
DAMDGPUCodeGenPrepare.cpp724 Value *Rem = Builder.CreateMul(Div, Den); in expandDivRem24() local
870 Value *Rem = Builder.CreateSelect(Tmp1_0_CC, Remainder, Remainder_S_Den); in expandDivRem32() local
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUPrintfRuntimeBinding.cpp261 size_t Rem = SizeStr % DWORD_ALIGN; in lowerPrintfForGpu() local
442 size_t Rem = SizeStr % DWORD_ALIGN; in lowerPrintfForGpu() local
/external/llvm/lib/CodeGen/
DTargetSchedule.cpp41 unsigned Rem = Dividend % Divisor; in gcd() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetSchedule.cpp50 unsigned Rem = Dividend % Divisor; in gcd() local
/external/llvm-project/llvm/lib/CodeGen/
DTargetSchedule.cpp50 unsigned Rem = Dividend % Divisor; in gcd() local
/external/llvm-project/llvm/include/llvm/CodeGen/
DMachineScheduler.h618 SchedRemainder *Rem = nullptr; variable
900 SchedRemainder Rem; variable
/external/llvm/include/llvm/CodeGen/
DMachineScheduler.h582 SchedRemainder *Rem; variable
863 SchedRemainder Rem; variable
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineScheduler.h615 SchedRemainder *Rem = nullptr; variable
897 SchedRemainder Rem; variable
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp674 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) { in SimplifyDemandedUseBits() local
DInstCombineShifts.cpp49 Value *Rem = Builder->CreateAnd(A, ConstantInt::get(I.getType(), *B-1), in commonShiftTransforms() local
/external/llvm/lib/MC/
DWinCOFFObjectWriter.cpp456 unsigned Rem = Value % 64; in encodeBase64StringEntry() local

123