Lines Matching refs:EEState

213   uint64_t &CurVal = EEState.getGlobalAddressMap()[Name];  in addGlobalMapping()
218 if (!EEState.getGlobalAddressReverseMap().empty()) { in addGlobalMapping()
219 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in addGlobalMapping()
229 EEState.getGlobalAddressMap().clear(); in clearAllGlobalMappings()
230 EEState.getGlobalAddressReverseMap().clear(); in clearAllGlobalMappings()
237 EEState.RemoveMapping(getMangledName(&GO)); in clearGlobalMappingsFromModule()
250 EEState.getGlobalAddressMap(); in updateGlobalMapping()
254 return EEState.RemoveMapping(Name); in updateGlobalMapping()
259 if (CurVal && !EEState.getGlobalAddressReverseMap().empty()) in updateGlobalMapping()
260 EEState.getGlobalAddressReverseMap().erase(CurVal); in updateGlobalMapping()
264 if (!EEState.getGlobalAddressReverseMap().empty()) { in updateGlobalMapping()
265 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in updateGlobalMapping()
277 EEState.getGlobalAddressMap().find(S); in getAddressToGlobalIfAvailable()
278 if (I != EEState.getGlobalAddressMap().end()) in getAddressToGlobalIfAvailable()
300 if (EEState.getGlobalAddressReverseMap().empty()) { in getGlobalValueAtAddress()
302 I = EEState.getGlobalAddressMap().begin(), in getGlobalValueAtAddress()
303 E = EEState.getGlobalAddressMap().end(); I != E; ++I) { in getGlobalValueAtAddress()
306 EEState.getGlobalAddressReverseMap().insert( in getGlobalValueAtAddress()
312 EEState.getGlobalAddressReverseMap().find((uint64_t) Addr); in getGlobalValueAtAddress()
314 if (I != EEState.getGlobalAddressReverseMap().end()) { in getGlobalValueAtAddress()