Home
last modified time | relevance | path

Searched refs:getGlobalAddressReverseMap (Results 1 – 2 of 2) sorted by relevance

/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp219 if (!EEState.getGlobalAddressReverseMap().empty()) { in addGlobalMapping()
220 std::string &V = EEState.getGlobalAddressReverseMap()[CurVal]; in addGlobalMapping()
231 EEState.getGlobalAddressReverseMap().clear(); in clearAllGlobalMappings()
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()
301 if (EEState.getGlobalAddressReverseMap().empty()) { in getGlobalValueAtAddress()
307 EEState.getGlobalAddressReverseMap().insert( in getGlobalValueAtAddress()
313 EEState.getGlobalAddressReverseMap() in getGlobalValueAtAddress()
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h84 std::map<uint64_t, std::string> &getGlobalAddressReverseMap() { in getGlobalAddressReverseMap() function