Lines Matching refs:EEState
217 uint64_t &CurVal = EEState.getGlobalAddressMap()[Name]; in addGlobalMapping()
222 if (!EEState.getGlobalAddressReverseMap().empty()) { in addGlobalMapping()
223 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in addGlobalMapping()
233 EEState.getGlobalAddressMap().clear(); in clearAllGlobalMappings()
234 EEState.getGlobalAddressReverseMap().clear(); in clearAllGlobalMappings()
241 EEState.RemoveMapping(getMangledName(&FI)); in clearGlobalMappingsFromModule()
243 EEState.RemoveMapping(getMangledName(&GI)); in clearGlobalMappingsFromModule()
256 EEState.getGlobalAddressMap(); in updateGlobalMapping()
260 return EEState.RemoveMapping(Name); in updateGlobalMapping()
265 if (CurVal && !EEState.getGlobalAddressReverseMap().empty()) in updateGlobalMapping()
266 EEState.getGlobalAddressReverseMap().erase(CurVal); in updateGlobalMapping()
270 if (!EEState.getGlobalAddressReverseMap().empty()) { in updateGlobalMapping()
271 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in updateGlobalMapping()
283 EEState.getGlobalAddressMap().find(S); in getAddressToGlobalIfAvailable()
284 if (I != EEState.getGlobalAddressMap().end()) in getAddressToGlobalIfAvailable()
306 if (EEState.getGlobalAddressReverseMap().empty()) { in getGlobalValueAtAddress()
308 I = EEState.getGlobalAddressMap().begin(), in getGlobalValueAtAddress()
309 E = EEState.getGlobalAddressMap().end(); I != E; ++I) { in getGlobalValueAtAddress()
312 EEState.getGlobalAddressReverseMap().insert(std::make_pair( in getGlobalValueAtAddress()
318 EEState.getGlobalAddressReverseMap().find((uint64_t) Addr); in getGlobalValueAtAddress()
320 if (I != EEState.getGlobalAddressReverseMap().end()) { in getGlobalValueAtAddress()