Lines Matching full:imm32
529 void Assembler::push_imm32(int32_t imm32) {
532 emit(imm32);
617 void Assembler::mov(Register dst, int32_t imm32) {
620 emit(imm32);
754 void Assembler::adc(Register dst, int32_t imm32) {
756 emit_arith(2, Operand(dst), Immediate(imm32));
788 void Assembler::and_(Register dst, int32_t imm32) {
789 and_(dst, Immediate(imm32));
857 void Assembler::cmp(Register reg, int32_t imm32) {
859 emit_arith(7, Operand(reg), Immediate(imm32));
959 void Assembler::imul(Register dst, Register src, int32_t imm32) {
961 if (is_int8(imm32)) {
964 EMIT(imm32);
968 emit(imm32);
1014 void Assembler::or_(Register dst, int32_t imm32) {
1016 emit_arith(1, Operand(dst), Immediate(imm32));
1237 void Assembler::xor_(Register dst, int32_t imm32) {
1239 emit_arith(6, Operand(dst), Immediate(imm32));
1364 int imm32 = pos - (fixup_pos + sizeof(int32_t));
1365 long_at_put(fixup_pos, imm32);