Home | History | Annotate | Download | only in Orc

Lines Matching refs:CompileResult

43   using CompileResult = object::OwningBinary<object::ObjectFile>;
53 CompileResult operator()(Module &M) {
54 CompileResult CachedObject = tryToLoadFromObjectCache(M);
72 return CompileResult(std::move(*Obj), std::move(ObjBuffer));
76 return CompileResult(nullptr, nullptr);
81 CompileResult tryToLoadFromObjectCache(const Module &M) {
83 return CompileResult();
87 return CompileResult();
94 return CompileResult();
97 return CompileResult(std::move(*Obj), std::move(ObjBuffer));