Searched refs:MIPSInstr (Results 1 – 3 of 3) sorted by relevance
/external/valgrind/VEX/priv/ |
D | host_mips_defs.h | 612 } MIPSInstr; typedef 614 extern MIPSInstr *MIPSInstr_LI(HReg, ULong); 615 extern MIPSInstr *MIPSInstr_Alu(MIPSAluOp, HReg, HReg, MIPSRH *); 616 extern MIPSInstr *MIPSInstr_Shft(MIPSShftOp, Bool sz32, HReg, HReg, MIPSRH *); 617 extern MIPSInstr *MIPSInstr_Unary(MIPSUnaryOp op, HReg dst, HReg src); 618 extern MIPSInstr *MIPSInstr_Cmp(Bool, Bool, HReg, HReg, HReg, MIPSCondCode); 620 extern MIPSInstr *MIPSInstr_Mul(Bool syned, Bool hi32, Bool sz32, HReg, 622 extern MIPSInstr *MIPSInstr_Div(Bool syned, Bool sz32, HReg, HReg); 623 extern MIPSInstr *MIPSInstr_Madd(Bool, HReg, HReg); 624 extern MIPSInstr *MIPSInstr_Msub(Bool, HReg, HReg); [all …]
|
D | host_mips_defs.c | 756 MIPSInstr *MIPSInstr_LI(HReg dst, ULong imm) in MIPSInstr_LI() 758 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_LI() 765 MIPSInstr *MIPSInstr_Alu(MIPSAluOp op, HReg dst, HReg srcL, MIPSRH * srcR) in MIPSInstr_Alu() 767 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_Alu() 776 MIPSInstr *MIPSInstr_Shft(MIPSShftOp op, Bool sz32, HReg dst, HReg srcL, in MIPSInstr_Shft() 779 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_Shft() 789 MIPSInstr *MIPSInstr_Unary(MIPSUnaryOp op, HReg dst, HReg src) in MIPSInstr_Unary() 791 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_Unary() 799 MIPSInstr *MIPSInstr_Cmp(Bool syned, Bool sz32, HReg dst, HReg srcL, HReg srcR, in MIPSInstr_Cmp() 802 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_Cmp() [all …]
|
D | host_mips_isel.c | 154 static void addInstr(ISelEnv * env, MIPSInstr * instr) in addInstr() 320 static MIPSInstr *mk_iMOVds_RR(HReg r_dst, HReg r_src) in mk_iMOVds_RR()
|