Lines Matching full:imm32
466 void Assembler::push_imm32(int32_t imm32) {
469 emit(imm32);
564 void Assembler::mov(Register dst, int32_t imm32) {
567 emit(imm32);
701 void Assembler::adc(Register dst, int32_t imm32) {
703 emit_arith(2, Operand(dst), Immediate(imm32));
735 void Assembler::and_(Register dst, int32_t imm32) {
736 and_(dst, Immediate(imm32));
804 void Assembler::cmp(Register reg, int32_t imm32) {
806 emit_arith(7, Operand(reg), Immediate(imm32));
906 void Assembler::imul(Register dst, Register src, int32_t imm32) {
908 if (is_int8(imm32)) {
911 EMIT(imm32);
915 emit(imm32);
961 void Assembler::or_(Register dst, int32_t imm32) {
963 emit_arith(1, Operand(dst), Immediate(imm32));
1220 void Assembler::xor_(Register dst, int32_t imm32) {
1222 emit_arith(6, Operand(dst), Immediate(imm32));
1339 int imm32 = pos - (fixup_pos + sizeof(int32_t));
1340 long_at_put(fixup_pos, imm32);