Lines Matching defs:imm32
2894 // and build the imm32 with one trailing zero as documented:
2895 // imm32 = SignExtend(S:I1:I2:imm10:imm11:'0', 32);
2904 int imm32 = SignExtend32<25>(tmp << 1);
2905 if (!tryAddingSymbolicOperand(Address, Address + imm32 + 4,
2907 Inst.addOperand(MCOperand::createImm(imm32));
4798 // and build the imm32 with two trailing zeros as documented:
4799 // imm32 = SignExtend(S:I1:I2:imm10H:imm10L:'00', 32);
4806 int imm32 = SignExtend32<25>(tmp << 1);
4809 (Address & ~2u) + imm32 + 4,
4811 Inst.addOperand(MCOperand::createImm(imm32));
4940 // and build the imm32 with one trailing zero as documented:
4941 // imm32 = SignExtend(S:I1:I2:imm10:imm11:'0', 32);
4948 int imm32 = SignExtend32<25>(tmp << 1);
4950 if (!tryAddingSymbolicOperand(Address, Address + imm32 + 4,
4952 Inst.addOperand(MCOperand::createImm(imm32));