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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 38 /// Compute Result = In1+In2, returning true if the result overflowed for this
40 static bool addWithOverflow(APInt &Result, const APInt &In1,
44 Result = In1.sadd_ov(In2, Overflow);
46 Result = In1.uadd_ov(In2, Overflow);
51 /// Compute Result = In1-In2, returning true if the result overflowed for this
53 static bool subWithOverflow(APInt &Result, const APInt &In1,
57 Result = In1.ssub_ov(In2, Overflow);
59 Result = In1.usub_ov(In2, Overflow);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 6727 SDValue In1 = Op.getOperand(0);
6743 DAG.getUNDEF(VecVT), In1);
6747 VecVal1 = DAG.getNode(ISD::BITCAST, DL, VecVT, In1);

Completed in 65 milliseconds