HomeSort by: relevance | last modified time | path
    Searched defs:IsDiv (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsInstructionSelector.cpp 514 bool IsDiv = I.getOpcode() == G_UDIV || I.getOpcode() == G_SDIV;
526 TII.get(IsDiv ? Mips::PseudoMFLO : Mips::PseudoMFHI))
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUCodeGenPrepare.cpp 173 bool IsDiv, bool IsSigned) const;
177 bool IsDiv, bool IsSigned) const;
860 bool IsDiv, bool IsSigned) const {
864 return expandDivRem24Impl(Builder, I, Num, Den, DivBits, IsDiv, IsSigned);
871 bool IsDiv, bool IsSigned) const {
944 if (!IsDiv) {
1027 bool IsDiv = Opc == Instruction::UDiv || Opc == Instruction::SDiv;
1044 if (Value *Res = expandDivRem24(Builder, I, X, Y, IsDiv, IsSigned)) {
1057 Sign = IsDiv ? Builder.CreateXor(SignX, SignY) : SignX;
1116 if (IsDiv)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 4074 bool IsDiv = (ISD::SDIV == Opc) || (ISD::UDIV == Opc);
4099 return DAG.getConstant(IsDiv ? 1 : 0, DL, VT);
4108 return IsDiv ? N0 : DAG.getConstant(0, DL, VT);

Completed in 33 milliseconds