Searched refs:ShiftBits (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp519 unsigned ShiftBits = getPPCRegisterNumbering(SrcReg)*4; local
520 // rlwinm scratch, scratch, ShiftBits, 0, 31.
523 .addReg(ScratchReg).addImm(ShiftBits)
662 unsigned ShiftBits = getPPCRegisterNumbering(DestReg)*4; local
663 // rlwinm r11, r11, 32-ShiftBits, 0, 31.
665 .addReg(ScratchReg).addImm(32-ShiftBits).addImm(0)
H A DPPCRegisterInfo.cpp423 // rlwinm rA, rA, ShiftBits, 0, 31.
466 unsigned ShiftBits = getPPCRegisterNumbering(DestReg)*4; local
467 // rlwinm r11, r11, 32-ShiftBits, 0, 31.
469 .addReg(Reg).addImm(32-ShiftBits).addImm(0)
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp347 if (unsigned ShiftBits = 64-TD->getPointerSizeInBits()) {
348 Scale <<= ShiftBits; local
349 Scale = (int64_t)Scale >> ShiftBits;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2334 unsigned ShiftBits = AndRHSC.countTrailingZeros(); local
2339 DAG.getConstant(ShiftBits, ShiftTy));
2340 SDValue CmpRHS = DAG.getConstant(C1.lshr(ShiftBits), CmpTy);
2351 unsigned ShiftBits; local
2355 ShiftBits = C1.countTrailingOnes();
2359 ShiftBits = C1.countTrailingZeros();
2361 NewC = NewC.lshr(ShiftBits);
2362 if (ShiftBits && isLegalICmpImmediate(NewC.getSExtValue())) {
2367 DAG.getConstant(ShiftBits, ShiftTy));

Completed in 328 milliseconds