Searched refs:X86Instr (Results 1 – 3 of 3) sorted by relevance
/external/valgrind/VEX/priv/ |
D | host_x86_defs.h | 658 X86Instr; typedef 660 extern X86Instr* X86Instr_Alu32R ( X86AluOp, X86RMI*, HReg ); 661 extern X86Instr* X86Instr_Alu32M ( X86AluOp, X86RI*, X86AMode* ); 662 extern X86Instr* X86Instr_Unary32 ( X86UnaryOp op, HReg dst ); 663 extern X86Instr* X86Instr_Lea32 ( X86AMode* am, HReg dst ); 665 extern X86Instr* X86Instr_Sh32 ( X86ShiftOp, UInt, HReg ); 666 extern X86Instr* X86Instr_Test32 ( UInt imm32, X86RM* dst ); 667 extern X86Instr* X86Instr_MulL ( Bool syned, X86RM* ); 668 extern X86Instr* X86Instr_Div ( Bool syned, X86RM* ); 669 extern X86Instr* X86Instr_Sh3232 ( X86ShiftOp, UInt amt, HReg src, HReg dst ); [all …]
|
D | host_x86_defs.c | 564 X86Instr* X86Instr_Alu32R ( X86AluOp op, X86RMI* src, HReg dst ) { in X86Instr_Alu32R() 565 X86Instr* i = LibVEX_Alloc_inline(sizeof(X86Instr)); in X86Instr_Alu32R() 572 X86Instr* X86Instr_Alu32M ( X86AluOp op, X86RI* src, X86AMode* dst ) { in X86Instr_Alu32M() 573 X86Instr* i = LibVEX_Alloc_inline(sizeof(X86Instr)); in X86Instr_Alu32M() 581 X86Instr* X86Instr_Sh32 ( X86ShiftOp op, UInt src, HReg dst ) { in X86Instr_Sh32() 582 X86Instr* i = LibVEX_Alloc_inline(sizeof(X86Instr)); in X86Instr_Sh32() 589 X86Instr* X86Instr_Test32 ( UInt imm32, X86RM* dst ) { in X86Instr_Test32() 590 X86Instr* i = LibVEX_Alloc_inline(sizeof(X86Instr)); in X86Instr_Test32() 596 X86Instr* X86Instr_Unary32 ( X86UnaryOp op, HReg dst ) { in X86Instr_Unary32() 597 X86Instr* i = LibVEX_Alloc_inline(sizeof(X86Instr)); in X86Instr_Unary32() [all …]
|
D | host_x86_isel.c | 209 static void addInstr ( ISelEnv* env, X86Instr* instr ) in addInstr() 289 static X86Instr* mk_iMOVsd_RR ( HReg src, HReg dst ) in mk_iMOVsd_RR() 299 static X86Instr* mk_vMOVsd_RR ( HReg src, HReg dst ) in mk_vMOVsd_RR()
|