Searched refs:ShiftValue (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | Alignment.h | 79 ShiftValue = Log2_64(Value); in Align() 80 assert(ShiftValue < 64 && "Broken invariant"); in Align() 89 assert(ShiftValue != 0 && "Undefined operation"); in previous() 91 Out.ShiftValue = ShiftValue - 1; in previous() 225 Out.ShiftValue = Value - 1; in decodeMaybeAlign() 261 return Lhs.ShiftValue == Rhs.ShiftValue; 264 return Lhs.ShiftValue != Rhs.ShiftValue; 267 return Lhs.ShiftValue <= Rhs.ShiftValue; 270 return Lhs.ShiftValue >= Rhs.ShiftValue; 273 return Lhs.ShiftValue < Rhs.ShiftValue; [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/SystemZ/MCTargetDesc/ |
| H A D | SystemZMCAsmBackend.cpp | 180 unsigned ShiftValue = (Size * 8) - 8; in applyFixup() local 182 Data[Offset + I] |= uint8_t(Value >> ShiftValue); in applyFixup() 183 ShiftValue -= 8; in applyFixup()
|
| H A D | SystemZMCCodeEmitter.cpp | 164 unsigned ShiftValue = (Size * 8) - 8; in encodeInstruction() local 166 OS << uint8_t(Bits >> ShiftValue); in encodeInstruction() 167 ShiftValue -= 8; in encodeInstruction()
|
| /llvm-project-15.0.7/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 4933 uint64_t ShiftValue = ImmValue; in expandRotationImm() local 4935 ShiftValue = MaxShift - ImmValue; in expandRotationImm() 4936 TOut.emitRRI(Mips::ROTR, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandRotationImm() 5075 uint64_t ShiftValue = ImmValue % 32; in expandDRotationImm() local 5077 ShiftValue = (32 - ImmValue % 32) % 32; in expandDRotationImm() 5079 TOut.emitRRI(FinalOpcode, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandDRotationImm()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 9287 SDValue ShiftValue; in visitSRA() local 9289 ShiftValue = DAG.getBuildVector(ShiftVT, DL, ShiftValues); in visitSRA() 9294 ShiftValue = DAG.getSplatVector(ShiftVT, DL, ShiftValues[0]); in visitSRA() 9296 ShiftValue = ShiftValues[0]; in visitSRA() 9297 return DAG.getNode(ISD::SRA, DL, VT, N0.getOperand(0), ShiftValue); in visitSRA()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 11869 Value *Shiftee, *ShiftValue; in isImpliedCondOperandsViaShift() local 11873 m_LShr(m_Value(Shiftee), m_Value(ShiftValue)))) { in isImpliedCondOperandsViaShift()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 28600 SDValue ShiftValue = in LowerSET_ROUNDING() local 28608 ShiftValue); in LowerSET_ROUNDING()
|