• Home
  • Raw
  • Download

Lines Matching defs:p

140 static void do_realloc( struct x86_function *p )  in do_realloc()
175 static unsigned char *reserve( struct x86_function *p, int bytes ) in reserve()
189 static void emit_1b( struct x86_function *p, char b0 ) in emit_1b()
195 static void emit_1i( struct x86_function *p, int i0 ) in emit_1i()
201 static void emit_1ub( struct x86_function *p, unsigned char b0 ) in emit_1ub()
207 static void emit_2ub( struct x86_function *p, unsigned char b0, unsigned char b1 ) in emit_2ub()
214 static void emit_3ub( struct x86_function *p, unsigned char b0, unsigned char b1, unsigned char b2 ) in emit_3ub()
228 static void emit_modrm( struct x86_function *p, in emit_modrm()
272 static void emit_modrm_noreg( struct x86_function *p, in emit_modrm_noreg()
285 static void emit_op_modrm( struct x86_function *p, in emit_op_modrm()
360 int x86_get_label( struct x86_function *p ) in x86_get_label()
372 void x64_rexw(struct x86_function *p) in x64_rexw()
378 void x86_jcc( struct x86_function *p, in x86_jcc()
406 int x86_jcc_forward( struct x86_function *p, in x86_jcc_forward()
415 int x86_jmp_forward( struct x86_function *p) in x86_jmp_forward()
423 int x86_call_forward( struct x86_function *p) in x86_call_forward()
434 void x86_fixup_fwd_jump( struct x86_function *p, in x86_fixup_fwd_jump()
440 void x86_jmp( struct x86_function *p, int label) in x86_jmp()
447 void x86_call( struct x86_function *p, struct x86_reg reg) in x86_call()
455 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_reg_imm()
464 void x86_mov_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_imm()
477 void x86_mov16_imm( struct x86_function *p, struct x86_reg dst, uint16_t imm ) in x86_mov16_imm()
494 void x86_mov8_imm( struct x86_function *p, struct x86_reg dst, uint8_t imm ) in x86_mov8_imm()
514 x86_group1_imm( struct x86_function *p, in x86_group1_imm()
531 void x86_add_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_add_imm()
537 void x86_or_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_or_imm()
543 void x86_and_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_and_imm()
549 void x86_sub_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_sub_imm()
555 void x86_xor_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_xor_imm()
561 void x86_cmp_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_cmp_imm()
568 void x86_push( struct x86_function *p, in x86_push()
584 void x86_push_imm32( struct x86_function *p, in x86_push_imm32()
595 void x86_pop( struct x86_function *p, in x86_pop()
604 void x86_inc( struct x86_function *p, in x86_inc()
617 void x86_dec( struct x86_function *p, in x86_dec()
630 void x86_ret( struct x86_function *p ) in x86_ret()
637 void x86_retw( struct x86_function *p, unsigned short imm ) in x86_retw()
643 void x86_sahf( struct x86_function *p ) in x86_sahf()
649 void x86_mov( struct x86_function *p, in x86_mov()
673 void x86_mov16( struct x86_function *p, in x86_mov16()
682 void x86_mov8( struct x86_function *p, in x86_mov8()
690 void x64_mov64( struct x86_function *p, in x64_mov64()
716 void x86_movzx8(struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in x86_movzx8()
723 void x86_movzx16(struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in x86_movzx16()
730 void x86_cmovcc( struct x86_function *p, in x86_cmovcc()
740 void x86_xor( struct x86_function *p, in x86_xor()
748 void x86_cmp( struct x86_function *p, in x86_cmp()
756 void x86_lea( struct x86_function *p, in x86_lea()
765 void x86_test( struct x86_function *p, in x86_test()
774 void x86_add( struct x86_function *p, in x86_add()
784 void x86_mul( struct x86_function *p, in x86_mul()
793 void x86_imul( struct x86_function *p, in x86_imul()
803 void x86_sub( struct x86_function *p, in x86_sub()
811 void x86_or( struct x86_function *p, in x86_or()
819 void x86_and( struct x86_function *p, in x86_and()
827 void x86_div( struct x86_function *p, in x86_div()
834 void x86_bswap( struct x86_function *p, struct x86_reg reg ) in x86_bswap()
842 void x86_shr_imm( struct x86_function *p, struct x86_reg reg, unsigned imm ) in x86_shr_imm()
858 void x86_sar_imm( struct x86_function *p, struct x86_reg reg, unsigned imm ) in x86_sar_imm()
874 void x86_shl_imm( struct x86_function *p, struct x86_reg reg, unsigned imm ) in x86_shl_imm()
895 void sse_prefetchnta( struct x86_function *p, struct x86_reg ptr) in sse_prefetchnta()
903 void sse_prefetch0( struct x86_function *p, struct x86_reg ptr) in sse_prefetch0()
911 void sse_prefetch1( struct x86_function *p, struct x86_reg ptr) in sse_prefetch1()
919 void sse_movntps( struct x86_function *p, in sse_movntps()
934 void sse_movss( struct x86_function *p, in sse_movss()
943 void sse_movaps( struct x86_function *p, in sse_movaps()
952 void sse_movups( struct x86_function *p, in sse_movups()
961 void sse_movhps( struct x86_function *p, in sse_movhps()
971 void sse_movlps( struct x86_function *p, in sse_movlps()
981 void sse_maxps( struct x86_function *p, in sse_maxps()
990 void sse_maxss( struct x86_function *p, in sse_maxss()
999 void sse_divss( struct x86_function *p, in sse_divss()
1008 void sse_minps( struct x86_function *p, in sse_minps()
1017 void sse_subps( struct x86_function *p, in sse_subps()
1026 void sse_mulps( struct x86_function *p, in sse_mulps()
1035 void sse_mulss( struct x86_function *p, in sse_mulss()
1044 void sse_addps( struct x86_function *p, in sse_addps()
1053 void sse_addss( struct x86_function *p, in sse_addss()
1062 void sse_andnps( struct x86_function *p, in sse_andnps()
1071 void sse_andps( struct x86_function *p, in sse_andps()
1080 void sse_rsqrtps( struct x86_function *p, in sse_rsqrtps()
1089 void sse_rsqrtss( struct x86_function *p, in sse_rsqrtss()
1099 void sse_movhlps( struct x86_function *p, in sse_movhlps()
1109 void sse_movlhps( struct x86_function *p, in sse_movlhps()
1119 void sse_orps( struct x86_function *p, in sse_orps()
1128 void sse_xorps( struct x86_function *p, in sse_xorps()
1137 void sse_cvtps2pi( struct x86_function *p, in sse_cvtps2pi()
1151 void sse2_cvtdq2ps( struct x86_function *p, in sse2_cvtdq2ps()
1164 void sse_shufps( struct x86_function *p, in sse_shufps()
1175 void sse_unpckhps( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse_unpckhps()
1182 void sse_unpcklps( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse_unpcklps()
1189 void sse_cmpps( struct x86_function *p, in sse_cmpps()
1200 void sse_pmovmskb( struct x86_function *p, in sse_pmovmskb()
1209 void sse_movmskps( struct x86_function *p, in sse_movmskps()
1222 void sse2_movd( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_movd()
1237 void sse2_movq( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_movq()
1258 void sse2_movdqu( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_movdqu()
1265 void sse2_movdqa( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_movdqa()
1272 void sse2_movsd( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_movsd()
1279 void sse2_movupd( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_movupd()
1286 void sse2_movapd( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_movapd()
1296 void sse2_pshufd( struct x86_function *p, in sse2_pshufd()
1307 void sse2_pshuflw( struct x86_function *p, in sse2_pshuflw()
1318 void sse2_pshufhw( struct x86_function *p, in sse2_pshufhw()
1329 void sse2_cvttps2dq( struct x86_function *p, in sse2_cvttps2dq()
1338 void sse2_cvtps2dq( struct x86_function *p, in sse2_cvtps2dq()
1347 void sse2_cvtsd2ss( struct x86_function *p, in sse2_cvtsd2ss()
1356 void sse2_cvtpd2ps( struct x86_function *p, in sse2_cvtpd2ps()
1365 void sse2_packssdw( struct x86_function *p, in sse2_packssdw()
1374 void sse2_packsswb( struct x86_function *p, in sse2_packsswb()
1383 void sse2_packuswb( struct x86_function *p, in sse2_packuswb()
1392 void sse2_punpcklbw( struct x86_function *p, in sse2_punpcklbw()
1401 void sse2_punpcklwd( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_punpcklwd()
1408 void sse2_punpckldq( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_punpckldq()
1415 void sse2_punpcklqdq( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_punpcklqdq()
1422 void sse2_psllw_imm( struct x86_function *p, struct x86_reg dst, unsigned imm ) in sse2_psllw_imm()
1430 void sse2_pslld_imm( struct x86_function *p, struct x86_reg dst, unsigned imm ) in sse2_pslld_imm()
1438 void sse2_psllq_imm( struct x86_function *p, struct x86_reg dst, unsigned imm ) in sse2_psllq_imm()
1446 void sse2_psrlw_imm( struct x86_function *p, struct x86_reg dst, unsigned imm ) in sse2_psrlw_imm()
1454 void sse2_psrld_imm( struct x86_function *p, struct x86_reg dst, unsigned imm ) in sse2_psrld_imm()
1462 void sse2_psrlq_imm( struct x86_function *p, struct x86_reg dst, unsigned imm ) in sse2_psrlq_imm()
1470 void sse2_psraw_imm( struct x86_function *p, struct x86_reg dst, unsigned imm ) in sse2_psraw_imm()
1478 void sse2_psrad_imm( struct x86_function *p, struct x86_reg dst, unsigned imm ) in sse2_psrad_imm()
1486 void sse2_por( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in sse2_por()
1493 void sse2_rcpps( struct x86_function *p, in sse2_rcpps()
1502 void sse2_rcpss( struct x86_function *p, in sse2_rcpss()
1514 static void note_x87_pop( struct x86_function *p ) in note_x87_pop()
1520 static void note_x87_push( struct x86_function *p ) in note_x87_push()
1526 void x87_assert_stack_empty( struct x86_function *p ) in x87_assert_stack_empty()
1532 void x87_fist( struct x86_function *p, struct x86_reg dst ) in x87_fist()
1539 void x87_fistp( struct x86_function *p, struct x86_reg dst ) in x87_fistp()
1547 void x87_fild( struct x86_function *p, struct x86_reg arg ) in x87_fild()
1555 void x87_fldz( struct x86_function *p ) in x87_fldz()
1563 void x87_fldcw( struct x86_function *p, struct x86_reg arg ) in x87_fldcw()
1572 void x87_fld1( struct x86_function *p ) in x87_fld1()
1579 void x87_fldl2e( struct x86_function *p ) in x87_fldl2e()
1586 void x87_fldln2( struct x86_function *p ) in x87_fldln2()
1593 void x87_fwait( struct x86_function *p ) in x87_fwait()
1599 void x87_fnclex( struct x86_function *p ) in x87_fnclex()
1605 void x87_fclex( struct x86_function *p ) in x87_fclex()
1611 void x87_fcmovb( struct x86_function *p, struct x86_reg arg ) in x87_fcmovb()
1618 void x87_fcmove( struct x86_function *p, struct x86_reg arg ) in x87_fcmove()
1625 void x87_fcmovbe( struct x86_function *p, struct x86_reg arg ) in x87_fcmovbe()
1632 void x87_fcmovnb( struct x86_function *p, struct x86_reg arg ) in x87_fcmovnb()
1639 void x87_fcmovne( struct x86_function *p, struct x86_reg arg ) in x87_fcmovne()
1646 void x87_fcmovnbe( struct x86_function *p, struct x86_reg arg ) in x87_fcmovnbe()
1655 static void x87_arith_op( struct x86_function *p, struct x86_reg dst, struct x86_reg arg, in x87_arith_op()
1681 void x87_fmul( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in x87_fmul()
1690 void x87_fsub( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in x87_fsub()
1699 void x87_fsubr( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in x87_fsubr()
1708 void x87_fadd( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in x87_fadd()
1717 void x87_fdiv( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in x87_fdiv()
1726 void x87_fdivr( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) in x87_fdivr()
1735 void x87_fmulp( struct x86_function *p, struct x86_reg dst ) in x87_fmulp()
1744 void x87_fsubp( struct x86_function *p, struct x86_reg dst ) in x87_fsubp()
1753 void x87_fsubrp( struct x86_function *p, struct x86_reg dst ) in x87_fsubrp()
1762 void x87_faddp( struct x86_function *p, struct x86_reg dst ) in x87_faddp()
1771 void x87_fdivp( struct x86_function *p, struct x86_reg dst ) in x87_fdivp()
1780 void x87_fdivrp( struct x86_function *p, struct x86_reg dst ) in x87_fdivrp()
1789 void x87_ftst( struct x86_function *p ) in x87_ftst()
1795 void x87_fucom( struct x86_function *p, struct x86_reg arg ) in x87_fucom()
1802 void x87_fucomp( struct x86_function *p, struct x86_reg arg ) in x87_fucomp()
1810 void x87_fucompp( struct x86_function *p ) in x87_fucompp()
1818 void x87_fxch( struct x86_function *p, struct x86_reg arg ) in x87_fxch()
1825 void x87_fabs( struct x86_function *p ) in x87_fabs()
1831 void x87_fchs( struct x86_function *p ) in x87_fchs()
1837 void x87_fcos( struct x86_function *p ) in x87_fcos()
1844 void x87_fprndint( struct x86_function *p ) in x87_fprndint()
1850 void x87_fscale( struct x86_function *p ) in x87_fscale()
1856 void x87_fsin( struct x86_function *p ) in x87_fsin()
1862 void x87_fsincos( struct x86_function *p ) in x87_fsincos()
1868 void x87_fsqrt( struct x86_function *p ) in x87_fsqrt()
1874 void x87_fxtract( struct x86_function *p ) in x87_fxtract()
1884 void x87_f2xm1( struct x86_function *p ) in x87_f2xm1()
1893 void x87_fyl2x( struct x86_function *p ) in x87_fyl2x()
1905 void x87_fyl2xp1( struct x86_function *p ) in x87_fyl2xp1()
1913 void x87_fld( struct x86_function *p, struct x86_reg arg ) in x87_fld()
1925 void x87_fst( struct x86_function *p, struct x86_reg dst ) in x87_fst()
1936 void x87_fstp( struct x86_function *p, struct x86_reg dst ) in x87_fstp()
1948 void x87_fpop( struct x86_function *p ) in x87_fpop()
1954 void x87_fcom( struct x86_function *p, struct x86_reg dst ) in x87_fcom()
1966 void x87_fcomp( struct x86_function *p, struct x86_reg dst ) in x87_fcomp()
1978 void x87_fcomi( struct x86_function *p, struct x86_reg arg ) in x87_fcomi()
1984 void x87_fcomip( struct x86_function *p, struct x86_reg arg ) in x87_fcomip()
1992 void x87_fnstsw( struct x86_function *p, struct x86_reg dst ) in x87_fnstsw()
2007 void x87_fnstcw( struct x86_function *p, struct x86_reg dst ) in x87_fnstcw()
2024 void mmx_emms( struct x86_function *p ) in mmx_emms()
2032 void mmx_packssdw( struct x86_function *p, in mmx_packssdw()
2046 void mmx_packuswb( struct x86_function *p, in mmx_packuswb()
2060 void mmx_movd( struct x86_function *p, in mmx_movd()
2070 void mmx_movq( struct x86_function *p, in mmx_movq()
2086 void x86_cdecl_caller_push_regs( struct x86_function *p ) in x86_cdecl_caller_push_regs()
2093 void x86_cdecl_caller_pop_regs( struct x86_function *p ) in x86_cdecl_caller_pop_regs()
2101 struct x86_reg x86_fn_arg( struct x86_function *p, in x86_fn_arg()
2151 static void x86_init_func_common( struct x86_function *p ) in x86_init_func_common()
2171 void x86_init_func( struct x86_function *p ) in x86_init_func()
2178 void x86_init_func_size( struct x86_function *p, unsigned code_size ) in x86_init_func_size()
2188 void x86_release_func( struct x86_function *p ) in x86_release_func()
2212 x86_func x86_get_func( struct x86_function *p ) in x86_get_func()