Home | History | Annotate | Download | only in x87

Lines Matching defs:imm32

344 void Assembler::push_imm32(int32_t imm32) {
347 emit(imm32);
442 void Assembler::mov(Register dst, int32_t imm32) {
445 emit(imm32);
569 void Assembler::adc(Register dst, int32_t imm32) {
571 emit_arith(2, Operand(dst), Immediate(imm32));
603 void Assembler::and_(Register dst, int32_t imm32) {
604 and_(dst, Immediate(imm32));
672 void Assembler::cmp(Register reg, int32_t imm32) {
674 emit_arith(7, Operand(reg), Immediate(imm32));
774 void Assembler::imul(Register dst, Register src, int32_t imm32) {
776 if (is_int8(imm32)) {
779 EMIT(imm32);
783 emit(imm32);
829 void Assembler::or_(Register dst, int32_t imm32) {
831 emit_arith(1, Operand(dst), Immediate(imm32));
1088 void Assembler::xor_(Register dst, int32_t imm32) {
1090 emit_arith(6, Operand(dst), Immediate(imm32));
1215 int imm32 = pos - (fixup_pos + sizeof(int32_t));
1216 long_at_put(fixup_pos, imm32);