summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/valgrind/files/bug344802-unhandled-0xec510f1e.patch
blob: a25f541670bb0f6ecea7671e0fe6711e8c947919 (plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
diff --git a/VEX/priv/guest_arm_defs.h b/VEX/priv/guest_arm_defs.h
index 2ccbe4398..90312fbd4 100644
--- a/VEX/priv/guest_arm_defs.h
+++ b/VEX/priv/guest_arm_defs.h
@@ -350,6 +350,10 @@ typedef
    }
    ARMCondcode;
 
+extern UInt arm_dirtyhelper_MRS_CNTFRQ ( void );
+extern ULong arm_dirtyhelper_MRRS_CNTVCT ( void );
+extern ULong arm_dirtyhelper_MRRS_CNTPCT ( void );
+
 #endif /* ndef __VEX_GUEST_ARM_DEFS_H */
 
 /*---------------------------------------------------------------*/
diff --git a/VEX/priv/guest_arm_helpers.c b/VEX/priv/guest_arm_helpers.c
index 8a028736e..89b17ce7b 100644
--- a/VEX/priv/guest_arm_helpers.c
+++ b/VEX/priv/guest_arm_helpers.c
@@ -1445,6 +1445,53 @@ VexGuestLayout
         };
 
 
+UInt arm_dirtyhelper_MRS_CNTFRQ ( void )
+{
+#if   __ARM_ARCH_ISA_ARM  //{
+   UInt w = 0x55555555UL; /* overwritten */
+   __asm__ __volatile__("mrc p15, 0, %0, c14, c0, 0" : "=r"(w));
+   return w;
+#elif __ARM_ARCH_ISA_A64  //}{
+   UInt w;
+   __asm__ __volatile__("mrs %0,cntfrq_el0": "=r"(w));
+   return w;
+#else  //}{
+   return 0;
+#endif  //}
+}
+
+ULong arm_dirtyhelper_MRRS_CNTVCT ( void )
+{
+#if   __ARM_ARCH_ISA_ARM  //}{
+   UInt w0;
+   UInt w1;
+   __asm__ __volatile__("mrrc p15, 1, %0, %1, c14" : "=r"(w0), "=r"(w1));
+   return (((ULong)w1)<<32) | w0;
+#elif __ARM_ARCH_ISA_A64  //{
+   ULong w;
+   __asm__ __volatile__("mrs %0, cntvct_el0" : "=r"(w));
+   return w;
+#else  //}{
+   return 0;
+#endif  //}
+}
+
+ULong arm_dirtyhelper_MRRS_CNTPCT ( void )
+{
+#if   __ARM_ARCH_ISA_ARM  //}{
+   UInt w0;
+   UInt w1;
+   __asm__ __volatile__("mrrc p15, 0, %0, %1, c14" : "=r"(w0), "=r"(w1));
+   return (((ULong)w1)<<32) | w0;
+#elif __ARM_ARCH_ISA_A64  //{
+   ULong w;
+   __asm__ __volatile__("mrs %0, cntpct_el0" : "=r"(w));
+   return w;
+#else  //}{
+   return 0;
+#endif  //}
+}
+
 /*---------------------------------------------------------------*/
 /*--- end                                 guest_arm_helpers.c ---*/
 /*---------------------------------------------------------------*/
diff --git a/VEX/priv/guest_arm_toIR.c b/VEX/priv/guest_arm_toIR.c
index d858c85e0..f96af92c4 100644
--- a/VEX/priv/guest_arm_toIR.c
+++ b/VEX/priv/guest_arm_toIR.c
@@ -18755,6 +18755,87 @@ DisResult disInstr_ARM_WRK (
       /* fall through */
    }
 
+   /* CNTFRQ: mrc p15, 0, rX, c14, c0, 0 */
+   if (0x0e1e0f10 == (insn & 0x0FFF0FFF)) {
+      UInt rD = INSN(15,12);
+      if (rD <= 14) {
+         /* skip r15, that's too stupid to handle */
+         IRTemp   val  = newTemp(Ity_I32);
+         IRExpr** args = mkIRExprVec_0();
+         IRDirty* d    = unsafeIRDirty_1_N(
+                            val,
+                            0/*regparms*/,
+                            "arm_dirtyhelper_MRS_CNTFRQ",
+                            &arm_dirtyhelper_MRS_CNTFRQ,
+                            args
+                         );
+         /* execute the dirty call, dumping the result in val. */
+         stmt( IRStmt_Dirty(d) );
+         putIRegA(rD, mkexpr(val), condT, Ijk_Boring);
+         DIP("mrc%s p15, 0, r%u, c14, c0, 0\n", nCC(INSN_COND), rD);
+         goto decode_success;
+      }
+      /* fall through */
+   }
+
+   /* CNTPCT */
+   if (0x0c500f0e == (insn & 0x0FF00FFF)) {
+      UInt rDhi = INSN(19,16);
+      UInt rDlo = INSN(15,12);
+      if (rDhi <= 14 && rDlo <= 14) {
+         /* skip r15, that's too stupid to handle */
+         IRTemp resHi  = newTemp(Ity_I32);
+         IRTemp resLo  = newTemp(Ity_I32);
+         IRTemp   val  = newTemp(Ity_I64);
+         IRExpr** args = mkIRExprVec_0();
+         IRDirty* d    = unsafeIRDirty_1_N(
+                            val,
+                            0/*regparms*/,
+                            "arm_dirtyhelper_MRRS_CNTPCT",
+                            &arm_dirtyhelper_MRRS_CNTPCT,
+                            args
+                         );
+         /* execute the dirty call, dumping the result in val. */
+         stmt( IRStmt_Dirty(d) );
+         assign( resHi, unop(Iop_64HIto32, mkexpr(val)) );
+         assign( resLo, unop(Iop_64to32, mkexpr(val)) );
+         putIRegA( rDhi, mkexpr(resHi), condT, Ijk_Boring );
+         putIRegA( rDlo, mkexpr(resLo), condT, Ijk_Boring );
+         DIP("mrrc%s p15, 0, r%u, r%u, c14\n", nCC(INSN_COND), rDlo, rDhi);
+         goto decode_success;
+      }
+      /* fall through */
+   }
+
+   /* CNTVCT */
+   if (0x0c500f1e == (insn & 0x0FF00FFF)) {
+      UInt rDhi = INSN(19,16);
+      UInt rDlo = INSN(15,12);
+      if (rDhi <= 14 && rDlo <= 14) {
+         /* skip r15, that's too stupid to handle */
+         IRTemp resHi  = newTemp(Ity_I32);
+         IRTemp resLo  = newTemp(Ity_I32);
+         IRTemp   val  = newTemp(Ity_I64);
+         IRExpr** args = mkIRExprVec_0();
+         IRDirty* d    = unsafeIRDirty_1_N(
+                            val,
+                            0/*regparms*/,
+                            "arm_dirtyhelper_MRRS_CNTVCT",
+                            &arm_dirtyhelper_MRRS_CNTVCT,
+                            args
+                         );
+         /* execute the dirty call, dumping the result in val. */
+         stmt( IRStmt_Dirty(d) );
+         assign( resHi, unop(Iop_64HIto32, mkexpr(val)) );
+         assign( resLo, unop(Iop_64to32, mkexpr(val)) );
+         putIRegA( rDhi, mkexpr(resHi), condT, Ijk_Boring );
+         putIRegA( rDlo, mkexpr(resLo), condT, Ijk_Boring );
+         DIP("mrrc%s p15, 1, r%u, r%u, c14\n", nCC(INSN_COND), rDlo, rDhi);
+         goto decode_success;
+      }
+      /* fall through */
+   }
+
    /* Handle various kinds of barriers.  This is rather indiscriminate
       in the sense that they are all turned into an IR Fence, which
       means we don't know which they are, so the back end has to
@@ -23196,6 +23277,84 @@ DisResult disInstr_THUMB_WRK (
       /* fall through */
    }
 
+   /* CNTFRQ: mrc p15, 0, rX, c14, c0, 0 */
+   if ((INSN0(15,0) == 0xee1e) && (INSN1(11,0) == 0xf10)) {
+      UInt rD = INSN1(15,12);
+      if (!isBadRegT(rD)) {
+         IRTemp   val  = newTemp(Ity_I32);
+         IRExpr** args = mkIRExprVec_0();
+         IRDirty* d    = unsafeIRDirty_1_N(
+                            val,
+                            0/*regparms*/,
+                            "arm_dirtyhelper_MRS_CNTFRQ",
+                            &arm_dirtyhelper_MRS_CNTFRQ,
+                            args
+                         );
+         /* execute the dirty call, dumping the result in val. */
+         stmt( IRStmt_Dirty(d) );
+         putIRegT(rD, mkexpr(val), condT);
+         DIP("mrc p15, 0, r%u, c14, c0, 0\n", rD);
+         goto decode_success;
+      }
+      /* fall through */
+   }
+
+   /* CNTPCT */
+   if ((INSN0(15,4) == 0xec5) && (INSN1(11,0) == 0xf0e)) {
+      UInt rDhi = INSN0(3,0);
+      UInt rDlo = INSN1(15,12);
+      if (!isBadRegT(rDhi) && !isBadRegT(rDlo)) {
+         IRTemp resHi  = newTemp(Ity_I32);
+         IRTemp resLo  = newTemp(Ity_I32);
+         IRTemp   val  = newTemp(Ity_I64);
+         IRExpr** args = mkIRExprVec_0();
+         IRDirty* d    = unsafeIRDirty_1_N(
+                            val,
+                            0/*regparms*/,
+                            "arm_dirtyhelper_MRRS_CNTPCT",
+                            &arm_dirtyhelper_MRRS_CNTPCT,
+                            args
+                         );
+         /* execute the dirty call, dumping the result in val. */
+         stmt( IRStmt_Dirty(d) );
+         assign( resHi, unop(Iop_64HIto32, mkexpr(val)) );
+         assign( resLo, unop(Iop_64to32, mkexpr(val)) );
+         putIRegT( rDhi, mkexpr(resHi), condT );
+         putIRegT( rDlo, mkexpr(resLo), condT );
+         DIP("mrrc p15, 0, r%u, r%u, c14\n", rDlo, rDhi);
+         goto decode_success;
+      }
+      /* fall through */
+   }
+
+   /* CNTVCT */
+   if ((INSN0(15,4) == 0xec5) && (INSN1(11,0) == 0xf1e)) {
+      UInt rDhi = INSN0(3,0);
+      UInt rDlo = INSN1(15,12);
+      if (!isBadRegT(rDhi) && !isBadRegT(rDlo)) {
+         IRTemp resHi  = newTemp(Ity_I32);
+         IRTemp resLo  = newTemp(Ity_I32);
+         IRTemp   val  = newTemp(Ity_I64);
+         IRExpr** args = mkIRExprVec_0();
+         IRDirty* d    = unsafeIRDirty_1_N(
+                            val,
+                            0/*regparms*/,
+                            "arm_dirtyhelper_MRRS_CNTVCT",
+                            &arm_dirtyhelper_MRRS_CNTVCT,
+                            args
+                         );
+         /* execute the dirty call, dumping the result in val. */
+         stmt( IRStmt_Dirty(d) );
+         assign( resHi, unop(Iop_64HIto32, mkexpr(val)) );
+         assign( resLo, unop(Iop_64to32, mkexpr(val)) );
+         putIRegT( rDhi, mkexpr(resHi), condT );
+         putIRegT( rDlo, mkexpr(resLo), condT );
+         DIP("mrrc p15, 1, r%u, r%u, c14\n", rDlo, rDhi);
+         goto decode_success;
+      }
+      /* fall through */
+   }
+
    /* ------------------- CLREX ------------------ */
    if (INSN0(15,0) == 0xF3BF && INSN1(15,0) == 0x8F2F) {
       /* AFAICS, this simply cancels a (all?) reservations made by a