Home
last modified time | relevance | path

Searched refs:ObjectCache (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileUtils.h26 class ObjectCache; variable
42 SimpleCompiler(TargetMachine &TM, ObjectCache *ObjCache = nullptr)
47 void setObjectCache(ObjectCache *NewCache) { ObjCache = NewCache; } in setObjectCache()
60 ObjectCache *ObjCache = nullptr;
70 ObjectCache *ObjCache = nullptr)
86 ObjectCache *ObjCache = nullptr);
88 void setObjectCache(ObjectCache *ObjCache) { this->ObjCache = ObjCache; } in setObjectCache()
94 ObjectCache *ObjCache = nullptr;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
H A DObjectCache.h23 class ObjectCache {
27 ObjectCache() = default;
29 virtual ~ObjectCache() = default;
H A DExecutionEngine.h51 class ObjectCache; variable
424 virtual void setObjectCache(ObjectCache *) { in setObjectCache() argument
/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DBinaryHolder.cpp265 if (!ObjectCache.count(Filename)) { in getObjectEntry()
266 ObjectEntry &OE = ObjectCache[Filename]; in getObjectEntry()
269 ObjectCache.erase(Filename); in getObjectEntry()
274 return ObjectCache[Filename]; in getObjectEntry()
281 ObjectCache.clear(); in clear()
H A DBinaryHolder.h137 StringMap<ObjectEntry> ObjectCache; variable
/netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectCache/
H A DLLJITWithObjectCache.cpp26 class MyObjectCache : public ObjectCache {
51 void runJITWithCache(ObjectCache &ObjCache) { in runJITWithCache()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h21 class ObjectCache; variable
194 ObjectCache *ObjCache;
232 void setObjectCache(ObjectCache *manager) override;
H A DMCJIT.cpp140 void MCJIT::setObjectCache(ObjectCache* NewCache) { in setObjectCache()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DMCJITDesignAndImplementation.rst56 attempt to retrieve an object image from its ObjectCache member, if one
68 is flushed to complete the process. If an ObjectCache is being used, the
69 image will be passed to the ObjectCache here.
80 having been retrieved from an ObjectCache, it is passed to RuntimeDyld to
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp82 ObjectCache *ObjCache) in ConcurrentIRCompiler()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/lli/
H A Dlli.cpp299 class LLIObjectCache : public ObjectCache {
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp672 class MCJITObjectCache : public ObjectCache {
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp691 class MCJITObjectCache : public ObjectCache {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp61 void ObjectCache::anchor() {} in anchor()