Lines Matching refs:ent
241 TempMapEnt ent;
243 ent.kind = kind;
244 ent.shadowV = IRTemp_INVALID;
245 ent.shadowB = IRTemp_INVALID;
246 newIx = VG_(addToXA)( mce->tmpMap, &ent );
256 TempMapEnt* ent;
259 ent = (TempMapEnt*)VG_(indexXA)( mce->tmpMap, (Word)orig );
260 tl_assert(ent->kind == Orig);
261 if (ent->shadowV == IRTemp_INVALID) {
266 ent = (TempMapEnt*)VG_(indexXA)( mce->tmpMap, (Word)orig );
267 tl_assert(ent->kind == Orig);
268 tl_assert(ent->shadowV == IRTemp_INVALID);
269 ent->shadowV = tmpV;
271 return ent->shadowV;
286 TempMapEnt* ent;
289 ent = (TempMapEnt*)VG_(indexXA)( mce->tmpMap, (Word)orig );
290 tl_assert(ent->kind == Orig);
296 ent = (TempMapEnt*)VG_(indexXA)( mce->tmpMap, (Word)orig );
297 tl_assert(ent->kind == Orig);
298 ent->shadowV = tmpV;
323 TempMapEnt* ent = VG_(indexXA)( mce->tmpMap, a1->Iex.RdTmp.tmp );
324 return ent->kind == Orig;
336 TempMapEnt* ent = VG_(indexXA)( mce->tmpMap, a1->Iex.RdTmp.tmp );
337 return ent->kind == VSh || ent->kind == BSh;
5350 TempMapEnt ent;
5351 ent.kind = Orig;
5352 ent.shadowV = IRTemp_INVALID;
5353 ent.shadowB = IRTemp_INVALID;
5354 VG_(addToXA)( mce.tmpMap, &ent );
5743 TempMapEnt* ent;
5746 ent = (TempMapEnt*)VG_(indexXA)( mce->tmpMap, (Word)orig );
5747 tl_assert(ent->kind == Orig);
5748 if (ent->shadowB == IRTemp_INVALID) {
5753 ent = (TempMapEnt*)VG_(indexXA)( mce->tmpMap, (Word)orig );
5754 tl_assert(ent->kind == Orig);
5755 tl_assert(ent->shadowB == IRTemp_INVALID);
5756 ent->shadowB = tmpB;
5758 return ent->shadowB;