Home
last modified time | relevance | path

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

/external/valgrind/VEX/priv/
Dhost_amd64_defs.h720 AMD64Instr; typedef
722 extern AMD64Instr* AMD64Instr_Imm64 ( ULong imm64, HReg dst );
723 extern AMD64Instr* AMD64Instr_Alu64R ( AMD64AluOp, AMD64RMI*, HReg );
724 extern AMD64Instr* AMD64Instr_Alu64M ( AMD64AluOp, AMD64RI*, AMD64AMode* );
725 extern AMD64Instr* AMD64Instr_Unary64 ( AMD64UnaryOp op, HReg dst );
726 extern AMD64Instr* AMD64Instr_Lea64 ( AMD64AMode* am, HReg dst );
727 extern AMD64Instr* AMD64Instr_Alu32R ( AMD64AluOp, AMD64RMI*, HReg );
728 extern AMD64Instr* AMD64Instr_Sh64 ( AMD64ShiftOp, UInt, HReg );
729 extern AMD64Instr* AMD64Instr_Test64 ( UInt imm32, HReg dst );
730 extern AMD64Instr* AMD64Instr_MulL ( Bool syned, AMD64RM* );
[all …]
Dhost_amd64_defs.c589 AMD64Instr* AMD64Instr_Imm64 ( ULong imm64, HReg dst ) { in AMD64Instr_Imm64()
590 AMD64Instr* i = LibVEX_Alloc_inline(sizeof(AMD64Instr)); in AMD64Instr_Imm64()
596 AMD64Instr* AMD64Instr_Alu64R ( AMD64AluOp op, AMD64RMI* src, HReg dst ) { in AMD64Instr_Alu64R()
597 AMD64Instr* i = LibVEX_Alloc_inline(sizeof(AMD64Instr)); in AMD64Instr_Alu64R()
604 AMD64Instr* AMD64Instr_Alu64M ( AMD64AluOp op, AMD64RI* src, AMD64AMode* dst ) { in AMD64Instr_Alu64M()
605 AMD64Instr* i = LibVEX_Alloc_inline(sizeof(AMD64Instr)); in AMD64Instr_Alu64M()
613 AMD64Instr* AMD64Instr_Sh64 ( AMD64ShiftOp op, UInt src, HReg dst ) { in AMD64Instr_Sh64()
614 AMD64Instr* i = LibVEX_Alloc_inline(sizeof(AMD64Instr)); in AMD64Instr_Sh64()
621 AMD64Instr* AMD64Instr_Test64 ( UInt imm32, HReg dst ) { in AMD64Instr_Test64()
622 AMD64Instr* i = LibVEX_Alloc_inline(sizeof(AMD64Instr)); in AMD64Instr_Test64()
[all …]
Dhost_amd64_isel.c185 static void addInstr ( ISelEnv* env, AMD64Instr* instr ) in addInstr()
310 static AMD64Instr* mk_iMOVsd_RR ( HReg src, HReg dst ) in mk_iMOVsd_RR()
319 static AMD64Instr* mk_vMOVsd_RR ( HReg src, HReg dst ) in mk_vMOVsd_RR()
364 static AMD64Instr* iselIntExpr_single_instruction ( ISelEnv* env, in iselIntExpr_single_instruction()
437 AMD64Instr* fastinstrs[6]; in doHelperCall()