Searched refs:ShiftValue (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Alignment.h | 79 ShiftValue = Log2_64(Value); in Align() 80 assert(ShiftValue < 64 && "Broken invariant"); in Align() 99 constexpr Align(LogValue CA) : ShiftValue(CA.Log) {} in Align() 207 inline unsigned Log2(Align A) { return A.ShiftValue; } in Log2() 239 Out.ShiftValue = Value - 1; in decodeMaybeAlign() 283 return Lhs.ShiftValue == Rhs.ShiftValue; 286 return Lhs.ShiftValue != Rhs.ShiftValue; 289 return Lhs.ShiftValue <= Rhs.ShiftValue; 292 return Lhs.ShiftValue >= Rhs.ShiftValue; 295 return Lhs.ShiftValue < Rhs.ShiftValue; [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/ |
| H A D | SystemZMCAsmBackend.cpp | 138 unsigned ShiftValue = (Size * 8) - 8; in applyFixup() local 140 Data[Offset + I] |= uint8_t(Value >> ShiftValue); in applyFixup() 141 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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 8616 SDValue ShiftValue; in visitSRA() local 8618 ShiftValue = DAG.getBuildVector(ShiftVT, DL, ShiftValues); in visitSRA() 8623 ShiftValue = DAG.getSplatVector(ShiftVT, DL, ShiftValues[0]); in visitSRA() 8625 ShiftValue = ShiftValues[0]; in visitSRA() 8626 return DAG.getNode(ISD::SRA, DL, VT, N0.getOperand(0), ShiftValue); in visitSRA()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 27232 SDValue ShiftValue = in LowerSET_ROUNDING() local 27240 ShiftValue); in LowerSET_ROUNDING()
|