Home
last modified time | relevance | path

Searched refs:X86Instr (Results 1 – 3 of 3) sorted by relevance

/external/valgrind/VEX/priv/
Dhost_x86_defs.h658 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 …]
Dhost_x86_defs.c564 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 …]
Dhost_x86_isel.c209 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()