HomeSort by relevance Sort by last modified time
    Searched refs:SignBit (Results 1 - 10 of 10) sorted by null

  /external/icu4c/layout/
LigatureSubstProc.cpp 20 #define SignBit(m) ((ExtendedComplement(m) >> 1) & (le_int32)(m))
21 #define SignExtend(v,m) (((v) & SignBit(m))? ((v) | ExtendedComplement(m)): (v))
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 186 SDValue SignBit = DAG.getNode(ISD::SHL, dl, RVT, DAG.getConstant(1, RVT),
189 SignBit = DAG.getNode(ISD::AND, dl, RVT, RHS, SignBit);
194 SignBit = DAG.getNode(ISD::SRL, dl, RVT, SignBit,
196 TLI.getShiftAmountTy(SignBit.getValueType())));
197 SignBit = DAG.getNode(ISD::TRUNCATE, dl, LVT, SignBit);
199 SignBit = DAG.getNode(ISD::ANY_EXTEND, dl, LVT, SignBit);
    [all...]
LegalizeDAG.cpp     [all...]
TargetLowering.cpp     [all...]
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 672 APInt SignBit(APInt::getSignBit(BitWidth));
674 SignBit = APIntOps::lshr(SignBit, ShiftAmt);
685 } else if ((KnownOne & SignBit) != 0) { // New bits are known one.
    [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Support/
APInt.cpp 1049 unsigned SignBit = APINT_BITS_PER_WORD - BitWidth;
1051 (((int64_t(VAL) << SignBit) >> SignBit) >> shiftAmt));
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 307 milliseconds