Lines Matching defs:imm32
529 void Assembler::push_imm32(int32_t imm32) {
532 emit(imm32);
607 void Assembler::mov(Register dst, int32_t imm32) {
610 emit(imm32);
848 void Assembler::adc(Register dst, int32_t imm32) {
850 emit_arith(2, Operand(dst), Immediate(imm32));
877 void Assembler::and_(Register dst, int32_t imm32) {
878 and_(dst, Immediate(imm32));
952 void Assembler::cmp(Register reg, int32_t imm32) {
954 emit_arith(7, Operand(reg), Immediate(imm32));
1051 void Assembler::imul(Register dst, Register src, int32_t imm32) {
1052 imul(dst, Operand(src), imm32);
1055 void Assembler::imul(Register dst, Operand src, int32_t imm32) {
1057 if (is_int8(imm32)) {
1060 EMIT(imm32);
1064 emit(imm32);
1115 void Assembler::or_(Register dst, int32_t imm32) {
1117 emit_arith(1, Operand(dst), Immediate(imm32));
1429 void Assembler::xor_(Register dst, int32_t imm32) {
1431 emit_arith(6, Operand(dst), Immediate(imm32));
1566 int imm32 = pos - (fixup_pos + sizeof(int32_t));
1567 long_at_put(fixup_pos, imm32);