Lines Matching full:imm32
404 void Assembler::push_imm32(int32_t imm32) {
407 emit(imm32);
502 void Assembler::mov(Register dst, int32_t imm32) {
505 emit(imm32);
645 void Assembler::adc(Register dst, int32_t imm32) {
647 emit_arith(2, Operand(dst), Immediate(imm32));
679 void Assembler::and_(Register dst, int32_t imm32) {
680 and_(dst, Immediate(imm32));
748 void Assembler::cmp(Register reg, int32_t imm32) {
750 emit_arith(7, Operand(reg), Immediate(imm32));
857 void Assembler::imul(Register dst, Register src, int32_t imm32) {
858 imul(dst, Operand(src), imm32);
862 void Assembler::imul(Register dst, const Operand& src, int32_t imm32) {
864 if (is_int8(imm32)) {
867 EMIT(imm32);
871 emit(imm32);
931 void Assembler::or_(Register dst, int32_t imm32) {
933 emit_arith(1, Operand(dst), Immediate(imm32));
1190 void Assembler::xor_(Register dst, int32_t imm32) {
1192 emit_arith(6, Operand(dst), Immediate(imm32));
1317 int imm32 = pos - (fixup_pos + sizeof(int32_t));
1318 long_at_put(fixup_pos, imm32);