• Home
  • Raw
  • Download

Lines Matching refs:EEState

215   uint64_t &CurVal = EEState.getGlobalAddressMap()[Name];  in addGlobalMapping()
220 if (!EEState.getGlobalAddressReverseMap().empty()) { in addGlobalMapping()
221 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in addGlobalMapping()
231 EEState.getGlobalAddressMap().clear(); in clearAllGlobalMappings()
232 EEState.getGlobalAddressReverseMap().clear(); in clearAllGlobalMappings()
239 EEState.RemoveMapping(getMangledName(&GO)); in clearGlobalMappingsFromModule()
252 EEState.getGlobalAddressMap(); in updateGlobalMapping()
256 return EEState.RemoveMapping(Name); in updateGlobalMapping()
261 if (CurVal && !EEState.getGlobalAddressReverseMap().empty()) in updateGlobalMapping()
262 EEState.getGlobalAddressReverseMap().erase(CurVal); in updateGlobalMapping()
266 if (!EEState.getGlobalAddressReverseMap().empty()) { in updateGlobalMapping()
267 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in updateGlobalMapping()
279 EEState.getGlobalAddressMap().find(S); in getAddressToGlobalIfAvailable()
280 if (I != EEState.getGlobalAddressMap().end()) in getAddressToGlobalIfAvailable()
302 if (EEState.getGlobalAddressReverseMap().empty()) { in getGlobalValueAtAddress()
304 I = EEState.getGlobalAddressMap().begin(), in getGlobalValueAtAddress()
305 E = EEState.getGlobalAddressMap().end(); I != E; ++I) { in getGlobalValueAtAddress()
308 EEState.getGlobalAddressReverseMap().insert(std::make_pair( in getGlobalValueAtAddress()
314 EEState.getGlobalAddressReverseMap().find((uint64_t) Addr); in getGlobalValueAtAddress()
316 if (I != EEState.getGlobalAddressReverseMap().end()) { in getGlobalValueAtAddress()