Searched refs:MIPSInstr (Results 1 – 3 of 3) sorted by relevance
/external/valgrind/main/VEX/priv/ |
D | host_mips_defs.h | 629 } MIPSInstr; typedef 631 extern MIPSInstr *MIPSInstr_LI(HReg, ULong); 632 extern MIPSInstr *MIPSInstr_Alu(MIPSAluOp, HReg, HReg, MIPSRH *); 633 extern MIPSInstr *MIPSInstr_Shft(MIPSShftOp, Bool sz32, HReg, HReg, MIPSRH *); 634 extern MIPSInstr *MIPSInstr_Unary(MIPSUnaryOp op, HReg dst, HReg src); 635 extern MIPSInstr *MIPSInstr_Cmp(Bool, Bool, HReg, HReg, HReg, MIPSCondCode); 637 extern MIPSInstr *MIPSInstr_Mul(Bool syned, Bool hi32, Bool sz32, HReg, 639 extern MIPSInstr *MIPSInstr_Div(Bool syned, Bool sz32, HReg, HReg); 640 extern MIPSInstr *MIPSInstr_Madd(Bool, HReg, HReg); 641 extern MIPSInstr *MIPSInstr_Msub(Bool, HReg, HReg); [all …]
|
D | host_mips_defs.c | 1109 MIPSInstr *MIPSInstr_LI(HReg dst, ULong imm) in MIPSInstr_LI() 1111 MIPSInstr *i = LibVEX_Alloc(sizeof(MIPSInstr)); in MIPSInstr_LI() 1118 MIPSInstr *MIPSInstr_Alu(MIPSAluOp op, HReg dst, HReg srcL, MIPSRH * srcR) in MIPSInstr_Alu() 1120 MIPSInstr *i = LibVEX_Alloc(sizeof(MIPSInstr)); in MIPSInstr_Alu() 1129 MIPSInstr *MIPSInstr_Shft(MIPSShftOp op, Bool sz32, HReg dst, HReg srcL, in MIPSInstr_Shft() 1132 MIPSInstr *i = LibVEX_Alloc(sizeof(MIPSInstr)); in MIPSInstr_Shft() 1142 MIPSInstr *MIPSInstr_Unary(MIPSUnaryOp op, HReg dst, HReg src) in MIPSInstr_Unary() 1144 MIPSInstr *i = LibVEX_Alloc(sizeof(MIPSInstr)); in MIPSInstr_Unary() 1152 MIPSInstr *MIPSInstr_Cmp(Bool syned, Bool sz32, HReg dst, HReg srcL, HReg srcR, in MIPSInstr_Cmp() 1155 MIPSInstr *i = LibVEX_Alloc(sizeof(MIPSInstr)); in MIPSInstr_Cmp() [all …]
|
D | host_mips_isel.c | 156 static void addInstr(ISelEnv * env, MIPSInstr * instr) in addInstr() 308 static MIPSInstr *mk_iMOVds_RR(HReg r_dst, HReg r_src) in mk_iMOVds_RR()
|