Searched refs:ShiftValue (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/ |
| H A D | SystemZMCAsmBackend.cpp | 114 unsigned ShiftValue = (Size * 8) - 8; in applyFixup() local 116 Data[Offset + I] |= uint8_t(Value >> ShiftValue); in applyFixup() 117 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-12.1/contrib/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 4477 uint64_t ShiftValue = ImmValue; in expandRotationImm() local 4479 ShiftValue = MaxShift - ImmValue; in expandRotationImm() 4480 TOut.emitRRI(Mips::ROTR, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandRotationImm() 4619 uint64_t ShiftValue = ImmValue % 32; in expandDRotationImm() local 4621 ShiftValue = (32 - ImmValue % 32) % 32; in expandDRotationImm() 4623 TOut.emitRRI(FinalOpcode, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandDRotationImm()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 6762 SDValue ShiftValue; in visitSRA() local 6764 ShiftValue = DAG.getBuildVector(ShiftVT, DL, ShiftValues); in visitSRA() 6766 ShiftValue = ShiftValues[0]; in visitSRA() 6767 return DAG.getNode(ISD::SRA, DL, VT, N0.getOperand(0), ShiftValue); in visitSRA()
|