Home
last modified time | relevance | path

Searched refs:BootstrapMap (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DSimpleRemoteEPCServer.h68 StringMap<std::vector<char>> &bootstrapMap() { return BootstrapMap; } in bootstrapMap()
77 BootstrapMap[std::move(Key)] = std::move(Buffer); in setBootstrapMapValue()
91 StringMap<std::vector<char>> BootstrapMap; variable
130 if (auto Err = Server->sendSetupMessage(std::move(S.BootstrapMap), in Create()
158 Error sendSetupMessage(StringMap<std::vector<char>> BootstrapMap,
H A DDefaultHostBootstrapValues.h24 StringMap<std::vector<char>> &BootstrapMap,
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DDefaultHostBootstrapValues.cpp21 StringMap<std::vector<char>> &BootstrapMap, in addDefaultBootstrapValuesForHostProcess() argument
32 BootstrapMap["darwin-use-ehframes-only"].push_back(1); in addDefaultBootstrapValuesForHostProcess()
H A DSimpleRemoteEPCServer.cpp189 StringMap<std::vector<char>> BootstrapMap, in sendSetupMessage() argument
200 EI.BootstrapMap = std::move(BootstrapMap); in sendSetupMessage()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DSimpleRemoteEPCUtils.h49 StringMap<std::vector<char>> BootstrapMap; member
212 SI.TargetTriple, SI.PageSize, SI.BootstrapMap, SI.BootstrapSymbols); in size()
218 OB, SI.TargetTriple, SI.PageSize, SI.BootstrapMap, SI.BootstrapSymbols); in serialize()
223 IB, SI.TargetTriple, SI.PageSize, SI.BootstrapMap, SI.BootstrapSymbols); in deserialize()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutorProcessControl.h157 return BootstrapMap; in getBootstrapMap()
165 auto I = BootstrapMap.find(Key); in getBootstrapMapValue()
166 if (I == BootstrapMap.end()) in getBootstrapMapValue()
321 StringMap<std::vector<char>> BootstrapMap; variable
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSimpleRemoteEPC.cpp349 << " Bootstrap map" << (EI->BootstrapMap.empty() ? " empty" : ":") in setup()
351 for (const auto &KV : EI->BootstrapMap) in setup()
361 BootstrapMap = std::move(EI->BootstrapMap); in setup()
H A DSelfExecutorProcessControl.cpp45 addDefaultBootstrapValuesForHostProcess(BootstrapMap, BootstrapSymbols); in SelfExecutorProcessControl()