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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 158 APInt &DemandedLHS, APInt &DemandedRHS) {
167 DemandedLHS = DemandedRHS = APInt::getNullValue(NumElts);
172 DemandedLHS.setBit(0);
186 DemandedLHS.setBit(M % NumElts);
1662 APInt DemandedLHS, DemandedRHS;
1663 if (!getShuffleDemandedElts(Shuf, DemandedElts, DemandedLHS, DemandedRHS)) {
1669 if (!!DemandedLHS) {
1671 computeKnownBits(LHS, DemandedLHS, Known, Depth + 1, Q);
3107 APInt DemandedLHS, DemandedRHS;
3110 if (!getShuffleDemandedElts(Shuf, DemandedElts, DemandedLHS, DemandedRHS)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 1418 APInt DemandedLHS(DemandedElts), DemandedRHS(DemandedElts);
1430 DemandedLHS.clearBit(i);
1436 simplifyAndSetOp(I, 1, DemandedLHS, UndefElts2);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 1131 APInt DemandedLHS(NumElts, 0);
1140 DemandedLHS.clearAllBits();
1146 DemandedLHS.setBit(M);
1151 if (!!DemandedLHS || !!DemandedRHS) {
1157 if (!!DemandedLHS) {
1158 if (SimplifyDemandedBits(Op0, DemandedBits, DemandedLHS, Known2, TLO,
1172 Op0, DemandedBits, DemandedLHS, TLO.DAG, Depth + 1);
2688 APInt DemandedLHS(DemandedElts);
2692 if (SimplifyDemandedVectorElts(Op.getOperand(1), DemandedLHS, UndefLHS,
2707 APInt DemandedLHS(NumElts, 0)
    [all...]
SelectionDAG.cpp 2815 APInt DemandedLHS(NumElts, 0), DemandedRHS(NumElts, 0);
2828 DemandedLHS.clearAllBits();
2834 DemandedLHS.setBit((unsigned)M % NumElts);
2839 if (!!DemandedLHS) {
2841 Known2 = computeKnownBits(LHS, DemandedLHS, Depth + 1);
3727 APInt DemandedLHS(NumElts, 0), DemandedRHS(NumElts, 0);
3739 DemandedLHS.setBit((unsigned)M % NumElts);
3744 if (!!DemandedLHS)
3745 Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedLHS, Depth + 1);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 2805 SDValue DemandedLHS = TLI.SimplifyMultipleUseDemandedBits(LHS, Demanded, DAG);
2807 if (DemandedLHS || DemandedRHS)
2809 DemandedLHS ? DemandedLHS : LHS,
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 6915 APInt &DemandedLHS, APInt &DemandedRHS) {
6922 DemandedLHS = APInt::getNullValue(NumInnerElts);
6931 DemandedLHS.setBit(InnerIdx);
6940 APInt &DemandedLHS, APInt &DemandedRHS) {
6946 DemandedLHS = APInt::getNullValue(NumElts);
6956 DemandedLHS.setBit(LaneIdx + 2 * LocalIdx + 0);
6957 DemandedLHS.setBit(LaneIdx + 2 * LocalIdx + 1);
    [all...]

Completed in 97 milliseconds