Home
last modified time | relevance | path

Searched refs:Mask2 (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsExpandPseudo.cpp106 Register Mask2 = I->getOperand(4).getReg(); in expandAtomicCmpSwapSubword() local
159 .addReg(Mask2); in expandAtomicCmpSwapSubword()
414 Register Mask2 = I->getOperand(4).getReg(); in expandAtomicBinOpSubword() local
534 .addReg(OldVal).addReg(Mask2); in expandAtomicBinOpSubword()
H A DMipsISelLowering.cpp1663 Register Mask2 = RegInfo.createVirtualRegister(RC); in emitAtomicBinaryPartword() local
1795 BuildMI(BB, DL, TII->get(Mips::NOR), Mask2).addReg(Mips::ZERO).addReg(Mask); in emitAtomicBinaryPartword()
1809 .addReg(Mask2) in emitAtomicBinaryPartword()
1912 Register Mask2 = RegInfo.createVirtualRegister(RC); in emitAtomicCmpSwapPartword() local
1982 BuildMI(BB, DL, TII->get(Mips::NOR), Mask2).addReg(Mips::ZERO).addReg(Mask); in emitAtomicCmpSwapPartword()
2001 .addReg(Mask2) in emitAtomicCmpSwapPartword()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMSystemRegister.td45 // Mask1 Mask2 Mask3 Enc12, Name
H A DARMISelLowering.cpp5791 SDValue Mask2 = DAG.getConstant(0x7fffffff, dl, MVT::i32); in LowerFCOPYSIGN() local
5795 DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2); in LowerFCOPYSIGN()
5804 SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2); in LowerFCOPYSIGN()
13536 unsigned Mask2 = N11C->getZExtValue(); in PerformORCombineToBFI() local
13541 (Mask == ~Mask2)) { in PerformORCombineToBFI()
13548 unsigned amt = countTrailingZeros(Mask2); in PerformORCombineToBFI()
13558 (~Mask == Mask2)) { in PerformORCombineToBFI()
13562 (Mask2 == 0xffff || Mask2 == 0xffff0000)) in PerformORCombineToBFI()
13569 DAG.getConstant(Mask2, DL, MVT::i32)); in PerformORCombineToBFI()
13892 unsigned Mask2 = N11C->getZExtValue(); in PerformBFICombine() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp711 APInt Mask2 = LowBits | APInt::getSignMask(BitWidth); in SimplifyDemandedUseBits() local
712 if (SimplifyDemandedBits(I, 0, Mask2, LHSKnown, Depth + 1)) in SimplifyDemandedUseBits()
H A DInstCombineCompares.cpp3123 APInt Mask2 = IsTrailing in foldICmpEqIntrinsicWithConstant() local
3128 ConstantInt::get(Ty, Mask2)); in foldICmpEqIntrinsicWithConstant()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2258 SmallVector<Constant *, 8> Mask2; in insertVector() local
2259 Mask2.reserve(cast<FixedVectorType>(VecTy)->getNumElements()); in insertVector()
2261 Mask2.push_back(IRB.getInt1(i >= BeginIndex && i < EndIndex)); in insertVector()
2263 V = IRB.CreateSelect(ConstantVector::get(Mask2), V, Old, Name + "blend"); in insertVector()