Searched refs:ShiftValue (Results 1 – 9 of 9) sorted by relevance
| /freebsd-14.2/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() 89 assert(ShiftValue != 0 && "Undefined operation"); in previous() 91 Out.ShiftValue = ShiftValue - 1; in previous() 224 Out.ShiftValue = Value - 1; in decodeMaybeAlign() 260 return Lhs.ShiftValue == Rhs.ShiftValue; 263 return Lhs.ShiftValue != Rhs.ShiftValue; 266 return Lhs.ShiftValue <= Rhs.ShiftValue; 269 return Lhs.ShiftValue >= Rhs.ShiftValue; 272 return Lhs.ShiftValue < Rhs.ShiftValue; [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/ |
| H A D | SystemZMCAsmBackend.cpp | 193 unsigned ShiftValue = (Size * 8) - 8; in applyFixup() local 195 Data[Offset + I] |= uint8_t(Value >> ShiftValue); in applyFixup() 196 ShiftValue -= 8; in applyFixup()
|
| H A D | SystemZMCCodeEmitter.cpp | 140 unsigned ShiftValue = (Size * 8) - 8; in encodeInstruction() local 142 CB.push_back(uint8_t(Bits >> ShiftValue)); in encodeInstruction() 143 ShiftValue -= 8; in encodeInstruction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/ |
| H A D | XtensaMCCodeEmitter.cpp | 134 unsigned ShiftValue = 0; in encodeInstruction() local 136 CB.push_back(char(Bits >> ShiftValue)); in encodeInstruction() 137 ShiftValue += 8; in encodeInstruction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 5003 uint64_t ShiftValue = ImmValue; in expandRotationImm() local 5005 ShiftValue = MaxShift - ImmValue; in expandRotationImm() 5006 TOut.emitRRI(Mips::ROTR, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandRotationImm() 5145 uint64_t ShiftValue = ImmValue % 32; in expandDRotationImm() local 5147 ShiftValue = (32 - ImmValue % 32) % 32; in expandDRotationImm() 5149 TOut.emitRRI(FinalOpcode, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandDRotationImm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 10343 SDValue ShiftValue; in visitSRA() local 10345 ShiftValue = DAG.getBuildVector(ShiftVT, DL, ShiftValues); in visitSRA() 10350 ShiftValue = DAG.getSplatVector(ShiftVT, DL, ShiftValues[0]); in visitSRA() 10352 ShiftValue = ShiftValues[0]; in visitSRA() 10353 return DAG.getNode(ISD::SRA, DL, VT, N0.getOperand(0), ShiftValue); in visitSRA()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 20848 unsigned ShiftValue = SrlOp1->getZExtValue(); in trySimplifySrlAddToRshrnb() local 20849 if (ShiftValue < 1 || ShiftValue > ResVT.getScalarSizeInBits()) in trySimplifySrlAddToRshrnb() 20860 if (AddValue != 1ULL << (ShiftValue - 1)) in trySimplifySrlAddToRshrnb() 20866 {Add->getOperand(0), DAG.getTargetConstant(ShiftValue, DL, MVT::i32)}); in trySimplifySrlAddToRshrnb()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 12180 Value *Shiftee, *ShiftValue; in isImpliedCondOperandsViaShift() local 12184 m_LShr(m_Value(Shiftee), m_Value(ShiftValue)))) { in isImpliedCondOperandsViaShift()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 27519 SDValue ShiftValue = in LowerSET_ROUNDING() local 27527 ShiftValue); in LowerSET_ROUNDING()
|