Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp213 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()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h106 ExecutionEngineState EEState; variable