Lines Matching refs:EEState
214 uint64_t &CurVal = EEState.getGlobalAddressMap()[Name]; in addGlobalMapping()
219 if (!EEState.getGlobalAddressReverseMap().empty()) { in addGlobalMapping()
220 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in addGlobalMapping()
230 EEState.getGlobalAddressMap().clear(); in clearAllGlobalMappings()
231 EEState.getGlobalAddressReverseMap().clear(); in clearAllGlobalMappings()
238 EEState.RemoveMapping(getMangledName(&GO)); in clearGlobalMappingsFromModule()
251 EEState.getGlobalAddressMap(); in updateGlobalMapping()
255 return EEState.RemoveMapping(Name); in updateGlobalMapping()
260 if (CurVal && !EEState.getGlobalAddressReverseMap().empty()) in updateGlobalMapping()
261 EEState.getGlobalAddressReverseMap().erase(CurVal); in updateGlobalMapping()
265 if (!EEState.getGlobalAddressReverseMap().empty()) { in updateGlobalMapping()
266 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in updateGlobalMapping()
278 EEState.getGlobalAddressMap().find(S); in getAddressToGlobalIfAvailable()
279 if (I != EEState.getGlobalAddressMap().end()) in getAddressToGlobalIfAvailable()
301 if (EEState.getGlobalAddressReverseMap().empty()) { in getGlobalValueAtAddress()
303 I = EEState.getGlobalAddressMap().begin(), in getGlobalValueAtAddress()
304 E = EEState.getGlobalAddressMap().end(); I != E; ++I) { in getGlobalValueAtAddress()
307 EEState.getGlobalAddressReverseMap().insert( in getGlobalValueAtAddress()
313 EEState.getGlobalAddressReverseMap().find((uint64_t) Addr); in getGlobalValueAtAddress()
315 if (I != EEState.getGlobalAddressReverseMap().end()) { in getGlobalValueAtAddress()