Home | History | Annotate | Download | only in x87

Lines Matching refs:imm32

326 void Assembler::push_imm32(int32_t imm32) {
329 emit(imm32);
442 void Assembler::mov(Register dst, int32_t imm32) {
445 emit(imm32);
615 void Assembler::adc(Register dst, int32_t imm32) {
617 emit_arith(2, Operand(dst), Immediate(imm32));
649 void Assembler::and_(Register dst, int32_t imm32) {
650 and_(dst, Immediate(imm32));
731 void Assembler::cmp(Register reg, int32_t imm32) {
733 emit_arith(7, Operand(reg), Immediate(imm32));
845 void Assembler::imul(Register dst, Register src, int32_t imm32) {
846 imul(dst, Operand(src), imm32);
850 void Assembler::imul(Register dst, const Operand& src, int32_t imm32) {
852 if (is_int8(imm32)) {
855 EMIT(imm32);
859 emit(imm32);
919 void Assembler::or_(Register dst, int32_t imm32) {
921 emit_arith(1, Operand(dst), Immediate(imm32));
1224 void Assembler::xor_(Register dst, int32_t imm32) {
1226 emit_arith(6, Operand(dst), Immediate(imm32));
1369 int imm32 = pos - (fixup_pos + sizeof(int32_t));
1370 long_at_put(fixup_pos, imm32);