Home
last modified time | relevance | path

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

/external/valgrind/VEX/priv/
Dhost_mips_defs.h609 } MIPSInstr; typedef
611 extern MIPSInstr *MIPSInstr_LI(HReg, ULong);
612 extern MIPSInstr *MIPSInstr_Alu(MIPSAluOp, HReg, HReg, MIPSRH *);
613 extern MIPSInstr *MIPSInstr_Shft(MIPSShftOp, Bool sz32, HReg, HReg, MIPSRH *);
614 extern MIPSInstr *MIPSInstr_Unary(MIPSUnaryOp op, HReg dst, HReg src);
615 extern MIPSInstr *MIPSInstr_Cmp(Bool, Bool, HReg, HReg, HReg, MIPSCondCode);
617 extern MIPSInstr *MIPSInstr_Mul(Bool syned, Bool hi32, Bool sz32, HReg,
619 extern MIPSInstr *MIPSInstr_Div(Bool syned, Bool sz32, HReg, HReg);
620 extern MIPSInstr *MIPSInstr_Madd(Bool, HReg, HReg);
621 extern MIPSInstr *MIPSInstr_Msub(Bool, HReg, HReg);
[all …]
Dhost_mips_defs.c759 MIPSInstr *MIPSInstr_LI(HReg dst, ULong imm) in MIPSInstr_LI()
761 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_LI()
768 MIPSInstr *MIPSInstr_Alu(MIPSAluOp op, HReg dst, HReg srcL, MIPSRH * srcR) in MIPSInstr_Alu()
770 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_Alu()
779 MIPSInstr *MIPSInstr_Shft(MIPSShftOp op, Bool sz32, HReg dst, HReg srcL, in MIPSInstr_Shft()
782 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_Shft()
792 MIPSInstr *MIPSInstr_Unary(MIPSUnaryOp op, HReg dst, HReg src) in MIPSInstr_Unary()
794 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_Unary()
802 MIPSInstr *MIPSInstr_Cmp(Bool syned, Bool sz32, HReg dst, HReg srcL, HReg srcR, in MIPSInstr_Cmp()
805 MIPSInstr *i = LibVEX_Alloc_inline(sizeof(MIPSInstr)); in MIPSInstr_Cmp()
[all …]
Dhost_mips_isel.c160 static void addInstr(ISelEnv * env, MIPSInstr * instr) in addInstr()
326 static MIPSInstr *mk_iMOVds_RR(HReg r_dst, HReg r_src) in mk_iMOVds_RR()