HomeSort by relevance Sort by last modified time
    Searched full:sdiv (Results 126 - 150 of 235) sorted by null

1 2 3 4 56 7 8 910

  /external/llvm/utils/vim/
llvm.vim 32 syn keyword llvmStatement ret sdiv select sext sge sgt shl shufflevector sitofp
  /external/llvm/include/llvm/Support/
PatternMatch.h 436 inline BinaryOp_match<LHS, RHS, Instruction::SDiv>
438 return BinaryOp_match<LHS, RHS, Instruction::SDiv>(L, R);
539 /// m_IDiv - Matches UDiv and SDiv.
541 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>
543 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R);
  /external/llvm/lib/Analysis/
CostModel.cpp 113 case Instruction::SDiv:
InstructionSimplify.cpp     [all...]
  /external/llvm/test/CodeGen/X86/
early-ifcvt.ll 154 %3 = sdiv i32 %a, %b
fast-isel-x86-64.ll 125 %Y = sdiv exact i32 %X, 8
crash.ll 88 %7 = sdiv i32 %6, -256 ; <i32> [#uses=1]
138 %div.i = sdiv i32 115200, 0
  /external/llvm/test/Other/
lint.ll 37 %sd = sdiv i32 2, 0
  /external/llvm/utils/kate/
llvm.xml 128 <item> sdiv </item>
  /external/llvm/lib/AsmParser/
LLLexer.cpp 426 /// Keyword sdiv, float, ...
641 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 15 // ISD::SDIV of type v2i64 on x86-32. The type is legal (for example, addition
16 // on a v2i64 is legal), but ISD::SDIV isn't legal, so we have to unroll the
196 case ISD::SDIV:
SelectionDAGDumper.cpp 161 case ISD::SDIV: return "sdiv";
  /external/llvm/test/Transforms/InstCombine/
icmp.ll 220 %i3 = sdiv i32 %x, -1328634635
463 %A = sdiv exact i32 %X, %Z
464 %B = sdiv exact i32 %Y, %Z
  /external/clang/test/CodeGen/
vla.c 141 // CHECK-NEXT: [[T7:%.*]] = sdiv exact i32 [[T4]], [[T6]]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 206 case Instruction::SDiv: case Instruction::UDiv: case Instruction::FDiv:
  /external/llvm/test/CodeGen/Generic/
print-arith-int.ll 35 %div_r = sdiv i32 %b, %a ; <i32> [#uses=1]
  /external/llvm/test/Transforms/ConstProp/
constant-expr.ll 14 @D = global i1 sdiv (i1 icmp ult (i8* @X, i8* @Y), i1 icmp ult (i8* @X, i8* @Z))
  /external/llvm/test/Transforms/Inline/
inline_constprop.ll 4 %C = sdiv i32 %A, %B
  /external/llvm/utils/
llvm.grm 59 udiv | OptExact sdiv | fdiv | urem | srem | frem ;
  /external/llvm/lib/IR/
Instruction.cpp 205 case SDiv: return "sdiv";
ConstantFold.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDILISelLowering.cpp 113 setOperationAction(ISD::SDIV, VT, Custom);
169 setOperationAction(ISD::SDIV, MVT::v2i64, Expand);
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 695 case Instruction::SDiv:
713 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 67 /// of the operation. For example, sdiv and udiv. However, because the bit
813 APInt sdiv(const APInt &RHS) const;
    [all...]
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 90 /// SimplifySDivInst - Given operands for an SDiv, see if we can

Completed in 571 milliseconds

1 2 3 4 56 7 8 910