Searched defs:BitImm (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp1449 APInt BitImm = APInt(64, 1) << CImm->getAPIntValue(); local
1451 SDValue BitImmHiOp = DAG.getConstant(BitImm.lshr(32).trunc(32), MVT::i32);
1452 SDValue BitImmLoOp = DAG.getConstant(BitImm.trunc(32), MVT::i32);
1494 APInt BitImm = APInt(ResTy.getVectorElementType().getSizeInBits(), 1) local
1496 SDValue BitMask = DAG.getConstant(~BitImm, ResTy);

Completed in 131 milliseconds