Home | History | Annotate | Download | only in ia32

Lines Matching defs:imm32

464 void Assembler::push_imm32(int32_t imm32) {
467 emit(imm32);
562 void Assembler::mov(Register dst, int32_t imm32) {
565 emit(imm32);
744 void Assembler::adc(Register dst, int32_t imm32) {
746 emit_arith(2, Operand(dst), Immediate(imm32));
778 void Assembler::and_(Register dst, int32_t imm32) {
779 and_(dst, Immediate(imm32));
860 void Assembler::cmp(Register reg, int32_t imm32) {
862 emit_arith(7, Operand(reg), Immediate(imm32));
974 void Assembler::imul(Register dst, Register src, int32_t imm32) {
975 imul(dst, Operand(src), imm32);
979 void Assembler::imul(Register dst, const Operand& src, int32_t imm32) {
981 if (is_int8(imm32)) {
984 EMIT(imm32);
988 emit(imm32);
1048 void Assembler::or_(Register dst, int32_t imm32) {
1050 emit_arith(1, Operand(dst), Immediate(imm32));
1353 void Assembler::xor_(Register dst, int32_t imm32) {
1355 emit_arith(6, Operand(dst), Immediate(imm32));
1498 int imm32 = pos - (fixup_pos + sizeof(int32_t));
1499 long_at_put(fixup_pos, imm32);