1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| static dr_emit_flags_t event_app_instruction(void *drcontext, void *tag, instrlist_t *bb, instr_t *instr, bool for_trace, bool translating, void *user_data) { drmgr_disable_auto_predication(drcontext, bb);
if (!instr_is_app(instr)) return DR_EMIT_DEFAULT;
instrument_instr(drcontext, bb, instr);
if (drmgr_is_first_instr(drcontext, instr)
IF_AARCHXX(&&!instr_is_exclusive_store(instr))) dr_insert_clean_call(drcontext, bb, instr, (void *)clean_call, false, 0);
return DR_EMIT_DEFAULT; }
static void instrument_instr(void *drcontext, instrlist_t *ilist, instr_t *where) { reg_id_t reg_ptr, reg_tmp; if (drreg_reserve_register(drcontext, ilist, where, NULL, ®_ptr) != DRREG_SUCCESS || drreg_reserve_register(drcontext, ilist, where, NULL, ®_tmp) != DRREG_SUCCESS) { DR_ASSERT(false); return; }
insert_load_buf_ptr(drcontext, ilist, where, reg_ptr); insert_save_pc(drcontext, ilist, where, reg_ptr, reg_tmp, instr_get_app_pc(where)); insert_save_opcode(drcontext, ilist, where, reg_ptr, reg_tmp, instr_get_opcode(where)); insert_update_buf_ptr(drcontext, ilist, where, reg_ptr, sizeof(ins_ref_t));
if (drreg_unreserve_register(drcontext, ilist, where, reg_ptr) != DRREG_SUCCESS || drreg_unreserve_register(drcontext, ilist, where, reg_tmp) != DRREG_SUCCESS) DR_ASSERT(false); }
|