-
Notifications
You must be signed in to change notification settings - Fork 0
/
trace_location.h
58 lines (50 loc) · 2.75 KB
/
trace_location.h
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
/*
Armator - simulateur de jeu d'instruction ARMv5T à but pédagogique
Copyright (C) 2011 Guillaume Huard
Ce programme est libre, vous pouvez le redistribuer et/ou le modifier selon les
termes de la Licence Publique Générale GNU publiée par la Free Software
Foundation (version 2 ou bien toute autre version ultérieure choisie par vous).
Ce programme est distribué car potentiellement utile, mais SANS AUCUNE
GARANTIE, ni explicite ni implicite, y compris les garanties de
commercialisation ou d'adaptation dans un but spécifique. Reportez-vous à la
Licence Publique Générale GNU pour plus de détails.
Vous devez avoir reçu une copie de la Licence Publique Générale GNU en même
temps que ce programme ; si ce n'est pas le cas, écrivez à la Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,
États-Unis.
Contact: [email protected]
Bâtiment IMAG
700 avenue centrale, domaine universitaire
38401 Saint Martin d'Hères
*/
#ifndef __TRACE_LOCATION_H__
#define __TRACE_LOCATION_H__
#include "trace.h"
#define LOCATION trace_start_location(__FILE__, __LINE__)
#define END_LOCATION trace_end_location(__FILE__, __LINE__)
#define arm_fetch(p, ins) (LOCATION, arm_fetch(p, ins)+END_LOCATION)
#define arm_read_register(p, reg) (LOCATION, \
arm_read_register(p, reg)+END_LOCATION)
#define arm_read_usr_register(p, reg) (LOCATION, \
arm_read_usr_register(p, reg)+END_LOCATION)
#define arm_read_cpsr(p) (LOCATION, arm_read_cpsr(p)+END_LOCATION)
#define arm_read_spsr(p) (LOCATION, arm_read_spsr(p)+END_LOCATION)
#define arm_write_register(p, reg, val) \
(LOCATION, arm_write_register(p, reg, val), END_LOCATION)
#define arm_write_usr_register(p, reg, val) \
(LOCATION, arm_write_usr_register(p, reg, val), END_LOCATION)
#define arm_write_cpsr(p, val) (LOCATION, arm_write_cpsr(p, val), END_LOCATION)
#define arm_write_spsr(p, val) (LOCATION, arm_write_spsr(p, val), END_LOCATION)
#define arm_read_byte(p, addr, val) (LOCATION, \
arm_read_byte(p, addr, val)+END_LOCATION)
#define arm_read_half(p, addr, val) (LOCATION, \
arm_read_half(p, addr, val)+END_LOCATION)
#define arm_read_word(p, addr, val) (LOCATION, \
arm_read_word(p, addr, val)+END_LOCATION)
#define arm_write_byte(p, addr, val) (LOCATION, \
arm_write_byte(p, addr, val)+END_LOCATION)
#define arm_write_half(p, addr, val) (LOCATION, \
arm_write_half(p, addr, val)+END_LOCATION)
#define arm_write_word(p, addr, val) (LOCATION, \
arm_write_word(p, addr, val)+END_LOCATION)
#endif