Home
last modified time | relevance | path

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

/external/valgrind/main/VEX/priv/
Dhost_arm_defs.h910 ARMInstr; typedef
913 extern ARMInstr* ARMInstr_Alu ( ARMAluOp, HReg, HReg, ARMRI84* );
914 extern ARMInstr* ARMInstr_Shift ( ARMShiftOp, HReg, HReg, ARMRI5* );
915 extern ARMInstr* ARMInstr_Unary ( ARMUnaryOp, HReg, HReg );
916 extern ARMInstr* ARMInstr_CmpOrTst ( Bool isCmp, HReg, ARMRI84* );
917 extern ARMInstr* ARMInstr_Mov ( HReg, ARMRI84* );
918 extern ARMInstr* ARMInstr_Imm32 ( HReg, UInt );
919 extern ARMInstr* ARMInstr_LdSt32 ( Bool isLoad, HReg, ARMAMode1* );
920 extern ARMInstr* ARMInstr_LdSt16 ( Bool isLoad, Bool signedLoad,
922 extern ARMInstr* ARMInstr_LdSt8U ( Bool isLoad, HReg, ARMAMode1* );
[all …]
Dhost_arm_defs.c1034 static HChar* showARMNeonDataSize ( ARMInstr* i ) in showARMNeonDataSize()
1097 ARMInstr* ARMInstr_Alu ( ARMAluOp op, in ARMInstr_Alu()
1099 ARMInstr* i = LibVEX_Alloc(sizeof(ARMInstr)); in ARMInstr_Alu()
1107 ARMInstr* ARMInstr_Shift ( ARMShiftOp op, in ARMInstr_Shift()
1109 ARMInstr* i = LibVEX_Alloc(sizeof(ARMInstr)); in ARMInstr_Shift()
1117 ARMInstr* ARMInstr_Unary ( ARMUnaryOp op, HReg dst, HReg src ) { in ARMInstr_Unary()
1118 ARMInstr* i = LibVEX_Alloc(sizeof(ARMInstr)); in ARMInstr_Unary()
1125 ARMInstr* ARMInstr_CmpOrTst ( Bool isCmp, HReg argL, ARMRI84* argR ) { in ARMInstr_CmpOrTst()
1126 ARMInstr* i = LibVEX_Alloc(sizeof(ARMInstr)); in ARMInstr_CmpOrTst()
1133 ARMInstr* ARMInstr_Mov ( HReg dst, ARMRI84* src ) { in ARMInstr_Mov()
[all …]
Dhost_arm_isel.c133 static void addInstr ( ISelEnv* env, ARMInstr* instr ) in addInstr()
278 static ARMInstr* mk_iMOVds_RR ( HReg dst, HReg src ) in mk_iMOVds_RR()