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.h950 ARMInstr; typedef
953 extern ARMInstr* ARMInstr_Alu ( ARMAluOp, HReg, HReg, ARMRI84* );
954 extern ARMInstr* ARMInstr_Shift ( ARMShiftOp, HReg, HReg, ARMRI5* );
955 extern ARMInstr* ARMInstr_Unary ( ARMUnaryOp, HReg, HReg );
956 extern ARMInstr* ARMInstr_CmpOrTst ( Bool isCmp, HReg, ARMRI84* );
957 extern ARMInstr* ARMInstr_Mov ( HReg, ARMRI84* );
958 extern ARMInstr* ARMInstr_Imm32 ( HReg, UInt );
959 extern ARMInstr* ARMInstr_LdSt32 ( Bool isLoad, HReg, ARMAMode1* );
960 extern ARMInstr* ARMInstr_LdSt16 ( Bool isLoad, Bool signedLoad,
962 extern ARMInstr* ARMInstr_LdSt8U ( Bool isLoad, HReg, ARMAMode1* );
[all …]
Dhost_arm_defs.c1042 static HChar* showARMNeonDataSize ( ARMInstr* i ) in showARMNeonDataSize()
1105 ARMInstr* ARMInstr_Alu ( ARMAluOp op, in ARMInstr_Alu()
1107 ARMInstr* i = LibVEX_Alloc(sizeof(ARMInstr)); in ARMInstr_Alu()
1115 ARMInstr* ARMInstr_Shift ( ARMShiftOp op, in ARMInstr_Shift()
1117 ARMInstr* i = LibVEX_Alloc(sizeof(ARMInstr)); in ARMInstr_Shift()
1125 ARMInstr* ARMInstr_Unary ( ARMUnaryOp op, HReg dst, HReg src ) { in ARMInstr_Unary()
1126 ARMInstr* i = LibVEX_Alloc(sizeof(ARMInstr)); in ARMInstr_Unary()
1133 ARMInstr* ARMInstr_CmpOrTst ( Bool isCmp, HReg argL, ARMRI84* argR ) { in ARMInstr_CmpOrTst()
1134 ARMInstr* i = LibVEX_Alloc(sizeof(ARMInstr)); in ARMInstr_CmpOrTst()
1141 ARMInstr* ARMInstr_Mov ( HReg dst, ARMRI84* src ) { in ARMInstr_Mov()
[all …]
Dhost_arm_isel.c145 static void addInstr ( ISelEnv* env, ARMInstr* instr ) in addInstr()
290 static ARMInstr* mk_iMOVds_RR ( HReg dst, HReg src ) in mk_iMOVds_RR()