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

  /external/llvm/include/llvm/Analysis/
ValueTracking.h 116 /// ComputeNumSignBits - Return the number of times the sign bit of the
124 unsigned ComputeNumSignBits(Value *Op, const DataLayout &DL,
  /external/llvm/lib/Analysis/
ValueTracking.cpp 218 static unsigned ComputeNumSignBits(Value *V, const DataLayout &DL,
221 unsigned llvm::ComputeNumSignBits(Value *V, const DataLayout &DL,
225 return ::ComputeNumSignBits(V, DL, Depth, Query(AC, safeCxtI(V, CxtI), DT));
    [all...]
InstructionSimplify.cpp     [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 481 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0,
483 return llvm::ComputeNumSignBits(Op, DL, Depth, AC, CxtI, DT);
InstCombineAddSub.cpp 912 if (ComputeNumSignBits(LHS, 0, &CxtI) > 1 &&
913 ComputeNumSignBits(RHS, 0, &CxtI) > 1)
949 if (ComputeNumSignBits(LHS, 0, &CxtI) > 1 &&
950 ComputeNumSignBits(RHS, 0, &CxtI) > 1)
    [all...]
InstCombineMulDivRem.cpp 148 ComputeNumSignBits(LHS, 0, &CxtI) + ComputeNumSignBits(RHS, 0, &CxtI);
    [all...]
InstCombineShifts.cpp 721 ComputeNumSignBits(I.getOperand(0), 0, &I) > ShAmt) {
    [all...]
InstCombineCasts.cpp     [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
TargetLowering.cpp     [all...]
DAGCombiner.cpp     [all...]
SelectionDAGISel.cpp 703 unsigned NumSignBits = CurDAG->ComputeNumSignBits(Src);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 686 unsigned LHSSB = DAG.ComputeNumSignBits(Mul.getOperand(0));
687 unsigned RHSSB = DAG.ComputeNumSignBits(Mul.getOperand(1));
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]

Completed in 803 milliseconds