Home | History | Annotate | Download | only in x87

Lines Matching defs:imm32

346 void Assembler::push_imm32(int32_t imm32) {
349 emit(imm32);
444 void Assembler::mov(Register dst, int32_t imm32) {
447 emit(imm32);
578 void Assembler::adc(Register dst, int32_t imm32) {
580 emit_arith(2, Operand(dst), Immediate(imm32));
612 void Assembler::and_(Register dst, int32_t imm32) {
613 and_(dst, Immediate(imm32));
681 void Assembler::cmp(Register reg, int32_t imm32) {
683 emit_arith(7, Operand(reg), Immediate(imm32));
790 void Assembler::imul(Register dst, Register src, int32_t imm32) {
791 imul(dst, Operand(src), imm32);
795 void Assembler::imul(Register dst, const Operand& src, int32_t imm32) {
797 if (is_int8(imm32)) {
800 EMIT(imm32);
804 emit(imm32);
864 void Assembler::or_(Register dst, int32_t imm32) {
866 emit_arith(1, Operand(dst), Immediate(imm32));
1123 void Assembler::xor_(Register dst, int32_t imm32) {
1125 emit_arith(6, Operand(dst), Immediate(imm32));
1250 int imm32 = pos - (fixup_pos + sizeof(int32_t));
1251 long_at_put(fixup_pos, imm32);