Home
last modified time | relevance | path

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

/external/valgrind/main/VEX/priv/
Dhost_amd64_defs.h680 AMD64Instr; typedef
682 extern AMD64Instr* AMD64Instr_Imm64 ( ULong imm64, HReg dst );
683 extern AMD64Instr* AMD64Instr_Alu64R ( AMD64AluOp, AMD64RMI*, HReg );
684 extern AMD64Instr* AMD64Instr_Alu64M ( AMD64AluOp, AMD64RI*, AMD64AMode* );
685 extern AMD64Instr* AMD64Instr_Unary64 ( AMD64UnaryOp op, HReg dst );
686 extern AMD64Instr* AMD64Instr_Lea64 ( AMD64AMode* am, HReg dst );
687 extern AMD64Instr* AMD64Instr_Alu32R ( AMD64AluOp, AMD64RMI*, HReg );
688 extern AMD64Instr* AMD64Instr_Sh64 ( AMD64ShiftOp, UInt, HReg );
689 extern AMD64Instr* AMD64Instr_Test64 ( UInt imm32, HReg dst );
690 extern AMD64Instr* AMD64Instr_MulL ( Bool syned, AMD64RM* );
[all …]
Dhost_amd64_defs.c638 AMD64Instr* AMD64Instr_Imm64 ( ULong imm64, HReg dst ) { in AMD64Instr_Imm64()
639 AMD64Instr* i = LibVEX_Alloc(sizeof(AMD64Instr)); in AMD64Instr_Imm64()
645 AMD64Instr* AMD64Instr_Alu64R ( AMD64AluOp op, AMD64RMI* src, HReg dst ) { in AMD64Instr_Alu64R()
646 AMD64Instr* i = LibVEX_Alloc(sizeof(AMD64Instr)); in AMD64Instr_Alu64R()
653 AMD64Instr* AMD64Instr_Alu64M ( AMD64AluOp op, AMD64RI* src, AMD64AMode* dst ) { in AMD64Instr_Alu64M()
654 AMD64Instr* i = LibVEX_Alloc(sizeof(AMD64Instr)); in AMD64Instr_Alu64M()
662 AMD64Instr* AMD64Instr_Sh64 ( AMD64ShiftOp op, UInt src, HReg dst ) { in AMD64Instr_Sh64()
663 AMD64Instr* i = LibVEX_Alloc(sizeof(AMD64Instr)); in AMD64Instr_Sh64()
670 AMD64Instr* AMD64Instr_Test64 ( UInt imm32, HReg dst ) { in AMD64Instr_Test64()
671 AMD64Instr* i = LibVEX_Alloc(sizeof(AMD64Instr)); in AMD64Instr_Test64()
[all …]
Dhost_amd64_isel.c160 static void addInstr ( ISelEnv* env, AMD64Instr* instr ) in addInstr()
288 static AMD64Instr* mk_iMOVsd_RR ( HReg src, HReg dst ) in mk_iMOVsd_RR()
297 static AMD64Instr* mk_vMOVsd_RR ( HReg src, HReg dst ) in mk_vMOVsd_RR()
382 static AMD64Instr* iselIntExpr_single_instruction ( ISelEnv* env, in iselIntExpr_single_instruction()
441 AMD64Instr* fastinstrs[6]; in doHelperCall()