HomeSort by relevance Sort by last modified time
    Searched refs:SRem (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 30 /// should be pointing where the caller wants code generated, e.g. at the srem
57 // ; %srem = sub i32 %xored, %dividend_sgn
66 Value *SRem = Builder.CreateSub(Xored, DividendSign);
71 return SRem;
377 assert((Rem->getOpcode() == Instruction::SRem ||
393 if (Rem->getOpcode() == Instruction::SRem) {
490 assert((Rem->getOpcode() == Instruction::SRem ||
516 if (Rem->getOpcode() == Instruction::SRem) {
540 assert((Rem->getOpcode() == Instruction::SRem ||
566 if (Rem->getOpcode() == Instruction::SRem) {
    [all...]
BypassSlowDivision.cpp 234 bool UseRemOp = Opcode == Instruction::SRem || Opcode == Instruction::URem;
236 Opcode == Instruction::SRem;
SimplifyIndVar.cpp 246 bool IsSigned = Rem->getOpcode() == Instruction::SRem;
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 83 TEST(IntegerDivision, SRem) {
102 EXPECT_TRUE(BB->front().getOpcode() == Instruction::SRem);
223 EXPECT_TRUE(BB->front().getOpcode() == Instruction::SRem);
  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 166 case Instruction::SRem:
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 96 case Instruction::SRem:
  /external/lldb/source/Expression/
IRInterpreter.cpp 517 case Instruction::SRem:
622 case Instruction::SRem:
689 case Instruction::SRem:
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstCombineVectorOps.cpp 620 case Instruction::SRem:
683 case Instruction::SRem:
783 case Instruction::SRem:
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
  /external/llvm/lib/Analysis/
CostModel.cpp 406 case Instruction::SRem:
InstructionSimplify.cpp     [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/IR/
Instruction.cpp 206 case SRem: return "srem";
ConstantFold.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 92 case Instruction::SRem:
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 387 J->getOpcode() == Instruction::SRem)) {
  /external/llvm/lib/Transforms/ObjCARC/
ARCInstKind.cpp 274 case Instruction::SRem:
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 879 case Instruction::SRem: Out << "getSRem("; break;
    [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 494 inline BinaryOp_match<LHS, RHS, Instruction::SRem> m_SRem(const LHS &L,
496 return BinaryOp_match<LHS, RHS, Instruction::SRem>(L, R);
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 767 case Instruction::SRem:
785 case Instruction::SRem:GV.IntVal = LHS.IntVal.srem(RHS.IntVal); break;
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 705 INSTKEYWORD(urem, URem); INSTKEYWORD(srem, SRem); INSTKEYWORD(frem, FRem);
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 347 case 5:{Op = (isFloat?Instruction::FRem : Instruction::SRem); break; }
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]

Completed in 521 milliseconds

1 2 3