Searched refs:ShiftValue (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/Target/SystemZ/MCTargetDesc/ |
D | SystemZMCAsmBackend.cpp | 99 unsigned ShiftValue = (Size * 8) - 8; in applyFixup() local 101 Data[Offset + I] |= uint8_t(Value >> ShiftValue); in applyFixup() 102 ShiftValue -= 8; in applyFixup()
|
D | SystemZMCCodeEmitter.cpp | 129 unsigned ShiftValue = (Size * 8) - 8; in encodeInstruction() local 131 OS << uint8_t(Bits >> ShiftValue); in encodeInstruction() 132 ShiftValue -= 8; in encodeInstruction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/MCTargetDesc/ |
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()
|
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()
|
/external/v8/src/arm/ |
D | constants-arm.h | 575 inline int ShiftValue() const { return static_cast<ShiftOp>(Bits(6, 5)); } in ShiftValue() function
|
D | disasm-arm.cc | 194 int shift_index = instr->ShiftValue(); in PrintShiftRm()
|
/external/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 3462 uint64_t ShiftValue = ImmValue; in expandRotationImm() local 3464 ShiftValue = MaxShift - ImmValue; in expandRotationImm() 3465 TOut.emitRRI(Mips::ROTR, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandRotationImm() 3608 uint64_t ShiftValue = ImmValue % 32; in expandDRotationImm() local 3610 ShiftValue = (32 - ImmValue % 32) % 32; in expandDRotationImm() 3612 TOut.emitRRI(FinalOpcode, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandDRotationImm()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 4487 uint64_t ShiftValue = ImmValue; in expandRotationImm() local 4489 ShiftValue = MaxShift - ImmValue; in expandRotationImm() 4490 TOut.emitRRI(Mips::ROTR, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandRotationImm() 4629 uint64_t ShiftValue = ImmValue % 32; in expandDRotationImm() local 4631 ShiftValue = (32 - ImmValue % 32) % 32; in expandDRotationImm() 4633 TOut.emitRRI(FinalOpcode, DReg, SReg, ShiftValue, Inst.getLoc(), STI); in expandDRotationImm()
|